*{
    margin: 0;
    padding: 0;
    font-family: 'Merriweather Sans', sans-serif;
}
.banner{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.slider{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
}
#slideimg{
    width: 100%;
    height: 100%;
    animation: zoom 3s linear infinite;
}
@keyframes zoom{
    0%{
        transform: scale(1.3);
    }
    15%{
        transform: scale(1);
    }
    85%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.3);
    }
}
.overla{
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
    position: absolute;
    top: 0;
}
.logo{
    margin: 15px 60px;
    /* display: flex; */
}
.logo img{
    margin: 5px;
    width: 180px;
    cursor: pointer;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 85%; */
    /* flex-direction: row; */
    /* margin: 10px auto; */
}
/* .navbar ul{ */
.menu{
    display: flex;
    flex-direction: row;
    /* justify-content: flex-end; */
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 10px;
    /* align-items: center; */
}
.navbar ul li{
    list-style: none;
    position: relative;
    font-size: 1.0rem;
    padding: 7px 15px;
    margin: 10px 30px;
    transition: 0.5s;
    border-radius: 10px;
}
.navbar ul li a{
    text-decoration: none;
    color: white;
}
.navbar ul li:hover{
    background: orangered;
}
.navbar ul li ul{
    position: absolute;
    top: 40px;
    left: -15px;
    background: white;
    display: block;
    width: 180px;
    transition: 0.5s;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
}
.navbar ul li ul li{
    padding: 2px 10px;
    margin: 3px 15px;
}
.navbar ul li ul li a{
    color: orangered;
    font-size: 0.8rem;
}
.navbar ul li:hover ul{
    opacity: 1;
    visibility: visible;
}
.navbar ul li ul li:hover a{
    color: white;
}


@media screen and (max-width: 770px){
    .logo{
        margin: 10px 15px;
        /* display: flex; */
    }
    .logo img{
        width: 160px;
    }    
    
    .navbar{
        position: relative;
        padding: 0.65em 2em;
        /* flex-flow: column; */
        /* width: 100%; */
        background: rgba(0,0,0,0.5);
        /* margin: 0; */
        /* display: block; */
        /* align-items: center; */
    }
    /* .navbar ul{ */
    .menu{
        flex-flow: column;
        position: absolute;
        top: 6em;
        background: rgba(0,0,0,0.5);
        left: 0;
        right: 0;
        /* height: 100vh; */
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top center;
        transition: 200ms transform cubic-bezier(0.36, 0.4, 0.42, 1.48) 100ms, 100ms opacity ease-in-out;
        /* background: black; */
        /* display: block; */
        /* align-items: center; */
    }
    .navbar ul li{
        display: block;
        transition: 0s;

        /* opacity: 0; */
        /* transform: scaleY(0); */
        /* transform-origin: top center; */

        /* position: absolute; */
        /* align-items: center; */
    }
    .navbar ul li ul{
        /* display: inline-block; */
        /* position: relative; */
        transition: 0s;
        width: 100%;
        z-index: 1;
    }
    .navbar ul li:hover ul{
        padding: 2px 15px;
        /* margin: 3px 15px;     */
        top: 10px;
        position: relative;
    }

    .hamburger{
        width: 2em;
        height: 0.25em;
        display: block;
        background: white;
        position: relative;
        cursor: pointer;
        transition: 0.2s transform ease-in-out;
    }
    .hamburger::after, .hamburger::before{
        content: "";
        position: absolute;
        left: 0;
        background: inherit;
        width: inherit;
        height: inherit;
        transition: 0.2s transform ease-in-out;
    }
    .hamburger::after{
        top: 0.65em;
    }
    .hamburger::before{
        bottom: 0.65em;
    }
    .close::after, .close::before{
        top: 0;
        transition: 0.2s transform ease-in-out;
    }
    .close::before{
        display: none;
    }
    .close{
        transform: rotate(45deg);
        transition: 0.2s transform ease-in-out;
    }
    .close::after{
        transform: rotate(-90deg);
    }

    /* Reveal Menu */

    input[type="checkbox"]:checked + .menu{
        /* position: absolute; */
        opacity: 1;
        transform: scaleY(1);
    }

}


