@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url('https://fonts.googleapis.com/css?family=Allura|Josefin+Sans');

*,
*::before,
*::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}




/* Navigation Section */

.navigationbar{
    font-family: 'Poppins', sans-serif;
}

.navigationbar ul{
    list-style: none;
}

.navigationbar header{
    position: fixed;
    height: 60px;
    top: 0px;
    background-color: transparent;
    width: 100%;
    z-index: 1000;
    transition: background-color 1s ease;
}

.navigationbar .container{
    width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.logo{
    margin-top: 2px;
    width: 185px;
}

.logo img{
    width: 100%;
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    flex: 2;
}

.btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn.transparent:hover{
    background-color: #fff;
    color: #69bde7;
}

.btn.transparent, .btn.solid:hover{
    background-color: transparent;
    color: #fff;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    margin-top: 5px;
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
    color: #fff;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.log{
    margin-top: 17px;
    margin-right: 10px;
    width: 170px;
}

#num{
    color: #60b4df;
    padding: 8px 15px;
    background-color: white;
    border: 2px solid white;
    border-radius: 30px;
    margin-bottom: 6px;
    transition: all 0.3s ease-in-out;
}

#num:hover{
    color: white;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 30px;
    transform: scale(1);
}

#dropp{
    margin-top: 7px;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #fff;
    color: #3498db;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{
    background-color: #3498db;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #efefef;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #3498db;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
    margin-left: -200px;
    margin-right: -20px;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (min-width: 1181px){
    .dropdown-link{
        width: 250px;
    }
}

@media (max-width: 1180px){
    #aq, #aw, #asdfgh{
        display: none;
        visibility: hidden;
    }
    .hide.active ~ #aq{
        display: block;
        visibility: visible;
    }
    .hid.active ~ #aw{
        display: block;
        visibility: visible;
    }
    .asdfg.active ~ #asdfgh{
        display: block;
        visibility: visible;
    }
    .hamburger-menu-container{
        display: flex;
    }
    #check{
        display: block;
    }
    #dropp{
        margin-top: 0px;
    }
    .nav-btn{
        position: fixed;
        height: calc(100vh - 60px);
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #69bde7;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }
    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }
    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animation .5s ease forwards var(--i);
    }
    .nav-links{
        flex: initial;
        width: 100%;
    }
    .nav-links > ul{
        flex-direction: column;
    }
    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }
    .nav-link > a{
        line-height: 1;
        padding: 1.6rem 2rem;
    }
    .nav-link:hover > a{
        transform: scale(1);
        background-color: #50a9d6;
    }
    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #3183ac;
        display: none;
    }    
    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }
    .nav-link:hover > a > i,
    .dropdown-link:hover > a > i{
        transform: rotate(360deg);
    }
    .dropdown-link > a{
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }
    .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }
    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }
    .dropdown-link:not(:nth-last-child(2)){
        border-bottom: none;
    }
    .arrow{
        z-index: 1;
        background-color: #69bde7;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }
    .nav-link:hover .arrow{
        background-color: #50a9d6;
    }
    .dropdown .dropdown .arrow{
        display: none;
    }
    .dropdown-link:hover > a{
        background-color: #3a91bd;
    }
    .dropdown-link:first-child:hover ~ .arrow{
        background-color: #50a9d6;
    }
    .nav-link > a > i{
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }
    .dropdown i{
        font-size: 1rem;
        transition: .7s;
    } 
    .navigationbar header{
        background-color: #60b4df !important;
        height: 60px;
        opacity: 1 !important;
    }
    .navigationbar .container{
        padding-left: 10px;
    } 
    .log{
        display: none;
        visibility: hidden;
    }
}

@media (max-width: 600px){
    .navigationbar li a{
        padding: 15px;
    }
}
@media (max-width: 320px){
    .hamburger-menu-container{
        margin-right: -25px;
    }
}

@media (max-width: 240px){
    .logo{
        margin-top: 2px;
        margin-left: -8px;
        width: 155px;
    }
    .navigationbar header{
        height: 50px;
    }
    .nav-btn{
        height: calc(100vh - 50px);
        top: 50px;
    }
}

