@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif !important;
  }
p{
  font-family: 'Poppins', sans-serif !important;
}
a{
    text-decoration: none;
    font-family: 'Poppins', sans-serif !important;
}
.btn_dark {
    display: none;
}
div {
    user-select: none;
}
a:hover{
  text-decoration: none;
}
li{
  list-style-type: none;
}
body.modal-open {
  padding: 0 !important;
}
/* html,body{
  overflow-x: hidden;
} */
html{
  scroll-behavior: smooth;
}
html,body{
  overflow-x: hidden;
}
:root {  
  --tred: #F32929;
  --twhite: #FFFFFF;
  --tblck: #25262A;
  --tgr: linear-gradient(90deg, rgba(238,40,40,1) 4%, rgba(127,22,22,1) 82%);;
  --tgb: linear-gradient(186deg, rgba(162,160,250,1) 4%, rgba(110,109,237,1) 82%);;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 100px;
  z-index: 996;
  background: var(--tgr);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  border: 2px solid var(--tred);
  border-radius: 100px;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top i:hover{
  color: #fff;
}
.back-to-top:hover {
  background: var(--tblck);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding-top: 50px;
  padding-bottom: 50px;
}
.header.header-scrolled {
  background: var(--tpup);
  padding: 40px !important;
  box-shadow: 0 0 15px 0 var(--tlight);
}
#header .logo img {
  padding: 0;
  margin: 0;
  width: 100%;
}
div#logo{
  width: 20%;
}
.scrolled-offset {
  margin-top: 70px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
/* .fixed-top{
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
  padding-bottom: 25px;
}
.fixed-top .logo{
  display: block;
} */
.navbar {
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--tpup);
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--tred);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #545454;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--twhite);
  background-color: var(--tred);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--tred);
  font-size: 28px;
  border: 1px solid var(--tred);
  border-radius: 100px;
  padding: 5px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fc9b41;
}

