     
@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;
}
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 {  
  --tpup:   #7764FB;
  --tdark:  #3F3278;
  --tgreen: #AAC12D;
  --twhite: #FFFFFF;
  --tblck: #000000;
  --tgr: linear-gradient(0deg, rgba(0,81,162,1) 0%, rgba(88,48,178,1) 57%);;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 100px;
  z-index: 996;
  background: var(--tgreen);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  border: 2px solid var(--twhite);
  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(--tgr);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: relative;
}
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 999;
  transition: all 0.5s;
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--twhite);
  border-radius: 5px;
  width: 85%;
  margin-bottom: -19px;
  margin-left: auto;
  margin-right: auto;
}
.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: 95%;
}
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 26px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: var(--tpup);
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
}
.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(--tgreen);
}
.dropdown-menu {
  max-width: 750px;
}
.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: #FF9A17;
}
.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(--twhite);
  font-size: 28px;
  border: 1px solid #FF9A17;
  background-color: #FF9A17;
  border-radius: 100px;
  padding: 5px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #ffffff;
}

@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: 80px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background: #FF9A17;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #ffffff;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--twhite);
}
.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: 20px;
  padding-bottom: 10px;
  background: var(--tgr);
  display: block;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px 15px 0px 0px;
}
.main_topbar{
  display: flex;
  justify-content: end;
}
.mytb{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main_topbar2{
  display: flex;
  justify-content: start;
  margin-right: 36px;
}
.tb1{
  margin-left: 65px;
  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;
  color: var(--tpup);
  background: var(--twhite);
  padding: 4px 5px;
  border-radius: 100px;
}
/* TOPBAR END/

/* BUTTONS START */
.btn_grad{
  background: var(--tgr);
  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_grad:hover{
  background: var(--tgreen);
  color: var(--twhite) !important;
  transform: scale(1.1);
}
.btn_pksa{
  position: relative;
}
.btn_pksa {
    background: var(--tgr);
    border: none;
    padding: 14px 35px !important;
    color: var(--twhite) !important;
    transition: 0.5s ease-in-out;
    font-size: 15px !important;
    font-weight: 600;
    border-top: 5px solid #C055FF;
    border-bottom: 5px solid #C055FF;
    position: absolute;
    left: 0;
    right: 0;
    width: 180px;
    margin: 0 auto;
}
.btn_pksa:hover{
  background: var(--tgreen);
  color: var(--twhite) !important;
  transform: scale(1.1);
}
.btns{
  margin-top: 40px;
}
.haeder_btn .btn_grad{
  margin-left: 17px;
}
.haeder_btn a i{
  background-color: var(--twhite) !important;
  color: var(--tblck);
  padding: 10px 5px;
  border-radius: 100px;
}
.btns a i{
  background-color: var(--twhite) !important;
  color: var(--tblck);
  padding: 4px 5px !important;
  margin-left: 10PX;
  border-radius: 100px;
}
.haeder_btn{
  display: flex;
  align-items: center;
}
/* BUTTONS END */
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.home_hero{
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 70px;
  padding-top: 50px;
  padding-bottom: 50px;
   height: 100vh;
  display: grid; 
  display: flex;
  	justify-content: center;
  	align-items: center;
}
.mhr{
  align-items: center;
}
.sec_bac{
  background-image: url(../images/d55.webp);
}
.logo_design{
  background-image: url(../images/ld.webp);
}
.web_dev{
  background-image: url(../images/wd.webp);
}
.app_des{
  background-image: url(../images/apde.webp);
}
.creative_wri{
  background-image: url(../images/crw.webp);
}
.digital_market{
  background-image: url(../images/dmb.webp);
}
.motion_graphics{
  background-image: url(../images/mg.webp);
}
.seo{
  background-image: url(../images/seob.webp);
}
.stationary_design{
  background-image: url(../images/std.webp);
}
.showcase{
  padding-top: 80px !important;
}
.herobtns{
  text-align: center;
}
.home_hero h2{
  color: var(--twhite);
  font-size: 46px;
  line-height: 67px;
  font-weight: 600;

}
.home_hero p{
  font-size: 16px;
  font-weight: 400;
  color: var(--twhite);
  line-height: 30px;
  font-family: poppins;
  margin-bottom: 20px;
  padding-right: 60px;
}
.home_hero h2 .myspn{
  color: var(--tgreen);
}
.heromg img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.25);
}
.hc1_mg img{
  width: 35%;
  margin-bottom: 20px;
}
/* HOME SECTION 3 START */
.homesec3{
  padding-top: 50px;
  padding-bottom: 30px;
  background-image: url(../images/d516.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  position: relative;
}
.homesec3::before {
    content: '';
    position: absolute;
    background-image: url(../images/d515.webp);
    background-repeat: no-repeat;
    width: 248px;
    height: 300px;
    bottom: -125px;
    left: -21px;
}
.hs3cl1 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.6);
  animation: myAnim 7s ease-out 0s infinite alternate-reverse forwards;
}
.hs3cl2 h2 {
  color: var(--tgreen);
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
}
.hs3cl2 h2 span{
  color: var(--tpup);
  font-weight: 600;
}
.hs3cl2 p{
  font-size: 16px;
  padding-right: 10px;
  font-weight: 400;
  color: var(--tblck);
  line-height: 35px;
  font-family: poppins;
  margin-bottom: 20px;
}
.hs3cl2 .btn_org{
  margin-left: 0px;
  padding: 14px 35px !important;
}
.clpl{
  padding-left: 60px;
}
.clpr{
  padding-right: 60px;
}
/* HOME SECTION 3 END */


