
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a, ul, li{
    text-decoration: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6,p{
    margin-bottom: 0px;
}
.main-area{
  overflow: hidden;
}

.head h1{
    color: #000000;
    font-weight: 400;
    font-size: 50px;
    text-align: center;
    font-family: "Racing Sans One", sans-serif;
}

.head{
    margin-bottom: 50px;
}

.wel-head h1{
  color: #BDBDBD;
  font-weight: 800;
  font-size: 60px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.wel-head h2 {
  color: #000000;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  font-family: "Racing Sans One", sans-serif;
  margin-top: -29px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.ml12 .letter {
  display: inline-block;
}

/* end head */

.wel-btn{
  background-color: #202020;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px 0 20px 0;
  display: inline-block;
}
.right{
  color: red ;
  margin-left: 5px;
}


/* start navbar */

.main-header-area {
  position: relative;
}

.main-header {
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  z-index: 2;
}







.desk-menu a:hover {
  color: #f82636;
}
.dropdown_menu a{
color: #222 !important;
}
.desk-menu a {
  color: #fff;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.desk-logo {
width: 19%;
text-align: center;
}
.desk-logo a img{
width: 100%;
}

.desh-con {
display: flex;
align-items: center;
justify-content: space-between;
}

.chevron {
  color: red;
  margin-left: 5px;
}

.desk-header {
  padding: 10px 200px;
  position: relative;
  z-index: 2;
}
.desk-area {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.dropdown {
  padding: 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  position: relative;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  perspective: 1000px;
  z-index: 100;
}

.dropdown:hover {
color: red;
cursor: pointer;
}

.dropdown:hover .dropdown_menu li {
display: block;
}

.dropdown_menu {
position: absolute;
top: 100%;
left: -50PX;
width: 230px;
perspective: 1000px;
z-index: -1;
}

.dropdown_menu li {
display: none;
color: #222;
background-color: #fff;
padding: 10px 20px;
font-size: 16px;
opacity: 0;
}

.dropdown_menu li:hover {
background-color: #0368B1;

}
.dropdown_menu a:hover {
  color: #fff !important;
}


.dropdown:hover .dropdown_menu--animated {
display: block;
}

.dropdown_menu--animated {
display: none;
}

.dropdown_menu--animated li {
display: block;
opacity: 1;
}



.dropdown_menu-2 .dropdown_item-1,
.dropdown_menu-2 .dropdown_item-2,
.dropdown_menu-2 .dropdown_item-3,
.dropdown_menu-2 .dropdown_item-4,
.dropdown_menu-2 .dropdown_item-5, 
.dropdown_menu-2 .dropdown_item-6,
.dropdown_menu-2 .dropdown_item-7 {
transform-origin: top center;
animation: rotateX 300ms ease-in-out forwards;
}

@keyframes rotateX {
0% {
  opacity: 0;
  transform: rotateX(-90deg);
}
50% {
  transform: rotateX(-20deg);
}
100% {
  opacity: 1;
  transform: rotateX(0deg);
}
} 

/* end desk-header */

.header-tab{
  display: none;
}

nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #3A3B3C;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #0368B1;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    top: 0;
    left: -100%;
    background: #0368B1;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 16px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #0368B1;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}

@media screen and (max-width: 1280px) {
.desk-header {
  padding: 10px 50px;
}

}

@media screen and (max-width: 1024px) {
  .tvs-logo {
    width: 8%;
}
.tvs-logo img{
  width: 100%;
}
.desk-logo {
  width: 17%;
}
.desk-menu a {
  font-size: 13px;
}
.dropdown {
  font-size: 13px;
}
.desk-area {
  gap: 25px;
}


}


@media screen and (max-width: 970px) {
  .header-tab{
    display: block;
  }
.desk-header{
  display: none;
}

.logo {
  width: 20%;
}

.logo img{
  width: 100%;
}


}

@media screen and (max-width: 912px) {
  .logo {
      width: 28%;
  }
  .main-header {
    top: 3%;
}



}

@media screen and (max-width: 768px) {
  .logo {
      width: 31%;
  }


  
}

@media screen and (max-width: 600px) {
  .logo {
      width: 36%;
  }
  .wrapper .nav-links {
    overflow-y: hidden;
}

}

@media screen and (max-width: 540px) {
  .main-header {
      top: 0%;
  }
}

@media screen and (max-width: 430px) {
  .logo {
      width: 41%;
  }


}

@media screen and (max-width: 375px) {
  .logo {
      width: 49%;
  }
}





nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}




/* end header-tab */


/* start banner */

.banner-2{
  position: relative;
}

.ban-2-text{
  position:absolute;
  top: 50%;
  left: 16%;
  transform: translateY(-50%);
}

.ban-video video{
   width: 100%;
}
.ban-video{
  position: relative;
  z-index: -1;
}

.ban-2-text h1{
  color: #FFFFFF;
    font-weight: 500;
    font-size: 50px;
    font-family: "Racing Sans One", sans-serif;
    -webkit-text-stroke: 1px #2A2A2A;
}

.main-video-ban{
  position: relative;
}

.ban-box-1 {
  position: absolute;
  width: 100%;
  height: 33%;
  background: linear-gradient(180deg, rgb(33 37 25 / 94%) 0%, rgb(33 37 25 / 49%) 58%, rgb(253 253 253 / 0%) 100%);
  top: 0%;
  left: 0%;
  z-index: -1;
}

.ban-box-2 {
  position: absolute;
  width: 32%;
  height: 99%;
  background: linear-gradient(90deg, rgba(33, 37, 25, 0.9780287114845938) 0%, rgb(33 37 25 / 72%) 50%, rgba(255, 255, 255, 0) 100%);
  top: 0%;
  left: 0%;
  z-index: -1;
}








/* end banner */


 
  /* start of floating-wp */
  
  .floating-wp {
    position: fixed;
    bottom: 132px;
    left: 25px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 55px;
    height: 55px;
    font-size: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    box-shadow: 0 0 0 0 #42db87;
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
  }
  
  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  /* start of dial-pad */
  
  .dial-pad {
    position: fixed;
    bottom: 60px;
    left: 25px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .dial-icon {
    background-color: #0092ff;
    color: #fff;
    width: 55px;
    height: 55px;
    font-size: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #0092ff;
  }


/* end floating phone */

#button {
    display: inline-block;
    background-color: #0368B1;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  #button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
  }
  #button:hover {
    cursor: pointer;
    background-color: #333;
  }
  #button:active {
    background-color: #555;
  }
  #button.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* Styles for the content section */
  
  .content {
    width: 77%;
    margin: 50px auto;
    font-family: 'Merriweather', serif;
    font-size: 17px;
    color: #6c767a;
    line-height: 1.9;
  }
  @media (min-width: 500px) {
    .content {
      width: 43%;
    }
    #button {
      margin: 30px;
    }
  }
  .content h1 {
    margin-bottom: -10px;
    color: #03a9f4;
    line-height: 1.5;
  }
  .content h3 {
    font-style: italic;
    color: #96a2a7;
  }