@media screen and (max-width: 767px) {
  .mobile-hidden {
    display: none;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(59, 59, 59, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #545454;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--tred);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #e96b56;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
.haeder_btn{
  display: flex;
}
/* TOPBAR START */
.mytopbar{
  padding-top: 10px;
  padding-bottom: 10px;
  background: var(--tred);
  display: block;
}
.main_topbar{
  display: flex;
  justify-content: end;
}
.mytb{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main_topbar2{
  display: flex;
  justify-content: start;
}
.tb1{
  margin-left: 15px;
  color: #fff;
}
.tb1 a{
  color: var(--twhite);
  font-size: 15px;
  margin-left: 10px;
}
.tb1 a:hover{
  color: var(--tblck);
}
.main_topbar2 i{
  font-size: 15px;
}
/* TOPBAR END/

/* BUTTONS START */
.btn_dark{
  background: var(--tblck);
  border: none;
  border-radius: 100px;
  padding: 14px 35px !important;
  color: var(--twhite) !important;
  transition:0.5s ease-in-out;
  font-size: 15px !important;
  font-weight: 600;
  margin-left: 10px;
  
}
.btn_dark:hover{
  background-color: var(--tred);
  color: var(--twhite) !important;
  transform: scale(1.1);
}
.btn_grad{
  background: var(--tgr);
  border-radius: 100px;
  padding: 14px 35px !important;
  color: var(--twhite) !important;
  transition:0.5s ease-in-out;
  font-size: 15px !important;
  font-weight: 600;
  border: none;
  
}
.btn_grad:hover{
  background: var(--tblck);
  color: var(--twhite) !important;
  transform: scale(1.1);
}
.btns{
  margin-top: 40px;
}
.haeder_btn .btn_grad{
  padding: 14px 25px !important;
  margin-left: 15px;
}
/* BUTTONS END */
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.sec_bac{
  background-image: url(../images/sec.webp);
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
 background-color: #d9e7f1;
  padding-bottom: 70px;
}
.ass_bac{
  background-image: url(../images/sec.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
  padding-bottom: 70px;
}
.diss_bac{
  background-image: url(../images/a6.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
  padding-bottom: 70px;
}
.res_bac{
  background-image: url(../images/a12.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
  padding-bottom: 70px;
}
.thes_bac{
  background-image: url(../images/a13.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
  padding-bottom: 70px;
}
.onem_bac{
  background-image: url(../images/a7.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
  padding-bottom: 70px;
}
.mhr{
  padding-top: 50px;
}
.home_hero h2{
  color: var(--tblck);
  font-size: 48px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.home_hero h2 span{
  color: var(--tred);
}
.home_hero p{
  font-size: 17px;
  font-weight: 400;
  color: var(--tpup);
  line-height: 30px;
  font-family: poppins;
  margin-bottom: 20px;
  padding-right: 34px;
}
.heromg img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.25);
}
.hc1_mg img{
  width: 35%;
  margin-bottom: 20px;
}
.hul{
  padding-left: 0px;
}
.listh{
  display: flex;
  margin-top: 10px;
}
.listh i{
  margin-right: 10px;
  color: var(--tred);
}
.listh li{
  color: var(--tblck);
  font-weight: 800;
}

/* BRANDS SECTION START */
.brands{
  padding-top: 30px;
  padding-bottom: 30px;
}
.mybcl h2{
  color: var(--tblck);
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}
.mybcl img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 15px;
}
/* BRANDS SECTION END */

/* HOME SEC 2 START */
.home_sec2{
  /*background-image: url(../images/d9.webp);*/
  /*background-position: center;*/
  /*background-size: 100% 100%;*/
  /*background-repeat: no-repeat;*/
 background-color: #d9e7f1;
  padding-top: 80px;
  padding-bottom: 30px;
}
.hs2inn{
  display: flex;
  align-items: center;
}
.hs2c1 h2 {
  color: var(--tred);
  font-size: 38px;
  line-height: 45px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.hs2c1 p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tblck);
  line-height: 30px;
  font-family: poppins;
  margin-bottom: 20px;
  text-align: center;
}
.mychng .hs2c1 p {
  color: var(--twhite);
}
.in_tabs h2 {
  color: var(--tred);
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}
.mychng .in_tabs h2{
  color: var(--twhite);
}

.tbpl{
  padding-left: 90px;
}
.tbpr{
  padding-right: 90px;
}
.in_tabs p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tpup);
  line-height: 30px;
  font-family: poppins;
  margin-bottom: 20px;
  text-align: left;
}
.mychng .in_tabs p{
  color: var(--twhite);
}
.in_tabs2 img {
 width: 100%;
 margin-left: auto;
 margin-right: auto;
 display: block;
 transform: scale(1.3);
}
.home_tabs{
  margin-bottom: 20px;
  margin-top: 20px;
}
.home_tabs button{
  font-size: 16px;
  color: var(--tblck);
  font-weight: 600;
  margin-left: 5px;
  margin-right: 5px;
}
.mychng .home_tabs button{
  color: var(--twhite);
}
.home_tabs button:hover{
  font-size: 16px;
  color: var(--tred) !important;
  font-weight: 600;
  margin-left: 5px;
  margin-right: 5px;
}
.home_tabs .nav-link.active, .nav-pills .show>.nav-link{
  color: var(--tred);
  background: none;
  font-weight: 700;
  font-size: 16px;
}
.mytb ul{
  padding-bottom: 50px;
  padding-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
.w3-button:active {
  color: var(--tred) !important;
  background-color: none !important;
}
.tsrw{
  align-items: center;
}
.home_sec2 .btns {
  margin-top: 15px;
}
.home_sec4 .btns {
  margin-top: 15px;
}
/* HOME SEC 2 END */

/* HOME SECTION 3 START */
.homesec3{
  background-image: url(../images/bac1.webp);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 70px;
}
.hs3cl1 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.5);
}
.mychng2 .btn_dark{
  background-color: var(--twhite);
  color: var(--tblck) !important;
}
.hs3cl2 h2{
  color: var(--tred);
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.hs3cl2 h2 span{
  color: var(--tred);
}
.hs3cl2 p{
  font-size: 16px;
  font-weight: 400;
  color: var(--tblck);
  line-height: 30px;
  font-family: poppins;
  margin-bottom: 20px;
}
.mychng2 .hs3cl2 h2{
  color: var(--twhite);
}
.mychng2 .hs3cl2 p{
  color: var(--twhite);
}
.clpl{
  padding-left: 60px;
}
/* HOME SECTION 3 END */

/* HOME SEC 4 START */
.home_sec4{
  background-image: url(../images/bac2.webp);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 30px;
}

/* HOME SEC 4 START */

/* HOME SEC 6 START */
.home_sec6{
  background-image: url(../images/d13.webp);
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 30px;
}
.home_sec6 .in_tabs2 img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.5);
}
.home_sec6 .btns {
  margin-top: 20px;
}
/* HOME SEC 6 START */

/* IMAGE GALLERY START */
.port_gallery{
  background-image: url(../images/d14.webp);
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: #d9e7f1;
  padding-top: 50px;
  padding-bottom: 30px;
}
.myimgtab {
  display: block;
  padding-top: 80%;
  position: relative;
  width: 100%;
}
.myimgtab img{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 7px;
}
.port_gallery .col-lg-3{
  padding-left: 5px;
  padding-right: 5px;
}
.port_gallery .mytb ul {
  padding-bottom: 30px;
  padding-top: 20px;
}
.mymrw{
  margin-top: 30px;
}
/* IMAGE GALLERY END */

/*  PACKAGES START */
.packages{
  background-color: #EFEFEF;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pkg_heads h3{
  text-align: center;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: var(--tred);
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff;
}
.pkg_heads h4{
  padding-top: 10px;
 color: #A4A2FB;
 font-size: 22px;
 font-weight: 500;
}
.pkg_heads h5{
 color: var(--torg);
 font-size: 35px;
 font-weight: 600;
 font-family: poppins;
}
.pkgc1 h3{
  font-size: 40px;
  font-weight: 600;
  font-family: poppins;
  color: var(--tblack);
  text-align: center;
}
.pkgc1 h3 span{
  color: var(--torg);
}
.pkgc1 img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 20%;
}
.pkgc1 p{
  font-size: 15px;
  font-weight: 400;
  font-family: poppins;
  color: var(--tblack);
  line-height: 28px;
  margin-top: 15px;
  text-align: center;
}
.pkg_item{
  background: #25262A;
  color: var(--twhite);
  border-radius: 10px;
  padding: 30px 15px;
  transition: 0.2s ease-in-out;
  box-shadow: 0 2px 22px rgb(128 128 128 / 33%);
}
.pkg_item:hover{
  background: #34363A;
  color: var(--twhite);
}
.pkg_item:hover .pkg_heads h4{
  background: var(--twhite);
}
.pkg_item:hover .btn_strt{
  background: var(--twhite);
  color: var(--torg);
}
.ph1 h3{
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--twhite);
}
.ph1 h4{
  font-weight: 600;
  font-size: 23px;
  text-transform: capitalize;
  margin-top: -5px;
  text-align: right;
  color: var(--twhite);
}
.ph2{
  margin-left: auto;
  display: block;
}
.ph2 h3 sub{
  font-size: 15px;
  font-weight: 500;
}
.ph2 h3{
  font-weight: 700;
  font-size: 23px;
  text-transform: capitalize;
  margin-top: -5px;
  color: var(--twhite);
}
.ph2 h4{
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  margin-top: -5px;
  color: var(--twhite);
}
.pinh h4{
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--twhite);
  margin-top: 30px;
}
.pkg_footer{
  display: flex;
  align-items: center;
  text-align: center;
  border-top: 2px solid  #BBBBBB;
  padding-top: 15px;
}
.pkg_inner {
  padding-top:5px;
}
.pkg_inner ul li{
  list-style-type: circle;
  font-size: 14px;
  margin-top: 7px;
  color: var(--tblack);
  list-style-type: disclosure-closed;
}
.pkg_inner ul li::marker{
  color: var(--tred);
}
.pkf1 h4{
  font-weight: 600;
  font-size: 14px;
  color: var(--torg);
}
.pkg_item:hover .pkf1 h4{
  color: var(--twhite);
}
.pkf2::before {
  content: "";
  position: absolute;
  right: 189px;
  width: 0px;
  height: 47px;
  border-left: 2px solid #BBBBBB;
}
.pkf2 h4{
  font-weight: 600;
  color: var(--torg);
  font-size: 14px;
}
.pkf2 a{
  font-weight: 600;
  color: var(--tblack);
  font-size: 14px;
}
.pkf1 a{
  font-weight: 600;
  color: var(--tblack);
  font-size: 14px;
}
.pkf1 a:hover{
  color: var(--tred);
}
.pkf2 a:hover{
  color: var(--tred);
}
.pkg_item:hover .pkg_heads h3{
  color: var(--tred);
  border-color: var(--twhite);
}
.pkg_item:hover .pkg_heads h4{
  color: var(--twhite);
  background: none;
}
.pkg_item:hover .pkg_heads h5{
  color: var(--twhite);
}
.pkg_item:hover .pkg_inner ul li{
  color: var(--twhite);
}
.pkg_item:hover .pkg_footer{
  border-color: var(--twhite);
}
.pkg_item:hover .pkf2::before {
  border-color: var(--twhite);
}
.pkf2 {
  margin-left: auto;
  display: block;
}
.btn_pkg{
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.btn_pkg .btn_grad{
  border-radius: 0px 15px 0px 0px;
}
.btn_pkg .btn_grad:hover{
 border: 1px solid var(--tred);
}
.btn_pkg .btn_grad{
  font-size: 14px;
}
.packages .mytb ul {
  padding-bottom: 10px;
  padding-top: 20px
}
/* HOME SECTION 7 PACKAGES END */

/* HOME SEC 5 START */
.hs5c1{
  padding-left: 50px;
}
.home_sec5{
  padding-top: 0px;
}
.mybe::after{
  content: '';
  position: absolute;
  border: 1px solid rgb(131 131 131);
  height: 20px;
  margin-left: 19px;
}
/* HOME SEC 5 END */

/* HOME SECTION 7 START */
.homesec7{
  background-image: url(../images/d18.webp);
  background-position: right;
  background-size: contain;
      background-color: #d9e7f1;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 50px;
}
.mys7rw{
  align-items: center;
}
.clpr{
  padding-right: 80px;
}
/*.homesec7 .hs3cl2 p{*/
/*  line-height: 33px;*/
/*}*/
/* HOME SECTION 7 END */

/*  FOOTER FORM SEC START */
.footer_sec{
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url(../images/d16.webp);
  background-position: left;
  background-size: contain;
      background-color: #d9e7f1;
  background-repeat: no-repeat;
}
.footer_sec h2{
  color: var(--tred);
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
}
.ff_df{
  display: flex;
  align-items: center;
}
.footer_sec input{
  background-color: #E9E9E9;
  border: 2px solid #E9E9E9;
  margin-top: 20px;
  color: var(--tblck);
  font-size: 15px;
  height: 55px;
  width: 98%;
  margin-left: 10px;
  margin-right: 10px;
}
.footer_sec textarea{
  background-color: #E9E9E9;
  border: 2px solid #E9E9E9;
  margin-top: 20px;
  color: var(--tblck);
  font-size: 15px;
  height: 130px;
  width: 98%;
  margin-left: 10px;
  margin-right: 10px;
  resize: none;
}
.ff_df input{
  width: 100%;
}
.footer_sec input:focus{
  border: 1px solid var(--tred);
  background-color: #E9E9E9;
  box-shadow: none;
}
.footer_sec textarea:focus{
  border: 1px solid var(--tred);
  background-color: #E9E9E9;
  box-shadow: none;
}
.ft_sec{
  align-items: center;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  background: var(--twhite);
  box-shadow: 0 0 27px rgb(117 116 128 / 23%);
  padding: 30px 50px;
  padding-bottom: 50px;
  border: none;
}
.footer_sec button{
  margin-top: 20px;
}
.footer_sec button:hover{
  background-color: var(--tblck);
}
/*  FOOTER FORM SEC END */

/* INNER PAGE FORM START */
.inner_page_form{
  background: linear-gradient(73deg, rgba(128,22,22,1) 37%, rgba(37,38,42,1) 82%);
  padding: 30px 40px;
  margin-left: 20px;
  margin-right: 20px;
}
.inner_page_form h3{
  color: var(--twhite);
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  font-family: poppins !important;
  margin-bottom: 20px;
}
.inner_page_form input{
  width: 100%;
  margin-top: 20px;
  border: 1px solid #fff;
  border-radius: 0px;
  height: 50px;
  font-size: 16px;
  font-family: poppins;
  color: var(--tblack);
  padding-left: 20px;
  background: #ffffff;
  margin-top: 2 0px;
}
.inner_page_form input::placeholder{
  color: var(--tblack);
}
.inner_page_form input:focus{
  background-color: var(--twhite);
  border-color: var(--tblu);
  box-shadow: none;
  color: var(--tblack);
}
.sai{
  position: relative;
}
.sai button{
  width: 100%;
  margin-top: 20px;
  background: var(--tgb);
  color: #fff;
  border: navajowhite;
  padding: 12px 30px;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-weight: 500;
  transition: 0.2s ease-in-out;
  border: 2px solid var(--tblu);
}
.sai button:hover{
  background: var(--twhite);
  color: var(--tpink);
  border-color: var(--tblu);
}
.inner_page_form::before {
  content: "";
  animation: zoom-in-zoom-out 2s ease-out infinite;
  position: absolute;
  top: -76px;
  right: -39px;
  background-size: 100% !important;
  background: url(../images/4a.webp) no-repeat;
  width: 172px;
  height: 173px;
}
/* INNER PAGE FORM END */

/* FOOTER START */
.my_footer{
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #414654;
  /*margin-top: 30px;*/
 }
 .frow1{
   align-items: flex-start;
 }
 .fcol1 img{
   width: 50%;
   filter: brightness(0) invert(1);
 }
 .fcol1 p{
   font-size: 15px;
   color: #fff;
   font-weight: 400;
   line-height: 33px;
   margin-top: 20px;
 }
 .frow3{
   align-items: center;
   padding-top: 15px;
 }

 .fr3c1 p{
   font-size: 17px;
   color: #000000;
 }
 .footer_copyright{
   background: #A4A2FB;
   text-align: center;
 }
 .fr2c2 h3{
   font-size: 22px;
   color: #fff;
   font-weight: 600;
 }
 .fr3c1 a{
  color: var(--tred);
 }
 .fr2c2 ul{
   padding-left: 0px;
 }
 .fr2c2 ul li a{
   color: #fff;
   font-size: 15px;
   line-height: 36px;
 }
 .fr2c2 ul li a:hover{
   color: var(--tred);
 }
 .foo_cnt li i{
  color: var(--tred);
  font-size: 15px;
  margin-right: 5px;
 }
 .mbf{
  margin-bottom: 30px;
 }
 /* FOOTER END */

/* Disclaimer */
.discla h3{
  font-size: 27px;
  color: #000;
  font-weight: 600;
}
.discla p{
  font-size: 15px;
  color: #000;
  line-height: 33px;
}
.dis{
  box-shadow: 3px 4px 10px rgb(243 155 40);
  background-color: var(--twhite);
}

/* Disclaimer */

/* WHATSAPP CHAT SCRIPT */
.navbar-fixed-bottom {
  position: fixed;
  bottom: 0;
  z-index: 999999;
}
.whappfooter i{
  font-size: 50px;
  background-color: #11bb19;
  border-radius: 100px;
  padding: 10px 15px;
  color: #fff;
  margin-bottom: 20px;
  transition: 0.5s ease-in-out;
}
.whappfooter i:hover{
  transform: scale(1.1);
  background-color: #0fe419;
}
/* WHATSAPP CHAT SCRIPT  END*/
/* POPUP FORM START */
.popcol .sai button{
  width: 100%;
}
.my_popup h2{
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding-left: 30px;
  color: rgba(81,35,174,1);
}
.modal-header{
  padding: 0;
  padding-top: 20px;
}
.modal-header .close{
  margin: 0;
}
.sap button{
  background: linear-gradient(180deg, rgba(81,35,174,1) 0%, rgba(108,31,163,1) 100%);
  width: 100%;
  margin-top: 20px;
  color: var(--t3);
  border: 2px solid var(--t5);
  border-radius: 100px;
  padding: 11px 30px;
}
.sap button:hover{
  background: var(--t1);
  border-color: var(--t2);
}

.modal-header .close {
  margin: 0;
  margin-top: -20px;
  color: var(--tpurple) !important;
  background-color: #fff;
  opacity: 1;
  border-radius: 100%;
  width: 8%;
  height: 39px;
}
.modal-content{
  background-color: transparent;
  border: none;
}
.modal-header{
  border: none;
}


/* POPUP FORM END */


/* THANKYOU */
.ex_page header{
  background-color: #ffffff;
  padding-bottom: 40px;
  padding-top: 50px !important;
}
.thanks{
  padding-top: 70px;
  padding-bottom: 50px;
}
.thanks h1{
  font-size: 45px;
  text-align: center;
  color: var(--tdrk);
  font-weight: 600;
  font-family: poppins;
}
.thanks h1 span{
  color: var(--tred);
}
.thanks p{
  font-size: 22px;
  text-align: center;
  color: rgb(90, 90, 90);
  font-weight: 500;
  margin-top: 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.thanks i{
  font-size: 110px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: #11ab30;
  margin-top: 20px;
}
.termsc h2{
  font-size: 35px;
  font-weight: 600;
  padding-top: 50px;
}
.termsc h4{
  font-size: 28px;
  font-weight: 600;
}
.termsc p {
  font-size: 16px;
  font-weight: 400;
  color: var(--t4);
  line-height: 33px;
  font-family: poppins;
  margin-bottom: 40px;
  padding-top: 15px;
  text-align: justify;
  padding-right: 40px;
}
.termsc ul li{
  margin-top: 15px;
  list-style-type: circle;
}
.fr3c2 ul li{
  display: inline-flex;
  margin-left: 10px;
}
.fr3c2 ul li a{
  color: #000;
  font-size: 16px;
}
.fr3c2 ul li a:hover{
  color: var(--tred);
}
/* Animation */

.hc1_mg::before{
  content: '';
  background: url(../images/d3.webp) no-repeat;
  background-size:100% 100% ;
  width: 100px;
  transform: scale(1.1);
  height: 100px;
  position: absolute;
  left: -45px;
  top: -5%;
  animation: myabc 2s linear infinite;
  z-index: -1;
}
.hc1_mg::after{
  content: '';
  background: url(../images/d2.webp) no-repeat;
  background-size:100% 100% ;
  width: 100px;
  transform: scale(1.1);
  height: 100px;
  position: absolute;
  right: -11px;
  top: -9%;
  animation: mybn 10s linear infinite;
  z-index: -1;
}
.mybtm::before{
  content: '';
  background: url(../images/d4.webp) no-repeat;
  background-size:100% 100% ;
  width: 100px;
  transform: scale(1.1);
  height: 100px;
  position: absolute;
  left: -103px;
  top: 88%;
  animation: myfp2 5s linear infinite;
  z-index: -1;
}
.mybtm::after{
  content: '';
  background: url(../images/d5.webp) no-repeat;
  background-size: 100% 100%;
  width: 125px;
  transform: scale(1.1);
  height: 125px;
  position: absolute;
  right: 184px;
  top: 75%;
  animation: myflp 10s linear infinite;
  z-index: -1;
}
@keyframes myfp2 {
			
  0% {
    transform:scale(1) rotate3d(-1,1,0,0deg);
  }
  50% {
    transform:scale(.4) rotate3d(-1,1,0,-90deg);
  }
  100% {
    transform:scale(1) rotate3d(-1,1,0,-180deg);
  }
}
@keyframes myflp {
			
  0% {
    transform:rotateY(0);
  }
  100% {
    transform:rotateY(180deg);
  }
}
@keyframes myabc {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}
@keyframes mybn {
	0% {
		animation-timing-function: ease-in;
		opacity: 1;
		transform: translateY(-45px);
	}

	24% {
		opacity: 1;
	}

	40% {
		animation-timing-function: ease-in;
		transform: translateY(-24px);
	}

	65% {
		animation-timing-function: ease-in;
		transform: translateY(-12px);
	}

	82% {
		animation-timing-function: ease-in;
		transform: translateY(-6px);
	}

	93% {
		animation-timing-function: ease-in;
		transform: translateY(-4px);
	}

	25%,
	55%,
	75%,
	87% {
		animation-timing-function: ease-out;
		transform: translateY(0px);
	}

	100% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateY(0px);
	}
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #5BC100;
  }
  100% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.8);
    transition: all 0.5s ease-in-out;
  }
  30% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
  50% {
    transform: scale(1.1);
    transition: all 0.7s ease-in-out;
  }
  50% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
  100% {
    transform: scale(0.8);
    transition: all 0.7s ease-in-out;

  }
}
/* Animation End */