/* SERVICES SECTION START */
.services{
  padding-top: 140px;
  padding-bottom: 30px;
}
.myserv{
  display: flex;
  align-items: center;
  justify-content: center;  
}
.serboxes{
  display: flex;
  align-items: center;
  justify-content: center;
}
.ser_item{
  background: var(--twhite);
  border-radius: 5px;
  box-shadow: 0 0 27px rgb(117 116 128 / 23%);
  padding: 20px 10px;
  width: 100%;
  transform: scale(1.2);
  transition: 0.8s ease-in-out;
}
.ser_item:hover{
  background: var(--tgr);
  transform: scale(1.1) !important;
}
.ser_item:hover h3{
  color: var(--twhite);
}
.ser_item img{
    width: 91px;
    height: 79px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.ser_item h3{
  color: var(--tblck);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
/* SERVICES SECTION END */

/* HOME SECTION 4 START */
.hs4{
  padding-top: 30px;
  padding-bottom: 30px;
}
.hs4cl1 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.8);
  animation: myAnim 7s ease-out 0s infinite alternate-reverse forwards;
}
.hs4cl2 h2 {
  color: var(--tgreen);
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
}
.hs4cl2 h2 span{
  color: var(--tpup);
  font-weight: 600;
}
.hs4cl2 p{
  font-size: 16px;
  font-weight: 400;
  color: var(--tblck);
  line-height: 35px;
  font-family: poppins;
  margin-bottom: 20px;
}
.hs4_rw{
  align-items: center;
}
.hs4cl1{
  position: relative;
}
/* HOME SECTION 4 END */

/* COUNTER SECTION START */
.counter{
  background-image: url(../images/d519.webp);
  background-size: 100% 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-bottom: 30px;
}
.row.cnt_rw {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.cb1{
  display: flex;
  align-items: center;
}
.cb1 img{
  margin-right: 10px;
  width: 45px;
  height: 45px;
}
.cb1 h3{
  color: var(--tgreen);
  font-size: 55px;
  font-weight: 600;
}
.cb2 h4{
  color: var(--twhite);
  font-size: 16px;
  font-weight: 500;
  margin-top: -5px;
}
.cnt_rw1 h2{
  font-size: 68px;
  color: var(--twhite);
  font-weight: 500;
  -webkit-text-stroke: 2px var(--tpup);
  text-align: center;
  margin-bottom: 20px;
}
/* COUNTER SECTION END */

/* HOMSE SECTION 6 START */
.hom6sec{
  padding-top: 50px;
  padding-bottom: 10px;
}
.hs6_rw{
  align-items: center;
}
.mybig_head img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.4);
}
/* HOMSE SECTION 6 END */

