@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

body{
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}
html{
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
    margin: 0;
}

/* for Each Section start*/
.container{
    max-width: 1240px;
    margin: auto;
}
.row{
    display: flex;
    flex-wrap: nowrap;
}
/* for Each Section end*/
/* header start*/
header{
    position: absolute;
    left: 0px;
    right: 0px;
    border-bottom: none;
    padding: 0px 15px;
    z-index: 10;
}
header.fixed {
    background-color: #ffffff;
    position: fixed;
    border-bottom: 1px solid #eeeeee;
}
header .row{
    justify-content: space-between;
    align-items: center;
}
header .brand-name a{
    text-decoration: none;
    font-size: 3vw;
    font-weight: 600;
    color: #ffc400;
    text-shadow: 1px 1px 3px black;
    text-transform: uppercase;
    display: none;
    position: relative;
    letter-spacing: 2.5px;
}
header.fixed .brand-name a{
    display: block;
    position: relative;
}
header .navbar ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
header .navbar ul li{
    display: inline-block;
    margin-left: 35px;
}
header .navbar ul li a{
    font-size: 1.5vw;
    text-decoration: none;
    line-height: 72px;
    color: #000000;
    display: block;
    font-weight: 600;
    position: relative;
}
header .navbar ul li a:hover{
    text-shadow: 0px 0px 5px purple;
}
header.fixed .navbar ul li a{
    color: #000000;
}
header .navbar ul li a::before{
    content: '';
    height: 3px;
    background-color: purple;
    width: 0%;
    position: absolute;
    right: 0px;
    bottom: -1px;
    transition: all .5s ease;
}
header.fixed .navbar ul li a::before{
    background-color: purple;
}
header .navbar ul li a:hover::before{
    width: 100%;
    left: 0;
}
header.fixed .navbar ul li a.active:hover::before{
    width: 100%;
    left: 0;
}
header .navbar ul li a.active::before{
    width: 100%;
    left: 0;
}
header.fixed .navbar ul li a.active::before{
    width: 0%;
    left: 0;
}
/* header end */

/* home1 start */
.home1{
    min-height: 100vh;
    background-image: url(/image/bg8.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.home1 .home1-content{
    margin: 10% auto;
    justify-content: center;
}
.home1 .home1-content .top{
    text-align: center;
}
.home1 .home1-content .top h1{
    font-size: 3vw;
    font-weight: 700;
}
.home1 .home1-content .top h4{
    font-weight: 500;
    letter-spacing: .5px;
    color: black;
    font-size: 1.59vw;
    text-shadow: none;
    margin: 2% 10%;
}
.home1 .home1-content .bottom1{
    padding: 5%;
    margin-top: 10%;
    background-color: rgba(255, 255, 255);
    border-radius: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.home1 .home1-content .bottom1 .left1{
    text-align: center;
    margin: auto 0;
}
.home1 .home1-content .bottom1 .left1 h4{
    font-weight: 500;
    letter-spacing: .5px;
    color: black;
    font-size: 1.59vw;
}
.home1 .home1-content .bottom1 .left1 .no-margin{
    margin: 0 0;
    margin-bottom: 10%;
}
.home1 .home1-content .bottom1 .left1 h3{
    font-weight: 800;
    letter-spacing: .5px;
    color: black;
    font-size: 1.59vw;
}
.home1 .home1-content .bottom1 .left1 > h4{
    margin: 10% 0;
}
.home1 .home1-content .bottom1 .left1 .social-med{
    display: flex;
    justify-content: center;
}
.home1 .home1-content .bottom1 .left1 .social-med a{
    text-decoration: none;
}
.fa{
    padding-top: 8px;
    margin: auto;
    font-size: 2vw;
    text-align: center;
    text-decoration: none;
    transition: .3s ease-in-out;
    border-radius: 50px;
    width: 40px;
    height: 40px;
}
.fa:hover {
    opacity: 0.7;
}
.fa-facebook {
  background: #3B5998;
  color: white;
}
.fa-twitter {
  background: #55ACEE;
  color: white;
}
.fa-google {
  background: #dd4b39;
  color: white;
}
.fa-pinterest {
  background: #cb2027;
  color: white;
}
.home1 .home1-content .bottom1 .left1 .line1{
    border-bottom: 1px solid gray;
    margin-bottom: 10%;
}
.home1 .home1-content .bottom1 .right1 img{
    border: 1px solid black;
    border-radius: 5px;
    padding: 200px;
}
/* home1 end */

/* home2 start */
.home2{
    min-height: 100vh;
    background-image: url(/image/bg8.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.home2 .home2-content{
    margin: 10% 20%;
    width: 100%;
    justify-content: center;
}
.home2 .home2-content .flexx{
    display: flex;
    justify-content: space-between;
    max-width: 100%;
}
.home2 .home2-content .flexx .l1{
    width: 50%;
}
.home2 .home2-content .flexx .l2{
    width: 50%;
}
.home2 .home2-content .list{
    max-width: 100%;
    margin: 3%;
}
.home2 .home2-content .list h4{
    font-weight: 500;
    letter-spacing: .5px;
    color: black;
    font-size: 1.59vw;
}
.home2 .home2-content .list input{
    width: 100%;
    height: 30px;
    border-radius: 5px;
    border: none;
    padding: 10px;
    letter-spacing: .5px;
    color: black;
    font-size: 1vw;
}
.home2 .home2-content .list textarea{
    resize: none;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    padding: 10px;
    letter-spacing: .5px;
    color: black;
    font-weight: 500;
    font-size: 1vw;
}
/* home2 end */

/* Footer start */
footer{
    width: 100%;
    padding: 0px 15px;
    background-color: rgb(255, 208, 0);
    display: block;
}
footer .logo{
    color: #ffffff;
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
}
footer .logo img{
    width: 30%;
}
footer .social{
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 15px;
}
footer .social a{
    color: #000000;
    text-decoration: none;
    margin: 0 15px;
    transition: all .5s ease;
    padding: 2px 10px;
    text-decoration: none;
}
footer .social a:hover{
    color: #ffffff;
    border: 1 solid #000000;
    padding: 2px 10px;
    background-color: #000000;
    border-radius: 3px;
}
.copyright{
    background-color: rgb(25, 25, 29);
    border-top: 1px solid #ededf548;
    padding: 15px;
}
.copyright p{
    color: #ffffff;
    margin: 0;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
}
/* Footer end */