/* INNER PAGES CSS */
.myec .heromg img{
  transform: scale(1.4);
}
.ecinp .hs3cl1 img{
  transform: scale(1.3);
}
.ecinp{
  background-image: none !important;
  padding-top: 30px !important;
}
.ecinp2 .hs3cl1 img{
  transform: scale(1.2);
}
.myec .wdim img {
  transform: scale(1.9);
  padding-left: 70px;
}
.myec .homesec7 {
  padding-top: 0px;
}
.row.mysr{
  align-items: center;
}
.home_secbc{
  background-image: url(../images/d12.webp) !important;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 30px;
}
.inmgch img{
  transform: scale(1.2);
}
.mim img {
  transform: scale(1) !important;
}

/* Window Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--tgr); 
  border-color: var(--tgr);
  border-radius: 7px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--tgr); 
}
/* LAST MOMENT CHANGES */
.pkg_inner ul {
  height: 185px;
  overflow-x: hidden;
}
.sociallinks i {
  color: var(--twhite);
  background: var(--tgr);
  padding: 10px 12px;
  border-radius: 100px;
  font-size: 20px;
  width: 40px;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}
.sociallinks i:hover{
  background: var(--tblck);
}
ul.sociallinks {
    display: flex;
}
.tb1 i{
    background: linear-gradient(90deg, rgb(186 17 17) 4%, rgba(127,22,22,1) 82%);
    border-radius: 100px;
    padding: 8px 11px;
    transition: 0.5s ease;
}
.tb1 i:hover{
    color : #fff;
    transform: scale(1.1);
}
.mynxt .btn_dark {
    background-color: var(--twhite);
    color: var(--tblck) !important;
}
/* CHECKOUT PAGE  */
.checkoutpage {
    padding: 32px 0px;
}