/* Navigation Section */



/* Whatsapp Section */

.whatsapp{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;    
    background: #30bf39;
    border-radius: 50px;
    animation: bounce 0.9s infinite;
}

.whatsapp .fa{
    font-size: 50px;
    color: white;
    margin-top: -4px;
}

@keyframes bounce{
    20%, 50%, 80%, to{
        transform: translateY(0);
    }
    40%{
        transform: translateY(-30px);
    }
    70%{
        transform: translateY(-15px);
    }
    90%{
        transform: translateY(-4px);
    }
}

/* Whatsapp Section */




/* Banner Section */

.single-banner{
    height: 300px;
    overflow: hidden;
}

.single-banner{
    position: relative;
}

.single-banner .banner-img{
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-img .img1{
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    visibility: visible;
}

.overla{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    background-color: rgba(0,0,0,0.65);
  }

.banner-text{
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.slider_heading{
    font-size: 4rem;
    line-height: 1.1;
    font-family: 'Yatra One', cursive;
    background: url(../images/animate.png);
    /* Clip Background Image */    
    -webkit-background-clip: text;
    background-clip: text;
    /* Animate Background Image */
    -webkit-text-fill-color: transparent;
    -webkit-animation: aitf 80s linear infinite;
    /* Activate hardware acceleration for smoother animations */
    -webkit-transform: translate3d(0,0,0);
    -webkit-backface-visibility: hidden;
    text-align: center;
}

/* Animate Background Image */
@-webkit-keyframes aitf {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (max-width: 1025px){
    .banner-text{
        top: calc(50% + 20px);
    }
}

@media (max-width: 900px) {
    .slider_heading{
        font-size: 4rem;
    }
}

@media (max-width: 570px) {
    .single-banner{
        height: 200px;
    }    
    .single-banner .banner-img{
        height: 200px;
    }    
    .banner-img .img1{
        height: 200px;
    }
    .slider_heading{
        font-size: 3rem;
    }
}

@media (max-width: 300px) {
    .slider_heading{
        font-size: 2.5rem;
    }
}

/* Banner Section */




/* Main Section */

.details{
    width: 100%;
    font-family: 'Poppins', sans-serif;
    max-width: 1700px;
    margin: auto;
}

.main {
    display: flex;
    padding: 0px 50px;
}

.container1{
    width: 40%;
    margin-right: 50px;
    padding: 20px;
    border-radius: 15px;
}

.container2{
    padding-top: 70px;
    width: 60%;
}

.container3{
    width: 100%;
    padding: 30px 50px;
}

/* Container1 */
.container1 .slider {
    display: flex;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}

.container1 .slider img {
    width: 100%;
    border-radius: 15px;
}

.container1 .img-slider {
    width: 100%;
    display: flex;
    height: 50px;
    text-align: center;
    justify-content: start;
    margin: auto;
    margin-top: 20px;
}

.container1 .img-slider div {
    width: 50px;
    margin-right: 15px;
}

.container1 .img-slider img {
    height: 100%;
}

.container1 .imgs {
    cursor: pointer;
}
/* Container1 */

/* Container2 */
.container2 h1{
    font-size: 50px;
    padding-top: 50px;
}

.container2 .reviews{
    color: gold;
    padding-bottom: 50px;
}

.container2 h5, .container3 h5{
    font-size: 23px;
    padding-bottom: 10px;
}

.container2 .colour{
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #60b4df;
    margin-bottom: 70px;
}

#one{
    background-color: black;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-top: 3px;
    margin-left: 3px;
}

#two{
    background-color: blue;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-top: 3px;
    margin-left: 3px;
}

#three{
    background-color: green;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-top: 3px;
    margin-left: 3px;
}

#four{
    background-color: yellow;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-top: 3px;
    margin-left: 3px;
}

.container2 a{
    font-size: 20px;
    padding: 10px 30px;
    background-color: #60b4df;
    border: 2px solid #60b4df;
    border-radius: 50px;
    color: white;
    transition: 0.3s ease-in-out;
}