/* start footer */

.footer{
    background-color: #0368B1;
}

.foot-number {
    background-color: #444444;
    display: flex
;
    width: 27%;
    height: 107px;
    padding: 20px;
}

.foot-number a{
    display: flex;
    align-items: center;
    gap: 20px;
   
}
.foot-number a p{
    color: #fff;
}
.foot-number p{
    font-size: 30px;
}

.foot-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #949292;
    padding: 30px 0 30px 300px;
}

.fot-ri {
    color: #FFC700;
    border: 1px solid #FFC700;
    padding: 3px 4px;
    border-radius: 100%;
    font-size: 14px;
}

.foot-con {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    position: relative;
}

.footarea {
    width: 33%;
    margin-top: 30px;
}
.foot-2{
    width: 33%;
    text-align: center;
}


.foot-2 img{
    width: 45%;
}
.foot-3 iframe{
    height: 290px;
    
}

.dot{
    color: #fff;
    font-size: 20px;
}

.foot-area p{
    color: #fff;
    font-size: 17px;
    font-family: "Montserrat", sans-serif;
}
.foot-area{
    display: flex;
    gap: 20px;
    align-items: center;
}
.Address {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.foot-line {
    width: 1px;
    height: 260px;
    background-color: #949292;
    position: absolute;
    left: 38%;
}
.foot-line-2 {
    width: 1px;
    height: 260px;
    background-color: #949292;
    position: absolute;
    right: 33%;
}
.foot-icon{
    display: flex;
    gap: 15px;
    margin-top: 40px;
}
.fac{
    font-size: 22px;
    color: #0368B1;
    background-color: #fff;
    padding: 5px 9px;
    border-radius: 100%;
}
.ins{
    font-size: 22px;
    color: #0368B1;
    background-color: #fff;
    padding: 5px 6px;
    border-radius: 100%;
}
.you{
    font-size: 22px;
    color: #0368B1;
    background-color: #fff;
    padding: 5px 4px;
    border-radius: 100%;
}
.links-area a {
    display: flex;
    gap: 10px;
    align-items: center;
}
.links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}
.links-area p{
    color: #fff;
    font-size: 17px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.heart{
    color: red;
    margin-left: 2px ;
    margin-right: 2px;
}
.clicki p{
    color: #fff;
    text-align: center;
}
.clicki {
    border-top: 1px solid #949292;
    margin-top: 20px;
    padding: 20px 0;
}











/* end footer */