.checkout_left img {
    width: 40%;
    margin-right: auto;
    display: block;
    margin-bottom: 40px;
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f1f1f1;
    padding: 20px;
    z-index: 9999;
}

.checkout_left h2 {
    color: #565656;
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
}

.checkout_left p {
    color: #000000;
    font-size: 40px;
    font-weight: 600;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.dfchecks1 {
    display: flex;
   align-items: self-end;
    justify-content: space-between;
    margin-top: 0px;
    padding-right: 50px;
}
.cardflex .btn_grad {
    font-size: 17px !important;
    height: 55px;
    border-radius: 5px;
}

.dfchecks h5 {
    color: #565656;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

.dfchecks p {
    font-size: 16px;
    color: #565656;
}

.dfchecks h3 {
    font-size: 16px;
    color: #565656;
}

.checkoutpage label {
    font-size: 15px;
}

.checkoutpage .btn_red {
    /*margin-top: 20px;*/
    font-size: 15px;
}

.checkout_right h3 {
    color: var(--tblack);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.checkout_right input {
    height: 50px;
}

.checkout_right select {
    height: 50px;
}

.checkout_right input:focus {
    outline: 0 !important;
    box-shadow: none !important;
    border: 1px solid #F32929;
}

.checkout_right select:focus {
    outline: 0 !important;
    box-shadow: none !important;
    border: 1px solid #F32929;
}

.cardflex {
    display: flex;
}

.cardflex input {
    width: 99%;
    margin-left: 3px;
    margin-right: 3px;
}

#save-info-checkbox {
    height: auto;
}

.checkoutpage .form-label {
    margin-bottom: 5px;
}

.mylabels {
    font-size: 14px;
    color: #626262;
    margin-bottom: 20px;
}

.mylabels strong {
    font-size: 17px;
    color: #000;
}

.mylabels input[type="checkbox"] {
    transform: scale(1.5);
    /* Increase the size by adjusting the scale value */
    margin-right: 10px;
}

.pnf input {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mylaps {
    font-size: 15px;
    color: #a3a3a3;
    margin-top: 20px;
}

.crdsafter {
    position: relative;
}

.crdsafter::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50px;
    top: 32px;
    left: 132px;
    background-repeat: no-repeat;
    background-size: 42%;
    background-position: top;
    background-image: url(../images/cards.webp);
}

.mycvcs {
    position: relative;
}

.mycvcs::after {
    content: '';
    position: absolute;
    width: 54%;
    height: 50px;
    top: 10px;
    left: 139px;
    background-repeat: no-repeat;
    background-size: 42%;
    background-position: top;
    background-image: url(../images/cvc.webp);
}

.crdsafter input {
    position: relative;
}

.paymbtn {
    text-align: left;
}

.checkout_left .quantity-field {
    display: flex;
}

.myquant input {
    width: 40%;
    border-radius: 0px;
    text-align: center;
}

.myquant button {
    width: 15%;
    border-radius: 0px;
    text-align: center;
    background: linear-gradient(90deg, rgba(238,40,40,1) 4%, rgba(127,22,22,1) 82%);
        border : none !important;

}

.myquant button:hover {
    background: #AAC12D;
}

.myquant button:focus {
    background-color: #000;
    border-color: #000;
}

.myquant a {
    width: 15%;
    border-radius: 0px;
    text-align: center;
    background: linear-gradient(90deg, rgba(238,40,40,1) 4%, rgba(127,22,22,1) 82%);
}

.myquant a:hover {
    background: #AAC12D;
}

.badge-number {
    font-size: 12px;
    background: #ffffff;
    color: #f32929;
    border-radius: 20px;
    padding: 0px 5px;
    vertical-align: top;
    position: relative;
    top: -5px;
    left: -10px;
}