.content{
    width: 60%;
    margin: 160px auto 0;
    text-align: center;
}
.content h1{
    font-size: 80px;
    color: rgb(245, 166, 19);
}
.content h3{
    font-size: 25px;
    width: 100%;
    margin: 20px auto 100px;
    font-weight: 100;
    line-height: 5px;
    color: white;
}
@media screen and (max-width: 770px){
    .content h1{
        font-size: 50px;
    }
    .content h3{
        font-size: 15px;
    }
}

/* Service */

#feature{
    width: 100%;
    padding: 70px 0;
}
  
/* #service{
    width: 100%;
    padding: 70px 0;
    background: #efefef;
} */

.title-text{
    text-align: center;
    padding-bottom: 40px;
}
.title-text p{
    margin: auto;
    font-size: 25px;
    color: chocolate;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after{
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(red, rgb(29, 28, 27));
    position: absolute;
    top: -25px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.title-text h1{
    font-size: 50px;
}

.feature-box{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
  }
  .features{
    flex-basis: 50%;
  }
  .features-img{
    flex-basis: 50%;
    margin: auto;
  }
  .features-img img{
    width: 50%;
    border-radius: 10px;
  }
  .features h1{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color: coral;
  }
  .features-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  .feature-icon .fa{
      width: 50px;
      height: 50px;
      font-size: 30px;
      line-height: 50px;
      border-radius: 8px;
      color: #009688;
      border: 1px solid #009688;
  }
  .feature-text p{
      padding: 0 20px;
      text-align: initial;
  }
  @media screen and (max-width: 770px){
    .title-text h1{
        font-size: 35px;
    }
    .features{
        flex-basis: 100%;
    }
    .features-img{
        flex-basis: 100%;
    }
    .features-img img{
        width: 100%;
    }
  }

/* .service-box{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}
.single-service{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: white;
    position: relative;
}
.single-service img{
    width: 100%;
    border-radius: 7px;
}
.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5),orangered);
    opacity: 0;
    transition: 1s;
}
.single-service:hover .overlay{
    opacity: 1;
}
.service-desc{
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 1s;
}
hr{
    background: white;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}
.service-desc p{
    font-size: 14px;
}
.single-service:hover .service-desc{
    bottom: 40%;
    opacity: 1;
}
@media screen and (max-width: 770px){
    .title-text h1{
        font-size: 31px;
    }    
    .single-service{
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .service-desc p{
        font-size: 12px;
    }
    hr{
        margin: 5px auto;
    }
    .single-service:hover .service-desc{
        bottom: 35% !important;
    }
} */

/* Product */

#products{
    width: 100%;
    padding: 30px 0;
    /* background: #efefef; */
}
.swiper-container{
    width: 100%;
    padding-top: 40px;
    padding-bottom: 100px;
}
.swiper-slide{
    background-position: center;
    background-size: cover;
    margin: 10px;
    width: 250px;
    height: 250px;
    background: black;
}
.swiper-container .swiper-slide img{
    height: 250px;
    width: 250px;
}
.swiper-container .swiper-slide h3{
    margin: 0;
    padding: 0;
    /* background: #efefef; */
    color: black;
    box-sizing: border-box;
    padding: 7px 5px;
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
}

/* Location */

#location{
    padding: 30px 0 0px;
    /* background: url(Img/worldmap.jpg); */
    /* width: 100%; */
    display: block;
    position: relative;
}
.map{
    background: url(Img/worldmap.jpg);
    /* background: #efefef; */
    position: relative;
    display: block;
}
.map img{
    width: 100%;
    /* opacity: .5; */
}
.map span{
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50px;
    top: 53.5%;
    left: 44.75%;
    background-color: white;
    animation: highlight 1.5s linear infinite;
}
@keyframes highlight{
    100%{
        transform: scale(3);
        opacity: 0;
    }
}
.map .marker2{
    left: 46.5%;
    top: 53%;
    animation-delay: 1s;
}
.map .marker3{
    left: 66%;
    top: 47%;
    animation-delay: .5s;
}
.map .marker4{
    left: 60.25%;
    top: 47.5%;
    animation-delay: .75s;
}
.map .marker5{
    left: 47.5%;
    top: 53%;
    animation-delay: 1.25s;
}
.map .marker6{
    left: 46.5%;
    top: 51%;
    animation-delay: .25s;
}
.map .marker7{
    left: 72.25%;
    top: 48%;
    animation-delay: .5s;
}
.map .marker8{
    left: 70%;
    top: 42%;
    animation-delay: 0.25s;
}
.map .marker9{
    left: 56%;
    top: 40%;
    animation-delay: .5s;
}
.map .marker10{
    left: 47.5%;
    top: 35%;
    animation-delay: .75s;
}
.map li{
    list-style: none;
}
.cntent{
    position: absolute;
    bottom: 27px;
    width: 120px;
    background: white;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    transition: 0.1s;
    transform: translateX(-50%) translateY(-50%);
}
.cntent:before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    bottom: -5px;
    left: 61px;
    transform: rotate(45deg);
}
.marker1:hover{
    background-color: yellow;
    animation: none;
}
.marker2:hover{
    background-color: yellow;
    animation: none;
}
.marker3:hover{
    background-color: yellow;
    animation: none;
}
.marker4:hover{
    background-color: yellow;
    animation: none;
}
.marker5:hover{
    background-color: yellow;
    animation: none;
}
.marker6:hover{
    background-color: yellow;
    animation: none;
}
.marker7:hover{
    background-color: yellow;
    animation: none;
}
.marker8:hover{
    background-color: yellow;
    animation: none;
}
.marker9:hover{
    background-color: yellow;
    animation: none;
}
.marker10:hover{
    background-color: yellow;
    animation: none;
}
.map span:hover .cntent{
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
@media screen and (max-width: 900px){
    #location{
        display: none;
    }
    .map{
        display: none;
    }
}

