@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda+One&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500;800&family=Lato:wght@900&family=Poppins:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500;800&family=Lato:ital,wght@0,400;0,700;0,900;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');


*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    font-family: 'poppins', sans-serif; transition: .2s linear;
    outline: none; border: none; text-decoration: none;
}

:root{
    --main-color: linear-gradient(to right, #800202, #cb1111cf);
    --main2-color: #b91010;
    --blue-color: #4611a7;
    --black-color: #1b1b1b;
    --white-color: #fff;
    --gray-color: gray;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}
body{
    overflow-x: hidden;
}

.heading{
    font-size: 4rem;
    color: transparent;
    background: linear-gradient(to right, #800202, #cb1111cf)
    font-family: 'jost', sans-serif;
    font-weight: 700;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 2rem;
}

.heading2{
    color: var(--white-color);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding-top: 1rem;
    padding-bottom: 3.5rem;
}


.our-btn{
    background: var(--white-color);
    color: var(--black-color);
    padding: 0.9rem 1.6rem;
    font-size: 1.5rem;
    margin-top: 1rem;
    border-radius: 22px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid var(--white-color);
}

.our-btn:hover{
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    transition: .4s all;
}

/*Start header*/

ul{
    list-style: none;
    margin:0;
    padding:0;
}

a{
    text-decoration: none;
}

.container{
    max-width: 100%;
    width: 100%;
    /*position: fixed;
    top: 0;
    right: 0;*/
}

.header{
    position: absolute;
    width: 100%;
    left:0;
    top:0;
    z-index: 99;
    padding: 0 3%;
}

.header-main{
    display: flex;
    width: 100%!important;
    justify-content: space-between;
    background-color: transparent;
    align-items: center;
    padding: 10px 0;
    border-radius: 4px;
}

.header .logo{
    padding: 0;
}

.header .logo img{
    height: 5rem;
}

.header .nav-menu{
    padding: 0 15px;
}

.header .menu > .menu-item{
    display: inline-block;
    margin-left: 30px;
    position: relative;
}

.header .menu > .menu-item > a{
    display: block;
    padding: 12px 0;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--white-color);
    font-family: 'jost', sans-serif;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.header .menu > .menu-item > a .fa-angle-down{
    display: inline-block;
    height: 12px;
    width: 12px;
    position: relative;
    margin-left:5px; 
    pointer-events: none;
}

.header .menu > .menu-item > a .fa-angle-down:before,
.header .menu > .menu-item > a .fa-angle-down:after{
    content:'';
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top:50%;
    background-color: var(--white-color);
    height: 2px;
    width: 100%;
    transform: translate(-50%,-50%);
    transition: all 0.3s ease;
}

.header .menu > .menu-item:hover > a .fa-angle-down:before,
.header .menu > .menu-item:hover > a .fa-angle-down:after{
   background-color: var(--white-color);
}

.header .menu > .menu-item > a .fa-angle-down:after{
   transform: translate(-50%,-50%) rotate(-90deg);  
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
    letter-spacing: 1px;
}

.header .menu > .menu-item > .sub-menu{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 220px;
    position: absolute;
    left:0;
    top:100%;
    background-color: var(--white-color);
    padding: 10px 0;
    border-top: 3px solid var(--light-gray);
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity:0;
    border-radius: 8px;
    visibility: hidden;
}

@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .fa-angle-down:after{
    transform: translate(-50%,-50%) rotate(0deg);       
 }
}

.header .menu > .menu-item > .sub-menu > .menu-item{
    display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a{
    display: block;
    padding: 10px 20px;
    font-size: 1.4rem;
    font-family: 'jost';
    color: var(--black-color);
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.header .open-nav-menu{
    height: 34px;
    width: 40px;
    margin-right: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.header .open-nav-menu span{
    display: block;
    height: 3px;
    width: 24px;
    background-color: #fff;
    position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
    content: '';
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
}

.header .open-nav-menu span:before{
    top:-7px;
}

.header .open-nav-menu span:after{
    top:7px;
}

.header .close-nav-menu{
    height: 40px;
    width: 40px;    
    cursor: pointer;
    display: none;
    background: var(--main-color);
    align-items: center;
    justify-content: center;
    margin: 0 0 15px 11px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.header .close-nav-menu img{
    width: 16px;
}

.header .menu-overlay{
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity:0;
    transition: all 0.3s ease;
}
/*End header*/

/*Start home section*/
.home-section{
    padding: 1.5rem 5%;
    height: auto;
    width: 100%;
    background: linear-gradient(to right, #800202, #cb1111cf), url(../img/home-bg.jpg);
    /*linear-gradient(to right,#FF9800, #cb1111cf),url(../img/home-bg.jpg)*/
    background-position: center;
    align-items: center;
    background-attachment: fixed;
    animation: scale 15s linear infinite;
}

@keyframes scale {
  50% {
    background-size: 140%;
  }

  0%,100%{
    background-size: 100%;
  }
}

.home-section .row{
    padding: 2rem 0;
}

.home-section .home-text{
    max-width: 60rem;
}

.home-section .home-text h3{
    color: var(--white-color);
    font-size: 6rem;
    text-transform: capitalize!important;
    font-weight: 800;
    text-shadow: var(--box-shadow);
    text-shadow: 0px 4px 3px rgb(0 0 0 / 13%), 0px 8px 13px rgb(0 0 0 / 8%), 0px 18px 23px rgba(0,0,0,0.1);
    font-family: 'poppins', sans-serif;
}

.home-section .home-text h3 span{
    font-family: 'Satisfy', cursive;
}


.home-section .home-text h3:nth-child(2){
    color: var(--white-color);
}

.home-section .home-text p{
    color: var(--white-color);
    font-size: 1.4rem;
    line-height: 1.7;
    font-family: 'lato', sans-serif;
    font-weight: lighter;
}

.home-section .home-text :nth-child(4){
    padding: 0;
}

.home-section .home-img{
    width: 100%;
    height: auto;
}

.home-section .home-img img{
    width: 69%;
    display: block;
    margin: 3rem auto;
    text-align: center;
}


.home-btn{
    display: flex;
    align-items: center;
}

.home-btn a{
    background-color: var(--white-color);
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: .5px;
    max-width: 180px; width: 100%;
    text-align: center;
    border-radius: 33px;
    padding: 1.2rem 2rem;
    color: var(--black-color);
    font-family: 'jost', sans-serif;
    transform: translateY(-15px);
    transition: .5s all;
    margin-top: 2rem;
}

.home-btn a:hover{
    opacity: .7;
}

.download-btn-outer-box{
    display: flex;
    justify-content: center;
    align-items: center;
}


/*Start footer section*/
.footer {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  z-index: 8;
}

.social-icon,
.menu {
  position: relative;
/*display: flex;*/
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}
.menu__link:hover{
  color: white;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../img/fhfhfh.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 10s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 10s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 9s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 9s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

.footer-social-link h4{
  font-size: 3rem;
  color: var(--white-color);
  font-family: 'Satisfy', cursive;
  text-align: center;
}

.footer-social-link a i{
  font-size: 2.4rem;
  color: var(--white-color);
  margin: 0 .7rem;
}

.footer-contact{
  display: flex;
  align-items: center;
  gap: 2.5rem; padding: 2rem 0;
}

.footer-contact a{
  font-size: 1.4rem;
  font-family: 'lato', sans-serif;
  color: var(--white-color);
  letter-spacing: .3px;
}

.footer-contact a i{
 margin: 0 .3rem;
}

.footer-contact span{
  color: var(--white-color);
  width: 2px;
}

.copyright{
  padding-top: 2rem;
  border-top: 1.4px solid var(--white-color);
  color: var(--white-color);
  font-size: 1.4rem;
  font-family: 'lato', sans-serif;
}

.footer .copyright a{
  font-size: 1.4rem;
  font-family: 'lato', sans-serif;
  padding: 1rem 0;
  color: #feb200;
}
/*End footer section*/

/*Start game section*/
.game-section{
    padding: 6rem 5%;
}

.game-section h2{
    font-size: 4rem;
    color: transparent;
    background: ;
    background: linear-gradient(to right, #800202, #cb1111cf)
    font-family: 'jost', sans-serif;
    font-weight: 700;
    -webkit-background-clip: text;
    text-transform: capitalize;
    -webkit-text-fill-color: transparent;
    padding-bottom: 2rem;
}

.game-box{
    padding: 1.5rem;
    text-align: center;
    background: var(--white-color);
    border-radius: 6px;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    border-bottom: 2px solid var(--main2-color);
    transition: .5s transform;
}

.game-box:hover{
    background: var(--main-color);
    transform: translateY(-10px) scale(1.1);
}

.game-box:hover h4{
    color: var(--white-color);
}

.game-box:hover .game-box-btn a{
    color: var(--main2-color);
    background: var(--white-color);
}
.game-box:hover img{
    border: 2px solid var(--white-color);
}
.game-box img{
    width: 100%;
    border-radius: 6px;
}

.game-box-btn a{
    width: 27px;
    height: 27px;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    margin: auto; color: var(--white-color);
}

.active .game-box-btn a{
    background: var(--white-color);
    color: var(--main2-color);
}
.game-box h4{
    font-family: 'jost', sans-serif;
    font-size: 1.4rem;
    color: var(--black-color);
    padding: 1rem 0;
}

.active h4{
    color: var(--white-color);
}
/*End game section*/


/*Start client section*/
.client-section{
    width: 100%;
    height: 100%;
    padding: 6rem 5%;
}

.review-row{
    height: auto;
    padding: 4rem;
    margin: 1rem;
    border-radius: 10px!important;
    border-radius: 6px;
    background: linear-gradient(45deg, #3269f41c, transparent);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.review-img img{
 width: 200px;
 border-radius: 50%;
 height: auto;
 margin: 0;
}

.review-text h3{
 font-size: 1.8rem;
 color: var(--black-color);
 line-height: 1.8;
 padding-bottom: 1rem;
 font-family: 'jost', sans-serif;
}

.review-text .review-name h4{
 font-size: 1.6rem;
 letter-spacing: .3px;
 color: var(--black-color);
 padding-top: 1.7rem;
 font-family: 'jost', sans-serif;
}

.review-text .review-name p{
 font-size: 1.4rem;
 letter-spacing: .3px;
 color: var(--black-color);
 padding: .5rem 0;
}

.slick-prev {
   color: red;
}
/*End client section*/

/*Start feature section*/
.withdraw-section{
    padding: 6rem 5%;
    background: #f1f4fa;
}

.withdraw-box-main{
  background: white;
  cursor: pointer;
  border-radius: 15px;
  position: relative;
  padding: 25px 30px;
  margin: 1rem auto;
  box-shadow: 0 20px 40px rgb(34 42 65 / 10%);
}

.withdraw-box-main::after{
  content: '';
  background: var(--main-color);
  border-radius: 15px;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  clip-path: circle(10% at 0% 0%);           
  transition: all .3s ease-in;
}

.withdraw-box{
  position: relative;
  z-index: 1;
  transition: all .3s ease-in;
  display: flex;
  height: 100px;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.withdraw-box ion-icon{
    font-size: 4rem;
    color: var(--main2-color);
}

.withdraw-box p{
    font-size: 1.4rem;
    color: var(--black-color);
    font-family: 'jost', sans-serif;
    padding: .4rem 0;
}

.withdraw-section .active{
    background: var(--main-color);
}

.withdraw-section .active p{
    color: var(--white-color);
}

.withdraw-section .active ion-icon{
    color: var(--white-color);
}

/*.withdraw-icon01{
    color: #ff005a;
}*/

/*.withdraw-icon02{
    color: #2575fc;
}

.withdraw-icon03{
    color: #ffb800;
}

.withdraw-icon04{
    color: #00cec9;
}
*/
/*....*/
/*.withdraw-section .row .two::after{
    background: #2575fc;
}

.withdraw-section .row .three::after{
    background: #ffb800;
}

.withdraw-section .row .four::after{
    background: #00cec9;
}*/

.withdraw-box-main:hover::after{
  clip-path: circle(100%);
}

.withdraw-box-main:hover .withdraw-box p{
  color: var(--white-color)!important;
}

.withdraw-box-main:hover .withdraw-box ion-icon{
  color: var(--white-color)!important;
}
/*End feature section*/

/*Start video section*/

.video-section{
    background: linear-gradient(to right, #800202, #cb1111cf),url(../img/video-bg.jpg);
    width: 100%; height: auto; background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 6rem 5%; position: relative;
    animation: scale 15s linear infinite;
}

.video-text{
    
}

.video-text h3{
    color: var(--white-color);
    font-size: 7rem;
    font-weight: 700;
    font-family: 'Satisfy', sans-serif;
    text-shadow: var(--box-shadow);
}

.video-text h4{
    color: var(--white-color);
    font-size: 3rem;
    font-weight: 700;
    text-shadow: var(--box-shadow);
    font-family: 'jost', sans-serif;
}

.video-section .row{
    display: flex;
    align-items: center;
}
#container {
    max-width: 800px;
    margin: auto;
}

.video-btn a{
    font-size: 1.4rem;
    color: var(--white-color);
    border: 2px dotted var(--white-color);
    height: 50px; display: flex; align-items: center; justify-content: center;
    max-width: 160px; width: 100%; border-radius: 33px; margin: 2rem 0;
    font-family: 'jost', sans-serif;
}

#monitor {
    background: #fff;
    position: relative;
    /*border-top: 5px solid #888;
    border-bottom: 5px solid #888;
    border-left: 5px solid #888;
    border-right: 5px solid #888;*/
    margin: 5%;
    padding: 2% 2% 4% 2%;
    transition: margin-right 1s;
}

#monitor:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 3%;
    left: 36%;
    height: .5%;
    width: 28%;
    background: #0575f4;
}
@media all and (min-width: 960px) {
    #monitor {
    -webkit-animation: tvflicker .2s infinite alternate;
    -moz-animation:    tvflicker .5s infinite alternate;
    -o-animation:      tvflicker .5s infinite alternate;
    animation:         tvflicker .5s infinite alternate;
    }   
}

.vector-anim{
    position: absolute;
    width: 32px;
    top: 32px;
    left: 24px;
    animation: rotate-animation 10s linear infinite;
}

.vector-anim2{
    position: absolute;
    width: 60px;
    top: 60px;
    left: 60px;
    animation: rotate-animation 10s linear infinite;
}

.vector-anim3{
    position: absolute;
    width: 60px;
    bottom: 40px;
    right: 30px;
    animation: rotate-animation 10s linear infinite;
}


@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
  }
  50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
}
}
/*End video section*/

/*Start quetion section*/
.question-section{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 5%;
  width: 100%; height: auto;
}


.question-section .row p{
  padding-bottom: 2rem;
  text-align: center;
  font-family: 'lato', sans-serif;
}

.accordion-flush .accordion-item .accordion-button {
    font-size: 1.4rem;
    color: #333;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    margin: 1rem auto;
    outline: none;
    padding: 1.5rem;
    background: transparent;
    border: 1px solid lightgray;
}

.accordion-item{
  border: none!important;
}

.accordion-body {
    line-height: 1.7;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.4rem;
}

.accordion-button::after{
  background-image: url(../img/plus-icon.svg);
  transform: scale(1.4);
}

.accordion-button:not(.collapsed)::after{
  background-image: url(../img/remove-plus.svg);
  transform: scale(1.4);
}
/*End question section*/

/*Start frequently-section*/
.frequently-section{
    padding: 6rem 5%;
    width: 100%; height: auto;
}

.frequently-box h3{
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    padding: 10px 0;
    letter-spacing: 1px;
    font-family: 'lato', sans-serif;
    padding: 10px 0;
}

.frequently-box p{
    color: #333;
    padding: 10px 0;
    font-size: 1.2rem;
    font-weight: lighter;
    padding-bottom: 1rem;
}

.accordion-item{
    color: #fff;
}

.accordion-button{
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #e5e5e5; 
    transition: all .5s ease;
    color: #333;
    font-size: 16px;
    margin: 1rem 0;
    padding: 1.2rem 2rem;
    font-family: 'lato', sans-serif;
    box-shadow: none!important;
    outline: none!important;

}

.accordion-button::after{
    background: url(../img/plus-icon.svg);
}

.accordion-body{
    padding: 2rem;
    background: #ffff;
}


.accordion-button:not(.collapsed){
    color: #333;
    border: none!important;
    box-shadow: none!important;
    outline: none!important;
    background: #fff;
    border: 1px solid #e5e5e5!important;
}

.frequently-img{
    width: 100%;
    height: auto;
}

.frequently-img img{
    width: 80%;
    display: block;
    margin: auto;
}

.accordion-body p{
    font-size: 1.4rem!important;
    line-height: 1.5;
    line-height: 1.7;
    color: #333;
}
/*End frequently-section*/

/*Start footer section*/
.bg-footer {
/*    background: -webkit-radial-gradient(50% 50%, circle closest-side, #201c32 0%, #010006 100%);*/
    width: 100%;
    margin: 0!important;
    background: var(--main-color);
    padding: 6rem 5%!important;
}

footer{
    padding: 3.5rem 5%!important;
}

.footer-heading {
    letter-spacing: 2px;
}

.footer-link a {
    color: var(--white-color);
    line-height: 40px;
    font-size: 1.6rem;
    font-family: 'jost', sans-serif;
    transition: all 0.5s;
}

.footer-link a:hover {
    color: var(--white-color);
}

.contact-info {
    color: var(--white-color);
    font-size: 14px;
}

.footer-social-icon {
    font-size: 15px;
    height: 34px;
    width: 34px;
    line-height: 34px;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
}

.list-inline-item a i{
    color: var(--black-color);
    background-color: var(--white-color);
    transition: .5s transform;
}

.list-inline-item a i:hover{
   transform: translateY(-10px);
}

.footer-alt {
    color: #acacac;
}

.footer-heading {
    position: relative;
    padding-bottom: 12px;
    font-family: 'lato', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.footer-heading:after {
    content: '';
    width: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    border-bottom: 1px solid var(--main-color);
}

.text-center-footer{
    text-align: center;
}

.text-center-footer img{
    height: 5rem;
    margin: auto;
    display: block;
}

.text-center-footer p{
    font-size: 1.4rem;
    color: var(--white-color);
    font-family: 'lato', sans-serif;
}
/*End footer section*/

/*ABOUT PAGE*/
/*Start about section*/
.about-section{
    padding: 6rem 5%;
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    align-items: center!important;
    min-height: 100vh;
    width: 100%;
}
.about-section img{
  border-radius: 10px;
}

.about-utility h3{
    font-size: 3rem;
    color: #1b1b1b;
    font-weight: 800;
    font-family: "Lato", Sans-serif;
    letter-spacing: .4px;
    padding: 1rem 0;
}

.about-utility p{
    font-size: 1.4rem;
    color: var(--black-color);
    line-height: 1.7;
}

.about-img{
  width: 100%;
  height: auto;
}

.about-img img{
  width: 96%;
  margin: 1rem auto;
  display: block;
  transition: .5s all;
  height: auto;
}

.about-img img:hover{
    filter: grayscale(100%);
}

.about-utility img{
    width: 100%;
    height: auto;
    transition: .5s all;
}

.about-utility img:hover{
    filter: grayscale(100%);
}

.about-section2{
    padding: 1.5rem 5%;
    min-height: 100vh;
    width: 100%;
}

.about-section2 h3{
    font-size: 2.5rem;
    color: #1b1b1b;
    font-weight: 800;
    font-family: "Lato", Sans-serif;
    letter-spacing: .4px;
    padding: 1rem 0;
}

.about-section2 p{
    font-size: 1.4rem;
    color: var(--black-color);
    line-height: 1.7;
    letter-spacing: .4px;
}

.about-img img{
    width: 100%;
    height: auto;
}
/*End about section*/

/*Start contact section*/

.contact-form {
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 500px;
  margin: auto;
  margin-top: 7rem;
}

.contact-form textarea {
  resize: none;
  width: 90%;
  margin: auto;
  font-size: 1.4rem;
  font-family: 'jost', sans-serif;
}

.contact-form-wrapper form input{
    width: 90%;
    margin: auto;
    font-size: 1.4rem;
    font-family: 'jost', sans-serif;

}

.contact-form .form-input,
.form-text-area {
  background-color: #f0f4f5;
  height: 50px;
  padding-left: 16px;
}

.contact-form .form-text-area {
  background-color: #f0f4f5;
  height: auto;
  padding-left: 16px;
}

.contact-form .form-control::placeholder {
  color: #aeb4b9;
  font-weight: 500;
  opacity: 1;
}

.contact-form .form-control:-ms-input-placeholder {
  color: #aeb4b9;
  font-weight: 500;
}

.contact-form .form-control::-ms-input-placeholder {
  color: #aeb4b9;
  font-weight: 500;
}

.contact-form .form-control:focus {
  border: 1px solid var(--main2-color);
}

.contact-form .title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

.contact-form .description {
  color: #aeb4b9;
  font-size: 14px;
  text-align: center;
}

.contact-form .submit-button-wrapper {
  text-align: center;
}

.contact-form .submit-button-wrapper input {
  border: none;
  border-radius: 4px;
  background: var(--main-color);
  color: white;
  text-transform: uppercase;
  padding: 10px 60px;
  width: 90%;
  font-family: 'jost', sans-serif;
  height: 50px;
  letter-spacing: 2px;
  font-size: 1.4rem;

}

.contact-form .submit-button-wrapper input:hover {
  background-color: #d30069;
}

#offcanvasRightLabel{
    font-size: 2rem;
    color: var(--white-color);
    font-family: 'Jost', sans-serif;
    border-radius: 4px 14px;
}

.offcanvas-body{
    overflow-y: hidden;
}

.offcanvas-header .btn-close{
    font-size: 1.8rem;
}

.offcanvas-header{
    background: var(--main-color);
    padding: 1.5rem 5%;
}

.btn-close{
    background: url(../img/close-btn.png);
    background: url(../img/close-btn.png);
    background-size: contain;
}


/*End contact section*/














/*Media quaries*/
@media screen and (max-width: 991px){
html{
    font-size: 55%;
}

.header .menu-overlay.active{
    visibility: visible;
    opacity: 1;
}
.header .nav-menu{
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top:0;
    overflow-y: auto;
    background-color: var(--white-color);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
}
.header .nav-menu.open{
    visibility: visible;
    right: 0px;
}
.header .menu > .menu-item{
    display: block;
    margin:0;
}
.header .menu > .menu-item-has-children > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .menu > .menu-item > a{
    color: var(--black-color);
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
}
.header .menu > .menu-item:first-child > a{
    border-top: 1px solid #333333;  
}
.header .menu > .menu-item > a .fa-angle-down:before, 
.header .menu > .menu-item > a .fa-angle-down:after{
    background-color: #ffffff;
}
.header .menu > .menu-item-has-children.active > a .fa-angle-down:after{
    transform: translate(-50%,-50%) rotate(0deg);
}
.header .menu > .menu-item > .sub-menu{
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border:none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top:auto;
    max-height: 0;
    overflow: hidden;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
    padding: 12px 45px;
    font-size: 1.6rem;
    color: var(--white-color);
    border-bottom: 1px solid #333333;
}
.header .close-nav-menu,
.header .open-nav-menu{
    display: flex;
}

.home-section .home-img img{
    width: 60%;
}

}

@media screen and (max-width: 991px){
    .home-section .row{
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 768px){
.home-section .home-img img{
    transform: rotate(0)!important;
    margin-top: 2rem;
    width: 80%;
}

.home-section .home-text{
    max-width: 100%;
    text-align: center;
}

.home-btn a{
    margin: auto;
}

.home-section{
    animation-play-state: paused;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%; min-height: 100vh;
    padding: 6rem 5%;
}

.home-section .row{
    margin-top: 6rem;
}

.home-section .home-text .home-btn a{
    margin: 3rem auto;
}

.home-section .home-text h3{
    font-size: 5rem;
}

.vector-anim {
    position: absolute;
    width: 32px;
    top: 32px;
    left: 86%;
    animation: rotate-animation 10s linear infinite;
}

.video-section{
    background-size: cover;
    animation-play-state: paused;
    width: 100%; min-height: 100vh;
}
}

@media screen and (max-width: 500px){

.home-section .home-img img{
    margin: 0;
    width: 90%;
}

.video-text{
    text-align: center;
}

.video-text .video-btn a{
    margin: 2rem auto;
}

.review-img img{
    margin: 2rem auto!important;
    width: 150px; height: 150px;
}

}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

.home-section .home-text h3{
    font-size: 4rem;
}

.home-section .home-text{
    margin-top: 3rem;
}
.home-section .home-text p { padding-bottom: 4rem;}

.home-btn {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: -11px;
    z-index: 10000;
    width: 100%;
    justify-content: center;
}

.home-btn a {
    text-decoration: none;
    font-size: 2rem;
    letter-spacing: .5px;
    max-width: 206px;
    background: linear-gradient(45deg, #0C6E04, #0C9E09);
    width: 100%;
    text-align: center;
    border-radius: 33px;
    padding: 1.4rem 2rem;
    color: #FFFFFF;
    font-family: 'jost', sans-serif;
    transition: .5s all;
    margin-top: 2rem;
    transform: translate(-50%, -50%);
    left: 50%;
    position: fixed;
    bottom: -29px;
}

.about-section .row{
    flex-direction: column-reverse;
}

.about-utility h2{
    padding-top: 2rem;
}

}

@media screen and(max-width:400px) {
    
}