.container2 a .fas{
    transform: rotate(90deg);
    margin-right: 10px;
}

.container2 a:hover{
    background-color: white;
    color: #60b4df;
}
/* Container2 */

/* Container3 */
.container3 .product-detail-feature{
	width: 100%;
    padding: 15px;
}

.container3 .table{
    width: 100%;
    overflow-x: scroll;
}

table{
    width: 100%; 
    border-collapse: collapse;
    font-size: 12px;
    border-spacing: 0;
    box-shadow: 0 2px 15px rgba(64,64,64,.7);
    border-radius: 12px 12px 0 0;   
   }

   td{
    padding: 7px 15px;
    text-align: center;
   }

   tr{
    width: 100%;
    background-color: #dbd9d9;
    font-family: 'Montserrat', sans-serif;
   }
   
   tr:nth-child(even){
    background-color: #eeeeee;
   }
/* Container3 */

@media (max-width: 1450px) {  
    .container2 h1{
        padding-top: 20px;
    }    
    .container2 .reviews{
        padding-bottom: 30px;
    }    
    .container2 h5{
        padding-bottom: 7px;
    }    
    .container2 .colour{
        margin-bottom: 50px;
    }
}

@media (max-width: 1300px) {
    .container2 h1{
        margin-top: -80px;
    } 
}
@media (max-width: 1000px) {
    .main {
        padding: 30px;
    }    
    .container1{
        margin-right: 30px;
        padding: 10px;
    }    
    .container3{
        width: 100%;
        padding: 30px;
        margin-top: -20px;
    }
    .container2 h1{
        font-size: 45px;
        padding-top: 20px;
    }    
    .container2 .reviews{
        padding-bottom: 30px;
    }    
    .container2 h5{
        font-size: 20px;
        padding-bottom: 7px;
    }    
    .container2 p{
        font-size: 15px;
        padding-bottom: 40px;
    }    
    .container2 a{
        font-size: 18px;
        padding: 7px 30px;
    }
}

@media (max-width: 900px) { 
    .container2 h1{
        font-size: 40px;
        padding-top: 10px;
    }    
    .container2 .reviews{
        padding-bottom: 20px;
    }    
    .container2 h5{
        font-size: 20px;
        padding-bottom: 5px;
    }    
    .container2 p{
        font-size: 15px;
        padding-bottom: 20px;
    }   
    .container2 .colour{
        margin-bottom: 30px;
    } 
    .container2 a{
        font-size: 18px;
        padding: 7px 30px;
    }
}

@media (max-width: 750px) {  
    .container1{
        width: 50%;
        margin-right: 50px;
        padding: 20px;
        border-radius: 15px;
    }    
    .container2{
        width: 50%;
    }
    .container2 h1{
        font-size: 35px;
        padding-top: 30px;
    }    
    .container2 .reviews{
        padding-bottom: 20px;
    }    
    .container2 h5{
        font-size: 17px;
        padding-bottom: 5px;
    }    
    .container2 p{
        font-size: 12px;
        padding-bottom: 20px;
    }   
    .container2 .colour{
        margin-bottom: 30px;
    } 
    .container2 a{
        font-size: 15px;
        padding: 7px 30px;
    }
}

@media (max-width: 680px) {  
    .container1{
        width: 60%;
        margin-right: 50px;
        padding: 20px;
        border-radius: 15px;
    }    
    .container2{
        width: 40%;
    }
}

@media (max-width: 570px) { 
    .main {
        display: flex;
        flex-direction: column-reverse;
        padding: 0px 30px;
    }     
    .container1{
        width: 100%;
        padding-top: 50px;
        margin-right: 0px;
    }
    .container2{
        padding-top: 0px;
        width: 100%;
    }
    .container2 h1{
        margin-top: 0px;
        padding-top: 20px;
    } 
}