/* Footer */

#footer{
    padding: 70px 0 10px;
    background: darkslategray;
    position: relative;
}
.footer-row{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left,.footer-right{
    flex-basis: 40%;
    /* padding: 10px; */
    /* margin-bottom: 10px; */
}
.footer-right{
    text-align: right;
}
.footer-left .fa,.footer-right .fa{
    font-size: 18px;
    color: fuchsia;
    margin: 10px;
}
.footer-img{
    max-width: 370px;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%,-50%);
}
.social-links{
    text-align: center;
}
.social-links .fa{
    height: 40px;
    width: 40px;
    text-decoration: none;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid black;
    border-radius: 5px;
    margin: 40px 5px 0;
    color: black;
    cursor: pointer;
    transition: 0.5s;
}
.social-links .fa-facebook:hover{
    background: blueviolet;
    color: white;
    transform: translateY(-5px);
}
.social-links .fa-youtube-play:hover{
    background: orangered;
    color: white;
    transform: translateY(-5px);
}
.social-links .fa-twitter:hover{
    background: blueviolet;
    color: white;
    transform: translateY(-5px);
}
.social-links .fa-instagram:hover{
    background: orangered;
    color: white;
    transform: translateY(-5px);
}
.social-links p{
    font-size: 15px;
    margin-top: 20px;
}
@media screen and (max-width: 770px){
    .footer-row{
        width: 85%;
    }
    .footer-left,.footer-right{
    flex-basis: 95%;
    font-size: 14px;
    }
    .footer-img{
        top: 28%;
    }
}


