html{
        overflow-x: hidden;
}
body{
    overflow: hidden;
  margin: auto;
  background: #FFFDF9;
  font-family: "Inter", sans-serif !important;

}


@media(min-width: 1366px){
.cmpad{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
}
@media(max-width: 1366px){
.cmpad{
  padding-left:80px;
  padding-right:80px;
}
}
@media(max-width: 991px){
.cmpad{
  padding-left:40px;
  padding-right:40px;
}

}
@media(max-width: 767px){
.cmpad{
  padding-left:15px;
  padding-right:15px;
}

}

p{
    margin-bottom: 0;
    color: #71717A;
    font-size: 16px;
    font-weight: 500;
    line-height: 128%;
}

a{
  color: #1A1A1A;
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
   font-size: 16px;
  font-weight: 500;
}
a:hover{
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
ul {
    padding-left: 0px;
    list-style-type: none;
    margin: 0;
}
img{
    display: block;
  max-width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.posrel{
  position: relative;
}













.btn {
      font-size: 16px;
    padding: 14px 24px;
    display: flex;
    font-weight: 600;
    border-radius: 50px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
 
}
.btn span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn span img {
  width: 18px !important;
  filter: brightness(0) invert(1);
}


@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.mybtn-primary {
 position: relative;
    color: #ffffff!important;
     background: #C9299A;
    min-width: auto;
    
    border: none !important;;
    z-index: 1;
  transition: background .3s ease;
}
.mybtn-primary:hover {
background: #b51a87;
}

.mybtn-secondary {
 position: relative;
    color: #ffffff!important;
     background: #34353A;
    min-width: auto;
    border: 1px solid transparent;
    z-index: 1;
  transition: background .3s ease;
}

.mybtn-secondary:hover {
 background: #1e1f21;

}




.morebtn{
   font-size: 16px;
    color: #613195;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-align: center;
    border-radius: 30px;
}
.morebtn span{
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.morebtn:hover span{
    background: #613195;
}
.morebtn:hover span img{
    width: 18px;
    filter: brightness(0) invert(1);
}

.morebtn2{
   font-size: 16px;
    color: #E91287;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-align: center;
    border-radius: 30px;
}
.morebtn2 span{
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.morebtn2:hover span{
    background: #E91287;
}
.morebtn2:hover span img{
    width: 18px;
    filter: brightness(0) invert(1);
}

.mybtn-third{
        padding: 0;
    color: #01268F;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.mybtn-third span img{
  filter: unset!important;
  width: 13px!important;
}
.mybtn-third:hover{
  color: #fff;
  gap: 7px;
}

.mybtn-frth {
 position: relative;
    color: #01268F;
     background: #fff;
    min-width: auto;
    border: 1px solid transparent;
    z-index: 1;
  transition: background .3s ease;
}
.mybtn-frth span img{
filter: unset;
}
.mybtn-frth:hover {
 color: #fff;
 background: #DE4E36;

}
.mybtn-frth:hover span img{
  filter: brightness(0) invert(1);
}



.mybtn-fill {
  position: relative;
  color: #00BAA6;
  background: transparent;
  background: #fff;
  border: 1px solid transparent;
  overflow: hidden;
  min-width: 161px;
  z-index: 1;
}

.mybtn-fill:hover {
  background: #00BAA6;
  color: #fff;
}

.mybtn-fill span {
  background: #ffffff;
  display: flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}



/* Outer framed container with corner marks */
.frame{
position: relative;
    padding: 1px;
    border: 1px solid #00000030;
    display: inline-block;
}

/* Decorative crop/corner marks (small L shapes) */
.frame::before, .frame::after,
.frame .spn::before, .frame .spn::after{
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border: 2px solid #111;
    box-sizing: border-box;
    background: transparent;
}
/* top-left */
.frame::before{ left:-2px; top:-2px; border-right:none; border-bottom:none; }
/* top-right */
.frame::after{ right:-2px; top:-2px; border-left:none; border-bottom:none; }
/* We'll use span pseudo-elements for bottom corners */
.frame .spn::before{ left:-2px; bottom:-2px; border-right:none; border-top:none; }
.frame .spn::after{ right:-2px; bottom:-2px; border-left:none; border-top:none; }

/* whitecorner */
.framew{
  position: relative;
    padding: 1px;
    border: 1px solid #ffffff4d;
    display: inline-block;
    }

/* Decorative crop/corner marks (small L shapes) */
.framew::before, .framew::after,
.framew .spn::before, .framew .spn::after{
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border: 2px solid #fff;
    box-sizing: border-box;
    background: transparent;
}
/* top-left */
.framew::before{ left:-2px; top:-2px; border-right:none; border-bottom:none; }
/* top-right */
.framew::after{ right:-2px; top:-2px; border-left:none; border-bottom:none; }
/* We'll use span pseudo-elements for bottom corners */
.framew .spn::before{ left:-2px; bottom:-2px; border-right:none; border-top:none; }
.framew .spn::after{ right:-2px; bottom:-2px; border-left:none; border-top:none; }





.mybtn-third .text {
      flex: 1;
    text-align: center;
    color: #000;
    padding: 0 15px;
    background-color: #fff;
    height: 100%;
    display: flex
;
    align-items: center;
     transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.mybtn-third .arrow {
  background-color: #121416;
  color: #fff;
  width: 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mybtn-third .arrow img{
  filter: brightness(0) invert(1);
}
.mybtn-third:hover .text{
  background-color: #121416;
  color: #fff;
}
.mybtn-third:hover .arrow{
  background-color: #fff;
}
.mybtn-third:hover .arrow img{
  filter: unset;
}


.bnrhed{
        font-size: 50px;
    color: #34353A;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 120%;
}

.mainhed{
       font-size: 40px;
    font-weight: 600;
    color: #34353A;
    line-height: 120%;
}
.paramain{
  font-size: 18px;
  line-height: 152%;
}
/* .txtanm{
opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
}
 
.txtanm.animate {
  animation: fadeUpSoft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes fadeUpSoft {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
} */

.subhed{
  font-size: 24px;
    font-weight: 500;
    color: #613195;
    line-height: 120%;
}
.clrred{
  color: #BC252D;
}
/* haeder */

.header{
 height: auto;
    position: relative;
    z-index: 11;
}
.header-inn {
    padding-top: 17px;
    padding-bottom: 7px;
}
.nav-header{
  max-width: 117px;
}

.hedrfll{
  justify-content: space-between;
  align-items: center;
}
.logo{
  width: 100%;
  float: left;
  position: relative;

}
.logo img{
      width: 100%;
    max-width: 202px;
    float: left;
    position: relative;
    background: #fff;
}
.hdr-menu{
    height: 100%;
}
.menus{
  display: flex;
      gap: 12px;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}


.megalistcust{
        padding: 20px 7px !important;
    display: flex !important
;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
}


/* Fixed header class */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 1px 11px #00000030;
  animation: slideDown 0.3s ease forwards;
  height: auto;
    padding: 10px 0px;
    background: #182100;
}

/* Optional animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}



/*mob*/
/* Wrapper */
/* Wrapper & Container */
.mobile-wrapper {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  float: right;
  height: 100%;
  display: flex
;
    align-items: center;
}

.content {
  background: transparent;
  display: block;
  width: 100%;
  height: 100%;
}

nav {
  position: relative;
}

/* Hide native checkbox */
nav input[type=checkbox] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

/* Hamburger Icon */


.hamburger-label {
  position: relative;   /* Use absolute for positioning inside the container */
  top: 7px;        /* Aligns to the right side */
  z-index: 1100;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
.mobile-container {
  position: relative;
}


.hamburger-label::before,
.hamburger-label::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #C9299A;
  left: 0;
      border-radius: 5px;
  transition: 0.3s ease;
}

.hamburger-label::before {
  top: 0;
}

.hamburger-label::after {
  top: 10px;
}

/* Becomes X when open */
#hamburger1:checked + .hamburger-label::before {
  transform: rotate(45deg);
  top: 8px;
  background-color: #fff;
}

#hamburger1:checked + .hamburger-label::after {
  transform: rotate(-45deg);
  top: 8px;
  background-color: #fff;
}

/* Overlay full menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Show overlay */
#hamburger1:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}

/* Navigation links */
.nav-links {
  margin: 0px 0 0 0;
 padding: 125px 0;
 background: #C9299A;
}

.nav-links li {
  list-style: none;
  /*border-bottom: 1px solid #ddd;*/
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.nav-links li a,
.submenu-label {
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  font-size: 18px;
    font-weight: 500;
    
  text-align: center;
  color: white;

}

.nav-links li a:hover,
.submenu-label:hover {
  color: #FFD000;
}

/* Animate in when menu opens */
#hamburger1:checked ~ .overlay .nav-links li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

#hamburger1:checked ~ .overlay .nav-links li:nth-child(1) { transition-delay: 0s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(2) { transition-delay: 0.1s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(3) { transition-delay: 0.2s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(4) { transition-delay: 0.3s; }

/* Submenu */
.has-submenu {
  position: relative;
}

.has-submenu input[type="checkbox"] {
  display: none;
}

.submenu {
  display: none;
  background: #c6272a;
}

.submenu li a {
  font-size: 16px;
  padding: 10px 40px;
  border-top: 1px solid #8a0f11;
}

.has-submenu input[type="checkbox"]:checked ~ .submenu {
  display: block;
  padding-left: 0;
}

@media(min-width:992px){
  .mobile-wrapper{
    display: none;
  }
}
/*mob*/

.header_menu_area ul li a img{
  margin-left: 0px;
        margin-left: 0px;
    width: 13px;
}

.header_menu_area {
    position: relative;
    text-align: center;
    width: 100%;
}
.header_menu_area > ul {
    padding-right: 0px;
    padding: 0px 0px 0px 0px;
    width: auto;
    float: right;
    vertical-align: middle;
    display: flex;
    align-items: center;
     position: unset;
}

.header_menu_area > ul > li {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: #000000;
    float: left;
    text-decoration: none;
    list-style-type: none;
    position: relative;
    padding: 0px 12px;
    z-index: 1;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    text-decoration: none;
    text-align: center;
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}
.header_menu_area > ul > li > a {
    position: relative;
    display: flex;
    gap: 4px;
    float: left;
    color: #71717A;
    text-decoration: none;
    font-weight: 500;
    font-style: normal;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.header_menu_area > ul > li > a.stable{
  color: #34353A;
}

.header_menu_area > ul > li > a:hover{
    color: #34353A;
}
/* .stable{
  color: #ffffff !important;
} */


.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    top: 0px;
    padding: 0;
    width: 270px;
    position: absolute;
    right: 20px;
    padding-top: 30px;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99999;
    -moz-transform: perspective(600px) rotateX(-90deg);
    -ms-transform: perspective(600px) rotateX(-90deg);
    -o-transform: perspective(600px) rotateX(-90deg);
    
    -o-transition: -o-transform .5s ease,opacity .6s ease,max-height .6s step-end,max-width .6s step-end,padding .6s step-end;
   
}
.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transition: all .5s ease-out;
    height: auto;
    right: 0;
}
.submenu2{
         right: -100% !important;
    padding-top: 0px !important;
}
/* .menu-padding2{
  padding-bottom: 10px!important;
  border-radius: 0 0;
} */
.menu-padding1{
  padding-top: 10px!important;
  border-radius: 8px 8px 0 0 ;
}
.menu ul li:hover{
  background: #FFF7F0;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.menu ul li a:hover, .menu ul li:hover>a {
        /* background: #396dab; */
    /* color: #ffffff; */
    padding-left: 4px;
    text-decoration: none;
    transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.menu li:first-child {
    margin-left: 0;
}
.menu li:first-child {
    margin-left: 0;
}
.menu ul li {
     display: block;
    padding: 15px;
    float: left;
    background: 0 0;
    margin: 0;
    padding: 15px 13px;
    background: #fff;
    width: 100%;
    position: relative;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
 
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
    /* z-index: 9; */
    /* padding-bottom: 50px; */
}
.menu ul li a {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    display: block;
    color: #970e10;
    background: transparent;
    text-align: -webkit-match-parent;
    text-decoration: none;
    border-radius: 0;
    /* margin-bottom: 10px; */
    text-align: left;
}


/*overlay*/

.side-menu-4 {
    position: relative;
    top: 7px;
    right: 0;
    z-index: 999;
    width: auto;
    float: right;
        padding-left: 11px;
}

.burger-menu img {
  width: 26px;
 
  cursor: pointer;
}

.overlay-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 102;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  display: flex;
  background: rgba(0, 0, 0, 0.95);
}

.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}

.overlay-wrap {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-area,
.right-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px;
}
.right-areamain{
  width: 100%;
  float: left;
}
.right-areamain h2{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.right-areamain p{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 14px;
  font-weight: 400;
}
.left-area h6{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 55px;
    font-weight: 500;
    line-height: 127%;
    margin-bottom: 0;
}

.left-area {
  background: #121416;
  color: white;
  text-align: left;
}

.right-area {
  background: #FD421B;
  color: #A8A8A8;
      box-shadow: -1px 0px 13px #10346057;
  text-align: left;
}

.left-area nav ul {
  list-style: none;
  padding: 0;
}

.left-area nav li {
  margin-bottom: 20px;
}

.left-area nav a {
  color: white;
  font-size: 40px;
  text-decoration: none;
}
.close img{
  width: 100%;
  max-width: 30px;
  filter: brightness(0) invert(1);
}
.overlay-menu .close {
  position: absolute;
    right: 60px;
    top: 55px;
    font-size: 30px;
    background: #121416;
    border-radius: 30px;
    cursor: pointer;
    opacity: 0.5;
    z-index: 10;
    transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.overlay-menu .close:hover {
  opacity: 1;
}
.right-area-main{
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.right-area-main h2{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 35px;
  font-weight: 500;
}
.right-area-main p{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 15px;
  font-weight: 400;
}
.right-area-main a{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
.left-area form {
    width: 100%;
    float: left;
    margin-top: 40px;
    transition-delay: 300ms;
}
.ham-field {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.ham-field label {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    width: 100%;
    float: left;
    margin-bottom: 5px;
}
.ham-field input {
    width: 100%;
    float: left;
    padding: 12px;
    border: none!important;
    border-radius: 10px;
    font-size: 15px;
    color: #000;
    height: 51px;
    outline:none!important;
}
.ham-field textarea {
    width: 100%;
    float: left;
    padding: 12px;
      border: none!important;
    border-radius: 10px;
    font-size: 16px;
    color: #000;
    height: 150px;
    outline:none!important;
}

.tophed{
  background: #970E10;
}
.tphedmain{
 display: flex;
    justify-content: flex-end;
    padding: 5px 0;
}
.tpcall{
      display: flex;
    align-items: center;
    gap: 10px;
}
.tpcall a{
  color: #fff;
  font-weight: 400;
}
.tphedfirst{
      display: flex;
    gap: 30px;
}
.tphedsecond{
  display: flex;
    gap: 40px;
}
.tphedsecond a{
  color: #fff;
  font-weight: 400;
}
/*---------------------------------------*/
/*:::::::::::::::::SLIDER::::::::::::::::*/
/*---------------------------------------*/

.mylist{
    display: flex;
    flex-flow: column;
    margin-bottom: 1rem; 
}
.mylist li{
    position: relative;
        padding: 4px 0;
    padding-left: 24px;
    font-size: 16px;
    font-weight: 500;
    color: #71717A;
    line-height: 24px;
}
.mylist li:before{
    content: '';
    background-image: url(../img/icons/points.svg);
    background-size: contain;
    background-repeat: no-repeat;
        width: 15px;
    height: 19px;
    position: absolute;
    left: 0;
    margin-top: 4px;
}

.bnr-carousel .owl-nav {
    display: none;
}
.bnrtxt-carousel .owl-nav {
    display: none;
}


.bnr-carousel .owl-dots{
    display: none;
}

.banner {
  position: relative;
 
  height: auto;
  z-index: 1;
  background-position: center;
  /* padding-top: 160px; */}



.bnrtxt-slider{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 11;
    flex-direction: column;
    justify-content: flex-end;
        padding-bottom: 0;
    padding-top: 35px;
}

.bnrsecnd{
  max-width: 389px;
      display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.bnrtext {
        display: flex;
    gap: 13px;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.bnrtext p{
        color: #71717A;
    font-size: 20px;
    line-height: 126%;
    max-width: 100%;
}
.bnrtext p .txtptrn{
  position: relative;
  z-index: 1;
}
.bnrtext p .txtptrn::after{
      content: '';
    position: absolute;
    top: -3px;
    left: -8px;
    width: 136px;
    height: 35px;
    z-index: -1;
    background: url(../img/icons/txtptrn.svg);
    background-size: cover;
}



.bnrtext .bnrname{
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  padding: 3px 13px;
  border-radius: 0 13px 13px 0;
  background: #43197094;
}
.bnrfrmfull{
      display: flex;
    align-items: center;
    height: 100%;
}
.bnrform{
  background: #ffffff;
  border-radius: 22px;
  padding: 38px;
  z-index: 1;
  padding-bottom: 102px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 17px #0000001a;
}
.bnrform .wavefrm{
  position: absolute;
  bottom: 0;
  pointer-events: none;
  right: 0;
  width: 100%;
    z-index: -1;
}
.bnrform h3{
 color: #333333;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 28px;
}
.bnrform .con-field{
  margin-bottom: 11px;
}
.bnrform .con-field input{
  background: #FFF6ED;
  border: 1px solid #FFE8D1!important;
}

.spad{
  padding-top: 70px;
  padding-bottom: 70px;
}
.spad2{
   padding-top: 50px;
  padding-bottom: 50px;
}

@keyframes zoomIn {
    from {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }




.bnr-second{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}




/* clients */
.clientsmarqee{
  padding: 15px 0;
}
.marquee {
    overflow: hidden;
    width: 100%;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-brands 120s linear infinite;
    gap: 60px;
}
.marquee-track img {
    height: 80px;
    width: auto;
}
@keyframes scroll-brands {
                                        from {
                                            transform: translateX(0);
                                        }

                                        to {
                                            transform: translateX(calc(-100% - 60px));
                                        }
                                    }

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scroll 110s linear infinite;
}
.logo-track img {
    height: 80px;
    width: auto;
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* worlwide */
.worldwidefull p{
width: 70%;
}
.worldwidebx img{
border-radius: 17px;
width: 100%;
margin-bottom: 15px;
}
.worldwidebx .desc{
  color: #34353A;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.worldwidebx .cont{
display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    

.worldwidebxs{
  display: flex;
  gap: 20px;
}
.worldwidebx{
  width: 100%;
  position: relative;
}
@media(max-width: 1024px){
  .worldwidebx{
    width: 306px;
  }
  .worldwidebxs {
    width: 1284px;
}
.worldwidescroll{
 overflow-x: auto;
}
}


/* ctatext */
.mainhedcent{
  font-size: 50px;
  font-weight: 600;
  color: #34353A;
  line-height: normal;
}

/* ctaimg */
.ctaimghedr .mainhed{
width: 60%;
}
.ctaimgbx{
  position: relative;
      aspect-ratio: 128 / 59;
}
.ctaimgbx img{
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}
.ctaimgbx .ctacont{
  position: absolute;
  bottom: 0;
  padding: 48px 27px;
  height: 100%;
  display: flex;
  flex-direction: column;
 justify-content: flex-end;
  width: 100%;
}
.ctaimgbx .ctacont p{
  margin-top: 0px;
  font-size: 50px;
  color: #fff;
  font-weight: 600;
  line-height: normal;
}

/* modules */
.mainhed2{
  font-size: 50px;
  font-weight: 600;
  color: #34353A;
  line-height: normal;
}
.modulebx img{
  height: 260px;
  object-fit: cover;
}
.modulebx .cont{
   display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.modulebx .heddesc{
  font-weight: 500;
  color: #71717A;
  font-size: 20px;
  line-height: normal;
  padding-top: 4px;
}

/* ctadash */
.ctadashbx{
  position: relative;
      aspect-ratio: 120 / 89;
}
.ctadashbx img{
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
      object-position: top;
}
.ctadashbx .ctacont{
  position: absolute;
  bottom: 0;
  padding: 40px 45px;
  height: 100%;
  display: flex;
  flex-direction: column;
 justify-content: flex-start;
  width: 100%;
}
.ctadashbx .ctacont p{
  margin-top: 0px;
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: normal;
}

/* modulelist */
.modulecrd{
    display: flex;
    padding: 18px 0;
    align-items: center;
    gap: 15px;
    height: 100%;
    position: relative;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.modulecrd span{
       width: 80px;
    height: 80px;
    background: linear-gradient(135deg,#4B1F8A,#6B3FCF)!important;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.moduleorng span{
  background: #FF734E;
}
.moduleprpl span{
  background: #C9299A;
}
.modulecrd span img{
  height: 50px;
  width: 50px;
  object-fit: contain;
}
.modulecrd .contnt{
  width: calc(100% - 95px);
}
.modulecrd .cont{
        font-size: 16px;
    font-weight: 600;
    color: #34353A;
    line-height: normal;
    margin-bottom: 5px;
}
.modulecrd .desc{
    margin-bottom: 0px;
        display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* magicsection */
.magic-section {
  position: relative;
  height: 300vh;
  background: #fff;
}

.magic-content {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  background: #fffdf9;
  color: #fff;
}

.magic-circle {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100px;
  height: 100px;
  border-radius: 50%;

  background: #DEBFFF;

  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
}

.magic-title,
.magic-text,
.magic-btn {
  position: relative;
  z-index: 2;
}

.magic-title {
  font-size: 90px;
  font-weight: 600;
  color: #34353A;
  margin-bottom: 20px;
  text-align: center;
}

.magic-text {
  font-size: 20px;
  color: #71717A;
  max-width: 500;
  text-align: center;
}

.magic-btn {
  margin-top: 30px;
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
}


/* Tablet */
@media (max-width: 991px) {
  .magic-title {
    font-size: 56px;
  }

  .magic-text {
    max-width: 450px;
  }
  .magic-section {
    height: 250vh;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .magic-title {
    font-size: 38px;
    line-height: 1.15;
  }

  .magic-text {
    font-size: 16px;
    max-width: 320px;
  }

  .magic-btn {
    padding: 12px 28px;
    margin-top: 20px;
  }

  .magic-circle {
    width: 80px;
    height: 80px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .magic-title {
    font-size: 30px;
  }

  .magic-text {
    font-size: 15px;
   
  }
}


.modal-dialog{
  display: flex;
  height: 100vh;
  align-items: center;
}

/* modal */
@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px !important;
    }
}
#booking .modal-content {
    /* background: #000; */
    background-size: cover;
    border-radius: 20px;
        background: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
 border: none;
}
.close_form {
    border-radius: 30px;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 5px;
    z-index: 999;
    top: 15px;
    background: #ac8530  url(../img/icons/close.svg) no-repeat center center;
    background-size: 15px 15px;
    text-indent: 100%;
    white-space: nowrap;
        background-position-x: 12px;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.mod-new {
    width: 100%;
    float: left;
    padding: 30px;
}




/*top side*/
/* Sidebar Container */
#sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%; /* 50% width as requested */
    height: 100%; /* Full screen height */
    z-index: 1000;
    color: #d9d9d9;
    border-top-left-radius: 20px;
    transform: translateX(100%) translateZ(-500px);
background-color: rgba(0,0,0,0.18);
    backdrop-filter: blur(60px);
    /* BOOK CLOSED STATE */
    transform-origin: right center;
    transform: perspective(1400px) rotateY(-90deg);
    opacity: 0;
   

    transition:
        transform 1.2s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.6s ease,
        visibility 0s 1.2s;
         visibility: hidden;
    
    padding: 0px 20px 0px 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;

background: #B90723;
    background: linear-gradient(
316deg, #031334, #2054A8);

    overflow-y: auto;

    /* smooth scrolling */
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;

}

.sidebar-open #sidebar {
    transform: perspective(1400px) rotateY(0deg);
    opacity: 1;
    visibility: visible;
    transition:
        transform 1.2s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.6s ease;
}


body.sidebar-open {
    overflow: hidden;
    height: 100vh;
}



.close-btn {
    color: #ffffff;
    font-size: 60px;
    text-decoration: none;
    line-height: 0.5;
    transition: color 0.3s;
    margin-top: 0px;
    float: left;
    text-align: left;
    position: absolute;
    top: -42px;
    /* font-weight: 200; */
}


.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.quick-enquiry {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 500;
    
    color: #fff;
}
.sd-address p {
    float: left;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: white;
    line-height: 30px;
    margin-bottom: 0px;
}
.sidebar-title:hover{
        color: #969595;

}
.sd-logo img {
    width: 262px;
}
.hmbrsocial a span img{
  filter: brightness(0) invert(1);
  opacity: 55%;
}



/* footer */
#footer{
      position: relative;
    z-index: 1;
    background: #FFFDF9;
}
footer {
  position: relative;
  z-index: 1;
}

.ft-top{
    background: #fff;
    padding: 15px 30px;
    border-radius: 15px;
}
.ft-logo {
    max-width: 100%;
    width: 300px;
    margin-bottom: 0;
}
.ft-logo img {
    width: 100%
}
.ftpara p{
font-size: 20px;
font-weight: 500;
color: #71717A;
}
.ftscn{
      margin-top: 35px;
    padding-top: 35px;
    padding-bottom: 35px;
    margin-bottom: 35px;
  border-top: 1px solid #0000001d;
  border-bottom: 1px solid #0000001d;
}
.ftnmbr{
  padding: 25px;
  background: transparent;
  border: 1px solid #0000001d;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  min-height: 140px;
  position: relative;
      justify-content: flex-end;
      transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.ftnmbr .desc{
  font-size: 20px;
  font-weight: 500;
  color: #34353A;
  margin-bottom: 2px;
}
.ftnmbr .cont{
  font-size: 20px;
  font-weight: 500;
  color: #71717A;
  margin-bottom: 0;
}
.ftnmbr:hover{
background: #DEBFFF;
 transition: all .3s ease;
    -webkit-transition: all .3s ease;
}


.ft-social {
    flex-direction: row;
    gap: 15px;
    display: flex;
}

.ft-social a {
    display: flex;
    width: 38px;
    height: 38px;
    background-color: #FFE8E9;
    border-radius: 8px;
    justify-content: center;
    align-items: center
}
.ft-social a:hover span img{
     animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}
.quicklink h2 {
    font-size: 20px;
    font-weight: 500;
    color: #34353a;
    margin-bottom: 8px;
}
.quicklink p {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
     margin-bottom: 15px;
}
.quicklink p a{
    color: #71717A;
    font-size: 15px;
    font-weight: 400;
}
.quicklink p a:hover{
    color: #34353a;
}

.foot-list li a {
    display: flex;
    color: #71717A;
    font-size: 15px;
    font-weight: 400;
}
.foot-list li a:hover{
    color: #34353a;
}
.foot-list li p {
    display: flex;
    flex-direction: row;    
    align-items: flex-start;
    gap: 12px;
    line-height: 27px;
   
}

.foot-list li p .fticn {
       background: #613195;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
        margin-top: 4px;
}

.foot-list li p .fttxt {
    width: calc(100% - 50px);
    font-weight: 600;
}

.foot-list li {
    padding: 4px 0;
}
.collab-logo{
    display: flex;
    gap: 20px;
        align-items: center;
}
.ft-disc ul{
    display: flex;
    gap: 27px;
}
.ft-disc ul li a{
    font-size: 15px;
    font-weight: 400;
}
.ft-disc ul li a:hover{
    color: #0b0b0b;
}
.ft-bottom{
    border-radius: 14px;
    background: #fff;
    padding: 20px 35px;
    box-shadow: 0 0 6px #00000012;
    margin-top: 30px;
}
.copy{
    font-weight: 400;
    color: #71717A;
    border-top: 1px solid #0000001d;
}


sup{
    vertical-align: super;
    font-size: 10px;
    line-height: 0;
        left: -2px;
}







@media (min-width:992px) and (max-width:1199px){

.header_menu_area > ul > li > a {
  font-size: 15px;
}
.header_menu_area > ul > li {
  padding: 0px 10px 0px 1px;
}

.nav-menu > li > a {
    padding: 0px 6px!important;
    font-size: 14px;
  }
  .nav-header {
    width: 238px;
}
.nav-search{
  padding-top: 17px!important;
}
}

@media(max-width: 1199px){
  .bnr-hed {
    font-size: 3rem;
  }
  
  
  .bnrhed{
    font-size: 50px;
  }



}



@media(max-width: 991px){
 
  .bnrtext img{
    margin-top: 30px;
  }
  .logo-track img{
    height: 65px;
  }
  .logo-track{
    width: 4000px;
  }
  .abt-cta {
    position: relative;
    right: 0;
}
.mainhed {
    font-size: 30px;
}
.worldwidefull p{
  width: 100%;
}
.mainhedcent{
  font-size: 42px;
}
.ctaimghedr .mainhed{
  width: 100%;
}
.ctaimgbx .ctacont p{
  font-size: 40px;
}
.mainhed2{
  font-size: 40px;
}
.ctadashbx .ctacont p{
  font-size: 30px;
}
.header-inn {
  padding-top: 10px;
  padding-bottom: 10px;
}
.modulecrd{
  padding: 5px 0;
}
.ft-logo{
width: 250px;
}
.ftnmbr{
  margin-top: 15px;
}
.menus{
  display: none;
}
.side-menu-4{
  display: none;
}
.hdr-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.shining:before{
  left: -106%;
}


.spad{
  padding-top: 60px;
  padding-bottom: 60px;
}
.spad2{
   padding-top: 45px;
  padding-bottom: 45px;
}
.quicklink{
  margin-bottom: 25px;
}
.abt{
  margin-top: 15px;
}

.cta{
  height: auto;
}
.cta-card {
  
    padding: 50px 40px;
}


.ft-social{
  margin-bottom: 25px!important;
}

.f-top{
  width: 280px;
}

.groupsec{
  padding-top: 0px;
}
.navigation-portrait .megamenu-panel{
  padding: 12px!important;
}
.megamenu-panel {
width: 100%!important;}
.nav-toggle {
margin-top: -26px!important;}



        .nav-menu > li > a.stable {
        color: #956600 !important;
    }
.nav-menu > li:hover > a,
.nav-menu > li.active > a,
.nav-menu > li.focus > a {
  color: #956600!important;
}
.nav-menu > li > a img{
  filter: brightness(0);
}
.megamenu-list > li > a:hover{
  color: #956600!important;
}

}






@media(max-width: 767px){
.ftpara p{
  font-size: 18px;
}
	.foot-list{
		margin-top:0px !important;
	}
.bnrtext p{
  font-size: 18px;
}
.bnrhed{
  font-size: 40px;
}
  .copy p{
    text-align: center;
  }

    .f-top{
      display: none;
    }
    .header_menu_area .btn{
          font-size: 15px;
    padding: 8px 17px;
    }
   
}


@media(max-width: 575px){
	.magic-section {
        height: 235vh;
    }
	.quicklink1{
		margin-top: 0px!important;
	}
  .bnrhed{
  font-size: 30px;
}
.ftpara p{
  font-size: 16px;
}
.bnrtext p{
  font-size: 16px;
}
.bnrtext img{
  margin-top: 45px;
}
    .logo-track img {
        height: 55px;
    }
.paramain{
  font-size: 17px;
}
.mainhed{
  font-size: 25px;
  margin-bottom: 10px!important;
}
.worldwidebx img{
  height: 270px;
    object-fit: cover;
}
    .mainhedcent {
        font-size: 28px;
    }
.ctaimgbx .ctacont{
  padding: 22px 20px;
}
    .ctaimgbx .ctacont p {
        font-size: 25px;
    }
        .mainhed2 {
        font-size: 25px;
    }
.modulebx img{
  height: 245px;
}
.ctadashbx .ctacont{
  padding: 20px;
}
    .ctadashbx .ctacont p {
        font-size: 20px;
    }
.ftscn{
  margin-top: 30px;
  padding-bottom: 30px;
  padding-top: 20px;
}



.bnrform{
  padding: 25px;
  padding-bottom: 50px;
}
.mytab .nav-tabs .nav-link p{
  font-size: 14px;
}
.mytab .nav-tabs .nav-link span{
  width: 50px;
  height: 50px;
}
.mytab .nav-tabs .nav-link span img {
    height: 30px;
    width: 30px;
}
.mytab .nav-tabs .nav-link{
padding: 10px;
}
.mytab .nav-tabs{
  flex-direction: column;
}
.promise{
  padding: 20px;
}
.testiinn{
  padding: 40px 0 40px 20px;
}



  .projectcrd{
    flex-direction: column;
  }
  .projectcrd .cardcont{
    width: 100%;
  }
  .productscrd .cardcont .cont {
    font-size: 18px;
    line-height: normal;
}
.productscrd .cardcont .desc{
  line-height: normal;
}
  .tphedsecond{
    display: none;
  }
  .tphedfirst{
    gap: 10px;
  }
  .abt-tp{
    flex-direction: column;
    border-radius: 20px;
  }
  .abttp-hed{
    width: 100%;
    border-radius: 20px;
  }
.abttp-para{
  width: 100%;
}
.abttp-hed h2{
  font-size: 22px;
}
.abtcrd {
        width: 100%;      
    }



   .bnr-hed {
        font-size: 1.5rem;
    }
  .quicklink{
    padding: 0;
  }
  .con-cta{
    background-position: right;
    padding: 70px 30px;
  }
 

  .bnr-contnt p{
    font-size: 14px;
  }

.ft-top{
  flex-direction: column;
      align-items: flex-start;
      padding-bottom: 20px;
      margin-bottom: 20px;
      gap: 15px;
}
    .countbx {
      padding: 10px;
    }
    .serv-contsec{
      flex-wrap: wrap;
    }
    .atributes-card h3 {
      font-size: 19px;
    }

.nav-header{
  width: 160px;
}
.abtmain{
  max-width: 100%;
}

    
.quicklink{
  margin-top: 15px;
}
.logo img {
  max-width: 115px;
}



.spad{
  padding-top: 35px;
  padding-bottom: 35px;
}
.spad2{
   padding-top: 35px;
  padding-bottom: 35px;
}
.quicklink{
  margin-bottom: 0px;
}
.quicklink2{
  padding-top: 0px;
}
.circle-logo2 {
    width: 55px;
    height: 55px;
}
.ft-logo {
    max-width: 100%;
    width: 170px;
}
.foter-logo {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.slide-con li a {
                  width: 42px;
        height: 42px;
      }

    .slide-con li a img{
  width: 22px;
}
.copy p br{
  display: block;
}
.copy p span{
  display: none;
}

.subhed {
  font-size: 15px;
}
    .cta-card {
        padding: 50px 15px;
    }
 
    .f-btm {
    margin-top: 20px;
}
  .bnrtext p .txtptrn::after{
      width: 113px;
      height: 30px;
    }

}


@media(max-width: 480px){
.mytab .nav-tabs{
  flex-direction: column;
}
.bnrtext p br{
  display: none;
}
}




@media(max-width: 390px){
  .bnrhed {
        font-size: 25px;
    }
        .mainhedcent {
        font-size: 25px;
    }
     .mainhed {
        font-size: 22px;
    } 
       .ctaimgbx .ctacont p {
        font-size: 22px;
    }
    .mainhed2{
      font-size: 22px;
    }
    


}