@media (max-width: 400px) { 
    .main {
        padding: 0px 20px;
    }
    .container1{
        padding: 0;
        padding-top: 50px;
    }
    .container3{
        padding: 20px;
        padding-top: 40px;
    }
    .container2 h1{
        padding-top: 10px;
    } 
    .container2 p{
        padding-bottom: 20px;
    } 
    .container3 .product-detail-feature{
        padding: 0px;
    }
}

@media (max-width: 300px) { 
    .main {
        padding: 10px;
    }
    .container3{
        padding: 40px 10px 30px 10px;
    }
    .container2 h1{
        padding-top: 0px;
    } 
    .container1 .img-slider {
        overflow-x: scroll;
    }
}

/* Main Section */




/* Footer Section */

footer{
    background-color: #353745;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3px;
}

.footer-container ul{    
    margin: 0px;
    width: 25%;
    padding: 0px 20px;
    list-style: none;
}

.footer-container h1{
    color: #d9d7db;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 0px;
}

.footer-container ul li a{
    font-size: 12px;
    color: #9697a0;
    cursor: default;
    pointer-events: none;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    margin: 0px;
    width: 100%;
    flex-wrap: wrap;
}

.social{
    width: 25%;
    padding-right: 20px;
    padding-left: 20px;
}

.social-icons{
    padding-top: 5px;
}

.social-icons a{
    width: 35px;
    height: 35px;
    margin: 0px;
    margin-right: 5px;
    background-color: #424356;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all ease 1s;
}

.social-icons{
    display: flex;
}

.social-icons i{
    color: #ffffff;
    font-size: 20px;
}

#call{
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.social-icons a:hover{
    background-color: #9a9ff6;
}

.social-icons a:hover i{
    color: #424356;
}

.extra{
    border-top: 1px dashed #b3b3b3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright{
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    margin: 0px;
    text-align: center;
    color: #b3b3b3;    
    padding-top: 10px;
    padding-bottom: 5px;
}

.tag{
    text-decoration: none;
    font-size: 15px;
    color: #60b4df;
}

@media only screen and (max-width: 653px) {
    .footer-container ul{    
        width: 50%;
        margin-top: 10px;
    }
    .social{
        margin-top: 10px;
        width: 50%;
    } 
    .social-icons a{
        margin-bottom: 5px;
    }
} 
@media only screen and (max-width: 326px) {
    .footer-container ul{    
        width: 100%;
    }
    .social{
        width: 100%;
    }
} 

/* Footer Section */




/* Footer Section */

footer{
    background-color: #353745;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container ul{    
    font-family: 'Raleway', sans-serif;
    margin: 0px;
    width: 25%;
    padding: 0px 20px;
    list-style: none;
}

.footer-container h1{
    color: #d9d7db;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 0px;
}

.footer-container ul li a{
    font-size: 16px;
    color: #9697a0;
    cursor: default;
    pointer-events: none;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    margin: 0px;
    width: 100%;
    flex-wrap: wrap;
}

.social{
    width: 25%;
    padding-right: 20px;
    padding-left: 20px;
}

.social-icons{
    padding-top: 5px;
}

.social-icons a{
    width: 35px;
    height: 35px;
    margin: 0px;
    margin-right: 5px;
    background-color: #424356;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all ease 1s;
}

.social-icons{
    display: flex;
}

.social-icons i{
    color: #ffffff;
    font-size: 20px;
}

#call{
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.social-icons a:hover{
    background-color: #9a9ff6;
}

.social-icons a:hover i{
    color: #424356;
}

.copyright{
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    margin: 0px;
    text-align: center;
    color: #b3b3b3;
    border-top: 1px dashed #b3b3b3 ;
    padding-top: 10px;
    padding-bottom: 5px;
}

.tag{
    text-decoration: none;
    color: #60b4df;
}

@media only screen and (max-width: 767px) {
    .footer-container ul{    
        width: 50%;
        margin-top: 10px;
    }
    .social{
        margin-top: 10px;
        width: 50%;
    } 
    .social-icons a{
        margin-bottom: 5px;
    }
} 
@media only screen and (max-width: 383px) {
    .footer-container ul{    
        width: 100%;
    }
    .social{
        width: 100%;
    }
} 

/* Footer Section */