/*  PACKAGES START */
.packages{
  background-image: url(../images/pkgbac.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 30px;
  margin-bottom: 100px;
  padding-bottom: 20px;
}
.pkg_heads h3{
  font-size: 31px;
  font-weight: 600;
  color: var(--twhite);
  padding-bottom: 15px;
  font-family: poppins;
  text-align: center;
  margin-top: -3px;
  z-index: 999;
}
.pkg_heads h4{
  padding-top: 10px;
  color: var(--tgreen);
  font-size: 28px;
  text-transform: capitalize;
  line-height: 28px;
  font-weight: 600;
  padding-left: 15px;
}
.pkg_heads h5{
 color: var(--torg);
 font-size: 47px;
 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: var(--twhite);
  color: var(--tblck);
  transition: 0.2s ease-in-out;
  box-shadow: 0 2px 22px rgb(128 128 128 / 33%);
  border: 4px solid #BFBFBF;
}
.pkgr2 {
  padding-top: 50px;
}
.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_innerul{
  height: 200px;
}
.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);
}
.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);
}
.pkf2 {
  margin-left: auto;
  display: block;
}
.btn_pkg{
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.btn_pkg .btn_blu{
  border-radius: 3px;
}
.pkg_item:hover .btn_blu{
  background: var(--tgy);
}
.packages .mytb ul {
  padding-bottom: 10px;
  padding-top: 20px
}
.mypc h2 {
  color: var(--twhite);
  font-size: 35px;
  line-height: 50px;
  font-weight: 300;
  padding-left: 20px;
  text-align: center;
}
.mypc h2 span{
  color: var(--twhite);
  font-weight: 600;
  font-size: 46px;
}
.packages .nav-link{
  color: var(--tblck);
  background: var(--twhite);
  text-transform: uppercase;
   /*text-transform: capitalize;*/
  border-radius: 100px;
  font-size: 16px;
  padding: 14px 30px;
  margin-left: 5px;
  margin-right: 5px;
}
.pkgr2{
  margin-top: 20px;
}
.packages .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background: var(--tgy);
  border-radius: 100px;
  padding: 14px 30px;
}
.myhead_inn{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  padding-top: 0px;
}
.myhead_inn::before{
  content: '';
  position: absolute;
  background-image: url(../images/d526.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 106%;
  height: 174px;
  top: -26px;
}
.myinpkg{
  padding: 20px 30px;
}
.df_mb{
  display: flex;
  justify-content: center;
}
.pkg_item{
  position: relative;
}
.pkg_item::before{
  content: '';
  position: absolute;
  background-image: url(../images/d524.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 4%;
  height: 100%;
  top: 75px;
  left: -8px;
}
.pkg_item::after{
  content: '';
  position: absolute;
  background-image: url(../images/d524.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 4%;
  height: 100%;
  top: 75px;
  right: -8px;
}
 .pkg_inner ul{
      height: 195px;
    overflow-y: scroll;
 }
 .pkg_item ul::-webkit-scrollbar {
    width: 6px;
    background: #aac12d;
    border-radius : 3px;
}
.pkg_item::-webkit-scrollbar-thumb {
    background: #9d9a9a;
}
.pkg_item::-webkit-scrollbar-track {
    background: #9d9a9a;
}
/* HOME SECTION 7 PACKAGES END */

/* HOME SEC 5 START */
.hs5c1{
  padding-left: 50px;
}
.home_sec5{
  padding-top: 0px;
}
/* HOME SEC 5 END */

/* COMBO SECTION START */
.combo_Sec{
  background-image: url(../images/combac.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 50px;
  padding-bottom: 30px;
  margin-top: 50px;
}
.main_combo_flx{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.combo_Sec::before{
  content: '';
  position: absolute;
  background-image: url(../images/d522.webp);
  background-repeat: no-repeat;
  width: 135px;
  height: 109px;
  top: 0px;
  left: 130px;
}
.comcl1 img{
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.5);
  margin-left: -50px;
  margin-bottom: 40px;
  margin-top: 70px;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.comcl13 p{
  font-size: 19px;
  color: var(--twhite);
  font-weight: 100;
  line-height: 31px;
}
.comcl1 h3 {
  font-size: 100px;
  color: var(--tgreen);
  font-weight: 500;
  margin-bottom: 20px;
}
.inflx1 h3{
  font-size: 17px;
  color: var(--tgreen);
  -webkit-text-stroke: transparent;
  margin-bottom: 0px;
}
.inflx1 ul{
  padding-left: 0px;
}
.inflx1 ul li{
  color: var(--twhite);
  font-size: 14px;
  margin-top: 10px;
  font-weight: 300;
}
.inflx1{
  margin-top: 30px;
}
.comb img{
  width: 312px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-right: -32px;
  transform: scale(1.5);
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.cmb2_flx{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -130px;
}
.cmbf h2{
  font-size: 16px;
  color: var(--twhite);
  text-align: center;
}
.cmbf h3{
  font-size: 15px;
  color: var(--tgreen);
  text-align: center;
}
.combo_rw{
  align-items: center;
}
/* COMBO SECTION END */

/* CALL TO ACTION SECTION START */
.call_sec{
  padding-top: 115px;
  padding-bottom: 30px;
  background-image: url(../images/d516.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
.clcl1 h2 {
  color: var(--tpup);
  font-size: 56px;
  line-height: 42px;
  font-weight: 600;
  /*text-transform: uppercase;*/
  text-transform: capitalize;
}
.clcl1 h2 span{
  color: var(--tgreen);
  font-weight: 600;
  font-size: 25px;
}
.clcl1 h3 {
  font-size: 17px;
  color: var(--tgreen);
  -webkit-text-stroke: transparent;
  margin-bottom: 0px;
}
.inflx1 img{
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.inflx1 h4{
  color: var(--tgreen);
  font-size: 16px;
  font-weight: 600;
}
.inflx1 h5 a{
  color: #07123c;
  font-size: 16px;
}
.call_flx{
  display: flex;
}
.call_inflx{
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.ccl2 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.3);
}
.cc img{
  width: 100%;
}
/* CALL TO ACTION SECTION END */

/* FOOTER CALL TO ACTION */
.foo_call{
  background: var(--twhite);
  padding: 20px 30px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  align-items: center;
  margin-bottom: 40px;
}
.fctss h4{
  color: var(--tblck);
  font-size: 26px;
  padding-left: 10px;
  font-weight: 700;
}
.fctss {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.fctss a{
  font-size: 17px;
  font-weight: 600;
  color: var(--tpup);
}
.fctss a:hover{
  color: var(--tgreen);
}
.fctss i{
  font-size: 22px;
  padding-right: 10px;
  color: var(--tpup);
}
/* FOOTER CALL TO ACTION */

/* PARTNERS SECTION START */
.partners_sec{
  position: relative;
  padding-bottom: 70px;
  padding-top: 30px;
}
.partners_sec::before{
  content: '';
  position: absolute;
  background-image: url(../images/d515.webp);
  background-repeat: no-repeat;
  width: 151px;
  height: 204px;
  top: 181px;
}
.parf img{
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.part_rw h2{
  font-size: 31px;
  line-height: 40px;
  line-height: 52px;
}
.part_rw h2 span{
  font-size: 40px;
}
.part_rw {
  align-items: center;
}
/* PARTNERS SECTION 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{
  border: 1px solid #ababab;
  background-image: url(../images/d54.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
  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: 16px;
   color: #fff;
   text-align: center;
 }
 .footer_copyright{
   background: linear-gradient(42deg, rgba(88,48,178,1) 43%, rgba(0,81,162,1) 100%);
   border-radius: 5px;
   width: 85%;
   margin-left: auto;
   margin-right: auto;
   display: block;
   padding: 5px 0;
 }
 .fr2c2 h3{
   font-size: 22px;
   color: var(--tgreen);
   font-weight: 600;
 }
 .fr2c2 ul{
   padding-left: 0px;
 }
 .fr2c2 ul li a{
   color: #fff;
   font-size: 15px;
   line-height: 36px;
 }
 .fr2c2 ul li a:hover{
   color: var(--tgreen);
 }
 .foo_cnt li i{
  color: var(--tred);
  font-size: 15px;
  margin-right: 5px;
 }
 .mbf{
  margin-bottom: 30px;
 }
 .socialicons ul{
  display: flex;
  padding-left: 0px;
  margin-top: 20px;
 }
 .socialicons li i{
  color: var(--tblck);
  background: var(--twhite);
  font-size: 30px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 100px;
  width: 48px;
  text-align: center;
  padding: 10px;
 }
 .socialicons li i:hover{
  background: var(--tgreen);
  color: var(--twhite);
 }
 /* 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: 63px;
}
.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(--twhite) !important;
  background: var(--tdark);
  opacity: 1;
  border-radius: 100%;
  width: 8%;
  height: 39px;
  position: absolute;
  right: 25px;
  top: 27px;
}
.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{
  text-align: center;
}
.fr3c2 ul li a{
  color: var(--twhite);
  font-size: 16px;
}
.fr3c2 ul li a:hover{
  color: var(--tgreen);
}
/* Animation */
@keyframes myAnim {
	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 animationFramesOne {
  0% {
      transform: translate(0px,0px) rotate(0deg) ;
  }
  20% {
      transform: translate(73px,-1px) rotate(36deg) ;
  }
  40% {
      transform: translate(141px,72px) rotate(72deg) ;
  }
  60% {
      transform: translate(83px,122px) rotate(108deg) ;
  }
  80% {
      transform: translate(-40px,72px) rotate(144deg) ;
  }
  100% {
      transform:  translate(0px,0px) rotate(0deg) ;
  }
}
@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(1.1);
    transition: all 0.5s ease-in-out;
  }
  30% {
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
  }
  50% {
    transform: scale(1.3);
    transition: all 0.7s ease-in-out;
  }
  50% {
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
  }
  100% {
    transform: scale(1.1);
    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); 
}


/* INNERPAGES */
.myintb{
  display: none;
}
.mydf_drop{
  display: flex;
}
.inpage{
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
.innpage_rw h2 {
  color: var(--tpup);
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  padding-left: 20px;
  padding-right: 20px;
}
.innpage_rw h2 span{
  color: var(--tpup);
  font-weight: 600;
}
.innpage_rw p{
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 400;
  color: var(--tblck);
  line-height: 35px;
  font-family: poppins;
  margin-bottom: 20px;
}
.innpage_rw{
  position: relative;
}
.innpage_rw::before {
  content: '';
  background: url(../images/a23.webp) no-repeat;
  background-size: 100% 100%;
  width: 330px;
  transform: scale(1.1);
  height: 330px;
  position: absolute;
  left: -254px;
  top: -19%;
  animation: myabc 0.8s linear infinite;
  z-index: -1;
}
.innpage_rw::after {
  content: '';
  background: url(../images/33.webp) no-repeat;
  background-size: 100% 100%;
  width: 330px;
  transform: scale(1.1);
  height: 330px;
  position: absolute;
  right : -254px;
  top: -19%;
  animation: myabc 0.8s linear infinite;
  z-index: -1;
}
.inpcl{
  position: relative;
}
.inpcl::before {
  content: '';
  background: url(../images/a8.webp) no-repeat;
  background-size: 100% 100%;
  width: 150px;
  transform: scale(1.1);
  height: 150px;
  position: absolute;
  left: -165px;
  top: 18%;
  animation: myabc 0.8s linear infinite;
  z-index: -1;
}
.inpcl::after {
  content: '';
  background: url(../images/32.webp) no-repeat;
  background-size: 100% 100%;
  width: 150px;
  transform: scale(1.1);
  height: 150px;
  position: absolute;
  right: -165px;
  top: 18%;
  animation: myabc 0.8s linear infinite;
  z-index: -1;
}

.seo_packages .df_mb h5{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.dvclr h4{
  text-align: center;
  font-size: 15px;
  color: var(--twhite);
  margin: 3px 0px !important;
}
.dvclr {
  width: 350px;
  margin-left: -30px;
  margin-bottom: 1px;
  padding-bottom: 1px;
}
.seo_packages .pkg_item::before{
  top: 35px;
}
.seo_packages .pkg_item::after{
  top: 35px;
}
.dred{
  background: var(--tgr);
}
.dyellow{
  background: var(--tgreen);
}
.dpup{
  background: var(--tpup);
}
.app_flx{
  display: flex;
  align-items: center;
}
.appflx1{
  display: flex;
  align-items: center;
  background: var(--tgy);
  border-radius: 100px;
  padding: 10px 30px 10px 0px;
  color: var(--twhite);
  margin-bottom: 20px;
  margin-right: 5px;
  transition: 0.5s;
}
.appflx1:hover{
  background: var(--tgb);
}
.appflx1 h3{
  font-size: 16px;
  color: #000;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}
.appflx1 img{
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
.appsec1 img{
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.appsec1 .mysm2::before{
  left: 397px;
    top: -24%;
}
.appsec2.hs2_mg::before{
  display: none;
}
.appsec2.hs2_mg::after{
  display: none;
}
.appsec2 .hs3cl1 img{
  animation: mybn 10s linear infinite;
  width: 537px;
  transition: 0.5s;
}
.cnts2{
  padding-top: 100px;
  padding-bottom: 30px;
}
.cnts2 .call_flx{
  display: block;
}
.cnts2 .inflx1{
  margin-top: 0px;
}
.cnts2 .clcl1 h2 span {
  color: var(--tgreen);
  font-weight: 400;
  font-size: 43px;
}
.cnts2 .clcl1 h2{
  font-size: 49px;
  line-height: 58px;
}
.cnt2s img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.1);
}
.cnt2s{
  position: relative;
}
.mycntrw{
  align-items: center;
}
.cnt_sec3{
  padding-top: 50px;
  padding-bottom: 30px;
}
.cntfrmcll2 h2 {
  color: var(--tpup);
  font-size: 31px;
  line-height: 43px;
  font-weight: 500;
}
.cntfrmcll2 p{
  font-size: 16px;
  font-weight: 400;
  color: var(--tblck);
  line-height: 35px;
  font-family: poppins;
}
.cntfm1 input {
  background-color: #D6D6D6;
  border: #D6D6D6;
  margin-top: 10px;
  color: var(--tblck);
  font-size: 15px;
  height: 55px;
  width: 97%;
  margin-left: 10px;
  margin-right: 10px;
}
.cntfm1 textarea {
  background-color: #D6D6D6;
  border: #D6D6D6;
  margin-top: 10px;
  color: var(--tblck);
  font-size: 15px;
  height: 185px;
  width: 97%;
  margin-left: 10px;
  margin-right: 10px;
  resize: none;
  border-radius: 5px;
  padding-left: 10px;
  padding-top: 10px;
}
.inflcnt{
  display: flex;
}
.cnt_frm button{
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
}
.cntfm1 input:focus{
     border: 1px solid #5830b2;
  outline: none;
  box-shadow: none;
}
.cntfm1 textarea:focus{
     border: 1px solid #5830b2;
  outline: none;
  box-shadow: none;
}
.cmty{
  align-items: center;
}
.mypf_frm{
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppf input {
  background-color: #EEEEEE;
  border: 2px solid #EEEEEE;
  margin-top: 12px;
  color: var(--tblck);
  font-size: 15px;
  height: 53px;
  width: 97%;
  margin-left: 10px;
  margin-right: 10px;
}
.ppf textarea {
  background-color: #EEEEEE;
  border: 2px solid #EEEEEE;
  color: var(--tblck);
  font-size: 15px;
  height: 187px;;
  width: 97%;
  margin-left: 10px;
  margin-right: 10px;
  resize: none;
  border-radius: 5px;
  padding-left: 10px;
  padding-top: 10px;
  margin-top: 10px;
}
.ppf button{
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
}
.ppf input:focus{
  border-color: var(--tpup);
  background-color: #EEEEEE;
  outline: none;
  box-shadow: none;
}
.ppf textarea:focus{
  border-color: var(--tpup);
  background-color: #EEEEEE;
  outline: none;
  box-shadow: none;
}
.popup_frm .modal-dialog {
  max-width: 750px;
  background-color: var(--twhite);
}
.my_popup_frm p{
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--tblck);
}
.my_popup_frm h2{
  font-size: 35px;
  font-weight: 600;
  color: var(--tblck);
}
.my_popup_frm h2 span{
  color: var(--tpup);
}
.my_popup_frm .btn_grad{
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.ppf{
  display: flex;
  align-items: center;
}
.mydropimage img{
  width: 100%;
}
.dropdown-menu{
  min-width: 53rem;
}
ul#menu-2 {
  display: inherit!important;
}
ul#menu-2 li {
  display: inline-block !important;
}
ul#menu-2 li {
  display: inline-block !important;
  width: 49%;
  text-align: left;

}
.mydropinng img{
  width: 35px;
  height: 35px;
  margin-right: 5px;
}
.image_menu{
  background-image: url(../images/mydrbac.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding-top: 20px;
  padding-bottom: 20px;

}
.dropdown-menu {
  min-width: 53rem;
  left: -118px;
  top: 60px;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 5px #f9f9f940;
  transition: .3s all;
  height: 280px;
}
.image_menu .row{
  align-items: center;
  padding-top: 20px;
}
.navbar .dropdown ul a{
  justify-content: flex-start
}

/* IMAGE GALLERY START */
.port_gallery{
  padding-top: 0px;
  padding-bottom: 30px;
}
.myimgtab {
  display: block;
  padding-top: 80%;
  position: relative;
  width: 100%;
}
.myimgtab img{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 0 27px rgb(117 116 128 / 40%);
  transition: 0.8s ease-in-out;
}
.myimgtab img:hover{
  transform: scale(1.2);
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 27px var(--tdark);
}
.logo_tb img{
  object-position: center;
}
.wd_tb img{
  object-position: top;
}
.port_gallery .col-lg-3{
  padding-left: 5px;
  padding-right: 5px;
}
.port_gallery .mytb ul {
  padding-bottom: 20px;
  padding-top: 20px;
}
.mymrw{
  margin-top: 10px;
}
.port_gallery .nav-link{
  color: var(--tblck);
  /*text-transform: uppercase;*/
  text-transform:capitalize;
  font-size: 16px;
  padding: 14px 30px;
  background: #C4CEDB;
  margin-left: 5px;
  margin-right: 5px;
}
.port_gallery .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background: var(--tgr);
  border-radius: 5px;
  padding: 14px 30px;
}
.myporttabs{
  justify-content: center;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.tsrw{
  margin-bottom: 30px;
}
.myportdolio_btn{
  text-align: center;
}
.ShowLess{
  display: none;
}
.myportfolio_btns{
  text-align: center;
}
.myportfolio_btns .btn_grad{
 margin-left: 0px;
}
/* IMAGE GALLERY END */

/* TESTIMONIALS START */
.reviews_sec{
  padding-top: 30px;
  padding-bottom: 100px;
  background-image: url(../images/tbac.webp), linear-gradient(rgb(50 42 112 / 13%),rgb(119 100 251 / 9%));
  background-blend-mode: overlay;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* animation: mymove 100s linear infinite; */
  width: 100%;
  height: 100%;
  margin-top: 30px;
}
.rev_r1 h2 {
  color: var(--twhite);
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
  padding-left: 20px;
}
.rev_r1 h2 span{
  color: var(--twhite);
  font-weight: 600;
}
.rev_r1{
  margin-bottom: 50px;
}
.tb_cnt{
  display: flex;
  align-items: flex-start;
}
.tb_cnt h3{
  color: var(--tblck);
  font-size: 17px;
  font-weight: 500;
}
.tbcnt1 img{
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  display: block;
}
.tbcnt2 img{
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: -5px;
}
.main_testbx p{
  font-size: 15px;
  line-height: 28px;
  margin-top: 15px;
}
.main_testbx{
  background: var(--twhite);
  padding: 20px;
  border-radius: 3px;
  box-shadow:0px 9px 17px -4px rgba(135,134,134,0.75);
  width: 85%;
  display: block;
  position: relative;
  z-index: 0;
  margin: 15px;
  height: 284px;
}
.reviews_sec .slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 115%;
  display: block;
  width: 538px;
  height: 24px;
}
.reviews_sec .slick-prev:before, .slick-next:before {
  font-family: 'f';
  padding: 36px;
  font-size: 31px;
  line-height: 1;
  opacity: .75;
  color: rgb(255, 255, 255);
}
.main_testbx p {
    font-size: 16px;
    line-height: 29px;
}
/* .main_testbx::before{
  content: '';
  background-image: url(../images/re.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 247px;
  height: 172px;
  top: -92px;
  right: -83px;
  position: absolute;
  z-index: 0;
}
.main_testbx::after{
  content: '';
  background-image: url(../images/re.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 247px;
  height: 172px;
  top: 148px;
  left: -107px;
  position: absolute;
  z-index: 0;
} */
/* TESTIMONIALS END */

@keyframes mymove{
  0%{
      background-position: -10000px 0px;
  }
  100%{
      background-position: 0px 0px;
  }
}
.dmi img{
  width: 500px;
}
.pkges_page .pkgr2 {
  padding-top: 30px;
}
.pkges_page{
  position: relative;
}
.pkges_page::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 87%;
  background-image: url(../images/pkgbac.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 105px;
}
.big_pkg h3 {
  color: #3F3278;
  font-weight: 600;
  font-size: 125px;
}
.mybig_head h2{
  color: #3F3278;
  font-weight: 600;
  font-size: 120px;
  margin-left: -40px;
}
.hs3cl2 h2 {
  color: var(--tgreen);
  font-size: 34px;
  line-height: 50px;
  font-weight: 400;
}
.mybig_head::before {
  content: '';
  background: url(../images/33.webp) no-repeat;
  background-size: 100% 100%;
  width: 250px;
  transform: scale(1.1);
  height: 250px;
  position: absolute;
  left: -5px;
  top: -26%;
  animation: myabc 0.8s linear infinite;
  z-index: -1;
}
.acv .partners_sec::before{
  display: none;
}
.acv .partners_sec{
  padding-bottom: 0px;
}
.appflx1{
  position: relative;
  width: 100%;
}
.appflx1::before {
  content: '';
  background: #e7e7e7;
  width: 85%;
  position: absolute;
  left: 26px;
  z-index: -1;
  height: 75px;
}
.appflx1::after {
  content: '';
  width: 21px;
  position: absolute;
  right: 18px;
  top: 3px;
  border-right: 8px solid var(--tpup);
  height: 75px;
}
.app .hs3cl1 img{
  width: 100%;
  transform: scale(1);
}
.appsec2{
  background-image: none;
}
.appsec2::before{
  display: none;
}
.cntpage .appflx1 {
  position: relative;
  width: 55%;
  margin-top: 20px;
}
.app_flx12 h4 {
  margin-top: 25px;
  color: var(--tpup);
  padding-left: 64px;
  font-size: 16px;
  font-weight: 500;
}
.cnts2 {
  padding-top: 50px;
  padding-bottom: 30px;
  background-image: url(../images/d516.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  position: relative;
}
.cnts3cl1 h2{
  color: var(--tblck);
  font-size: 45px;
  text-align: center;
  font-weight: 600;
}
.cnts3cl1 span{
  color: var(--tgreen);
}

/* REVIEW START */
.mytest1b img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: -130px;
}
.myalltabs{
  display: flex;
}
.myrev_2{
  align-items: center;
  margin-top: -50px;
}

.myabcd{
  padding-left: 100px;
}
.rev_tabs img{
  margin-right: auto;
  display: block;
  width: 70px;
  height: 70px;
}
.myalltabs{
  width: 30%;
}
.revhead h2 {
  color: var(--tgreen);
  font-size: 34px;
  line-height: 50px;
  font-weight: 400;
}
.revhead h2 span {
  color: var(--tpup);
  font-weight: 600;
}
.revhead{
  padding-top: 50px;
}
.slick-slide.slick-current.slick-active .rev_tabs img {
  transform: scale(1.2);
  width: 80px;
  height: 80px;
}
.main_rev_sec {
  background-image: url(../images/d516.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  position: relative;
}
.mycers{
  padding-top: 50px;
  padding-bottom: 30px;
}.fr3c1 p a{
    color : #fff;
    text-decoration: underline !important;
}
.fr3c1 p a:hover{
    color : #aac12d;
}
.dmi img {
    width: 100%;
    margin-bottom: 35px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
 -webkit-appearance: none;
 margin: 0;
}
/* Firefox */
input[type=number] {
 -moz-appearance: textfield;
}
.hs2_mg.dmi {
    padding-top: 50px;
    padding-bottom: 50px;
}
.mybig_head::before{
    display : none;
}
.mybig_head::before{
    display : none;
}
.myshcase .mybig_head::before{
    display : block;
}

/*custom*/

.badge-number{
font-size: 12px;
    background: #ff0000;
    color: #fff;
    border-radius: 20px;
    padding: 0px 5px;
    vertical-align: top;
    position: relative;
    top: -6px;
    left: -8px;
}
.addtocart-form{
text-align: center;
}

.addtocart-form h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--tblck);
}
.addtocart-form{
background: white;
}

/* CHECKOUT PAGE  */
.checkoutpage {
    padding: 30px 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 var(--tdark);
}

.checkout_right select:focus {
    outline: 0 !important;
    box-shadow: none !important;
    border: 1px solid var(--tdark);
}

.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(0deg, rgba(0,81,162,1) 0%, rgba(88,48,178,1) 57%);
}

.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(0deg, rgba(0,81,162,1) 0%, rgba(88,48,178,1) 57%);
}

.myquant a:hover {
    background: #AAC12D;
}
.text-form a {
    color: #2e3faa;
    transition: .3s;
}.check-box-main {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    align-items: flex-start;
}

.check-box-main .icon {
    height: 20px;
    width: 20px;
    flex: 0 0 20px;
    font-size: 11px;
    background: #0d4ca4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}
p.text-form {
    margin: 0;
}
.text-form a:hover {
    color: #727fd1;
}
.lsec4.termscm a {
    font-size: 17px;
    font-weight: 600;
    color: var(--tpup);
}

.lsec4.termscm a:hover {
    color: var(--tgreen);
}