@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap");
:root {
  --pink: #84bc48;
  --black: #000;
  --blue: #36a94a;
}


.p_t a {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
    margin: 10px 0;
}

.p_t {
    padding: 10px 0 0 0;
}


/*BEGIN: GENERAL CSS*/

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 22px;
  color: #000;
  background: #fff;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

p {
  color: #000000;
  font-size: 16px;
  line-height: 35px;
  font-weight: 300;
}

section {
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

ul {
  padding: 0;
  margin: 0;
}

.center-col {
  margin: 0 auto;
  display: table;
  float: none;
}

/*Header CSS Section Begin*/

header {
  background: transparent;
  padding: 30px 0;
  position: absolute;
  z-index: 999;
  width: 100%;
  transition: 0.5s ease-in-out;
}

header.menu_fixed {
  position: fixed;
  width: 100%;
  background: var(--white);
  transition: 0.5s ease-in-out;
  box-shadow: 0px 0px 20px rgb(244 47 99 / 2%);
  padding: 15px 0;
  top: 0;
  z-index: 999;
}

header.menu_fixed .menu-sec-main {
  padding-top: 0;
}

header.menu_fixed .logo-main-sec img {
  width: auto;
  transition: 0.5s ease-in-out;
}

.logo-main-sec img {
  width: 200px;
  transition: 0.5s ease-in-out;
}

.menu-sec-main {
  padding-top: 10px;
}

header .container-fluid {
  padding: 0 70px;
}

.menu-sec-main ul li a {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  padding: 10px 16px;
  border-radius: 50px;
  transition: 0.5s ease-in-out;
}

.menu-sec-main .dropdown-menu a {
  color: #FFf !important;
}

.dropdown-menu a.dropdown-item {
  border-radius: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  outline: none;
}

.menu-sec-main ul li.btn_quote a {
  padding: 0;
  font-size: initial;
}

.menu-sec-main ul li a:hover {
  color: #fff !important;
  background-image: -moz-linear-gradient( 163deg, #af1000 0%, #770d02 100%);
  background-image: -webkit-linear-gradient( 163deg, #af1000 0%, #770d02 100%);
  background-image: -ms-linear-gradient( 163deg, #af1000 0%, #770d02 100%);
}

.menu-sec-main ul li.active a {
  color: #fff !important;
  background-image: -moz-linear-gradient( 163deg, #af1000 0%, #770d02 100%);
  background-image: -webkit-linear-gradient( 163deg, #af1000 0%, #770d02 100%);
  background-image: -ms-linear-gradient( 163deg, #af1000 0%, #770d02 100%);
}

li.btn_quote {
  padding-left: 30px;
}

header.menu_fixed .book_table ul {
}

.menu_fixed .menu-sec-main ul li a {
  color: #000;
}

.menu_fixed .arrow-parent p {
  color: #000;
}

.fixed-logo {
  display: none;
}

header.menu_fixed .logo-main-sec .fixed-logo {
  display: block;
}

header.menu_fixed .logo-main-sec img {
}

.logo-main-sec {
    display: inline-block;
}

.counter_logo {
    display: inline-block;
    width: 47%;
    padding-left: 10px;
    position: relative;
    top: 10px;
}

.counter_logo img {
    width: 100%;
    filter: brightness(0);
}


.book_table ul li a.btn_custom {
    padding: 14px 30px;
    border-radius: 5px;
    background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    font-size: 17px;
    top: 0;
}

.book_table ul li a.btn_custom:hover {
    background: #73a545;
    color: var(--white);
}

/*.navbar-nav li:hover .dropdown-menu{ display:block}*/


.book_table {
  text-align: right;
}

.book_table ul li {
  display: inline-block;
  padding-left: 10px;
  color: #fff;
  padding-right: 10px;
}

.book_table ul li a {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  text-decoration: underline;
  line-height: 60px;
  position: relative;
  top: 5px;
}

.book_table ul li a img {
  padding-right: 6px;
  filter: brightness(0) invert(1);
  width: 35px;
}

.book_table ul li a:hover {
  color: #84bc48;
}

.counter_logo span {
    padding-left: 12px;
    font-size: 12px;
    font-weight: 600;
}

.button-pulse {
  -webkit-animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
          animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 2px #84b6008f;
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

/*Header CSS Section End*/


/*Banner Section Begin*/

.banner_sec_main{
  background: url(../images/banner-1.webp);
  min-height: 800px;
  display: flex;
  position: relative;
  background-position: right;
  overflow: hidden;
}

.banner_content_sec h2 {
    color: var(--white);
    font-size: 61px;
    line-height: 80px;
    font-weight: 700;
    letter-spacing: 3px;
    padding-bottom: 9px;
}

ul.point__banner li {
    font-size: 17px;
    padding-bottom: 14px;
    color: var(--white);
    list-style-type: disc;
}

ul.point__banner {
    padding-left: 25px;
    margin-bottom: 10px;
}

.banner_content_sec p {
    font-size: 18px;
    letter-spacing: -0.03em;
    font-weight: 500;
    color: var(--white);
    line-height: 35px;
}

.banner_right_img {
    text-align: center;
    background-color: #f3f3f3;
    padding: 180px 0 0;
    position: relative;
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0px 0px 11px rgb(0 0 0 / 12%);
}

img.img-fluid.team_img {
    position: absolute;
    z-index: 99;
    left: -80px;
    bottom: 70px;
}

.banner_content_sec {
    padding: 210px 50px 0 0;
}

.banner-btn ul li a {
    background: transparent !important;
    color: var(--white) !important;
    padding: 0  30px 20px 0;
    display: inline-block;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 500;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    text-decoration: underline !important;
}

.banner-btn ul li {
    display: inline-block;
    padding: 0 15px 0 0;
    position: relative;
}

.banner-btn {
    padding-top: 40px;
    padding-left: 150px;
    position: relative;
}

.money {
    position: absolute;
    left: 0;
    top: 0;
}

.banner-btn ul {
    padding-left: 10px;
}

.number ul {
    padding-left: 0;
}

.banner-btn ul li:after {
    content: '';
    position: absolute;
    background: #fff;
    width: 2px;
    height: 22px;
    right: 20px;
    top: 1px;
}

.banner-btn ul li:nth-last-child(1):after {
    background: transparent;
}

.banner_sec_main:before {
    content: '';
    position: absolute;
    width: 35%;
    height: 100%;
    left: 0;
    background-size: 100%;
    bottom: 0;
    background-position: bottom;
   background: rgb(2 2 2 / 65%);
    width: 100%;
    height: 100%;
}

.banner-btn ul li a:hover {
    background: var(--pink);
    transform: translate(0px, -10px);
}

.banner_sec_main:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    z-index: 9999;
    bottom: -5px;
}
.banner-btn ul li.chng_clr a {
    background: transparent;
}

.banner-btn ul li.chng_clr a:hover {
    background: var(--blue);
}

.banner_content_sec h2 span {
    color: var(--pink);
}

.banner_vector {
    padding-top: 20px;
    padding-bottom: 40px;
}

.banner_vector ul li {
    display: inline;
    padding-right: 20px;
}

.banner_vector {
    display: flex;
}

.banner_vector ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_vector ul li img {
    width: 100%;
}

.banner__right {
    position: relative;
    top: 100px;
}

.number ul li a {font-size: 36px;margin-bottom: 30px;font-weight: bold;text-decoration: none !important;transform: unset !important;margin-bottom: 5px;}

/*Banner Section End*/

/*Trust Logo Section Begin*/

.trust-sec{
  background: #f3f3f3;
  padding: 15px 0;
}

.trust-sec ul.awrd li {
    display: inline-block;
    padding: 10px 0px;
}

.trust-sec .row {
    align-items: center;
}

.head_trust h2 {
    color: #1fab4f;
    font-weight: 600;
    font-size: 40px;
}

/*Trust Logo Section End*/




/*Empowers Section Begin*/

.empowers_sec_main .web_head h2 {
    color: var(--white);
}

.logos-partner {
    position: relative;
    z-index: 998;
}

.padding_70{
  padding: 70px 0;
}

.web_head h2 {
    font-size: 43px;
    text-align: center;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 5px;
}

.web_head{
  padding-bottom: 20px;
  position: relative;
  z-index: 998;
}

.empowers_boxes_sec {
    border: 1px solid #dbdbdb;
    padding: 25px 20px 20px;
    transition: 0.5s ease-in-out;
    min-height: 490px;
    position: relative;
    z-index: 999999;
    background: #f7f7f7;
    background: linear-gradient(to left, #f7f7f7 50%, #f3f3f3 50%);
    background-image: -webkit-linear-gradient(37deg, #e9e9e9 50%, #efefef 50%);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    margin-bottom: 20px;
}

.empowers_boxes_sec a {
    background: #ff9e5f;
    padding: 10px 30px;
    color: #000;
    border-radius: 50px;
    margin: 10px 0;
    display: inline-block;
    font-size: 16px;
}

.empowers_boxes_sec h3 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 5px;
    transition: 0.5s ease-in-out;
}

.empowers_boxes_sec p {
    font-size: 14px;
    line-height: 25px;
    color: var(--black);
    font-weight: 400;
    transition: 0.5s ease-in-out;
    min-height: 230px;
}

.empowers_boxes_sec:hover {
    background: #84bc48;
    transition: 0.5s ease-in-out;
    background-image: -webkit-linear-gradient(
37deg, #03bbdc 50%, #02b5de 50%);
}

.empowers_boxes_sec:hover p, .empowers_boxes_sec:hover h3 {
    color: var(--white);
}

.empowers_sec_main {
    background-color: #f7f7f7;
    position: relative;
}

.empowers_sec_main:before{
    background: url(../images/lines-orange.svg);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.1;
}
.empowers_sec_main:after {
    content: "";
    height: 250px;
    position: absolute;
    width: 100%;
    z-index: 99;
    top: 0;
    background: rgb(41,168,225);
    background: linear-gradient(0deg, rgba(41,168,225,1) 0%, rgba(6,130,186,1) 100%);
}


.empowers_boxes_sec img {
    padding-bottom: 15px;
    width: auto;
}

.empowers_boxes_sec:hover img {
    filter: brightness(0) invert(1);
    /* width: auto; */
}

.slick-slide{
  margin-right: 0;
}

.slick-dots{
      bottom: -45px;
}

.slick-dots li button:before {
    font-family: slick;
    font-size: 50px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #6a9940;
}

/*Empowers Section End*/


/*Expert Section Begin*/

.experts_sec_main{
  background: url(../images/build-website-bg.jpg) no-repeat;
  background-size: cover;
  padding: 185px 0;
  position: relative;
  background-position: 100%;
}

.expert_content h1 {
    font-size: 41px;
    color: var(--black);
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 48px;
    position: relative;
    z-index: 99;
}

.expert_content p {
    color: var(--black);
    font-size: 17px;
    line-height: 30px;
    font-weight: 500;
    text-shadow: 0px 0px 6px #fff;
    width: 90%;
    position: relative;
    z-index: 99;
}

.expert_content .banner-btn {
    padding-top: 10px;
    position: relative;
    z-index: 99;
}

.experts_sec_main:before {content: '';position: absolute;background: rgb(0 0 0 / 48%);width: 100%;height: 100%;top: 0;}

.expert_content{
  position: relative;
  padding-top: 90px;
  padding: 70px 70px 0px 50px;
}

.expert_content:before {
    background: url(../images/cta_bg.png);
    background-size: cover;
    content: '';
    position: absolute;
    width: 840px;
    height: 720px;
    top: -160px;
    right: 40px;
    z-index: 9;
    opacity: 0.8;
    margin: 0 auto;
}

.expert_content ul {
    position: relative;
    z-index: 99;
}

.expert_content ul li {
    font-size: 19px;
    padding-bottom: 15px;
    color: var(--black);
    list-style-type: disc;
}

/*Expert Section End*/


/*Why Choose Us Section Begin*/


.choose_sec_main {
    background: transparent;
    position: relative;
}

.choose_sec_main:before {
    background: url(../images/lines-orange.svg);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
}

.web_head p {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
}

.choose_sec_box {
    background: #f1f1f1 !important;
    padding: 50px 30px;
    border-radius: 10px 30px 10px 30px;
    border: 1px solid #49bf74;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 15%);
    min-height: 300px;
    margin: 30px 25px;
    position: relative;
    z-index: 9999;
}

.choose_sec_box:before {
 content: '';
 position: absolute;
 /* background: rgb(0 0 0 / 74%); */
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 border-radius: 10px 30px 10px 30px;
 z-index: -1;
 }

.choose_img1 {
    background: #f1f1f1 url(../images/choose_img01.jpg);
}

.choose_img2 {
    /* background: #f1f1f1 url(../images/choose_img02.jpg); */
}

.choose_img3 {
    background: #f1f1f1 url(../images/choose_img03.jpg);
}

.choose_img4 {
    background: #f1f1f1 url(../images/choose_img04.jpg);
}

.choose_img5 {
    background: #f1f1f1 url(../images/choose_img05.jpg);
}

.choose_sec_box h2 {
    color: var(--blank);
    font-size: 24px;
    font-weight: 600;
    position: relative;
    margin-bottom: 20px;
}

.choose_sec_box h2:before {content: '';width: 120px;height: 6px;position: absolute;bottom: -14px;border-radius: 50px;background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);}

.choose_sec_box p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 0;
    /* box-shadow: 0px 0px 20px #000; */
    color: var(--black);
}

.choose_sec_main .container-fluid {
    padding-left: 18%;
    position: relative;
}

/*Why Choose Us Section End*/

/*CTA Section Begin*/

.cta_sec_main {
    background: linear-gradient(135deg, #96bf48 0%, #5e8e3e 100%);
    background-size: 100%;
    padding: 60px 0 70px;
    position: relative;
    background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);
}

.cta_sec_content h2 {
    color: var(--white);
    font-size: 45px;
    font-weight: 600;
}

.cta_sec_content h3 {
    color: var(--white);
    font-size: 30px;
    font-weight: 200;
    letter-spacing: 3px;
}

.cta_sec_content p {
    color: var(--white);
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 0;
}

.cta_right_img {
    position: absolute;
    right: 160px;
    top: -60px;
}

.cta_right_img img {
    -webkit-filter: drop-shadow(12px 12px 25px rgba(0,0,0,0.5));
}

/*CTA Section End*/

/*Faq Section Begin*/

/*Author Section Begin*/

.faq_sec_main{
    /* background: url(../images/faq-banner.jpg); */
    background-size: cover;
    background-position: right;
    /* background-attachment: fixed; */
    position: relative;
}

.faq_sec_main .row {
    position: relative;
    z-index: 99;
}

.bg_author {
    background: rgb(255 255 255 / 85%);
    padding: 70px 140px 90px;
}

.book_accordion .card-header {
    border-radius: 0;
    padding: 12px 20px;
    background: var(--blue);
}

.book_accordion .card {
    border-radius: 0;
    background: rgb(255 255 255);
    box-shadow: 0px 0px 10px #585858;
    -webkit-box-shadow: 0px 0px 10px rgb(88 88 88 / 35%);
    border: 0;
}

.book_accordion .card h5 button {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    padding: 0;
    font-weight: 500;
}

.book_accordion .card h5 {
    padding: 0;
}

.book_accordion .card-body {
    color: var(--black);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    padding-top: 10px;
}

.accordion_head h2 {
    color: var(--black);
    font-size: 33px;
    line-height: 35px;
    text-align: left;
    font-weight: 600;
}

#accordion .card-header h5 button.collapsed i.fa-minus:before {
    content: "\f067";
}

.accordion_head p {
    font-size: 15px;
    color: var(--black);
    FONT-WEIGHT: 500;
    line-height: 28px;
}

.book_accordion .card h5 button .fa {
    position: relative;
    top: 8px;
}

.bg_faq_right {
    background-position: center;
    background-size: cover;
    background: #fbfbfb url(../images/banner_bg.png) no-repeat;
    text-align: center;
    background-position: top right;
}

.bg_faq_right:before {
     background: url(../images/lines-orange.svg);
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     opacity: 0.3;
     background-position: center;
     background-size: 100%;
     right: 0;
}

.bg_faq_right img {
    padding-top: 100px;
    text-align: center;
    margin: 0 auto;
    width: 90% !important;
    position: relative;
    z-index: 999;
}

.faq_sec_main::after {
    content: "";
    background-image: url(../images/girl.png);
    background-repeat: no-repeat;
    height: 810px;
    width: 925px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-45%);
}

img.gr-2 {
    bottom: 100px;
    left: -32px;
}

.gr {
    position: absolute;
    z-index: 2;
    filter: drop-shadow(0 0 0.45rem #ccc);
}

img.gr-1 {
    right: 27%;
    top: 36%;
}
/*Faq Section End*/

/*Our Portfolio Section Begin*/

.portfolio_Sec_main {
    background: #fbfbfb;
    position: relative;
    padding-bottom: 0;
}

.portfolio_Sec_main:before {
    /* background: url(../images/lines-orange.svg); */
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.2;
}


/*Our Portfolio Section End*/


/*Our Portfolio Section Begin*/

.portfolio_Sec_main .container-fluid{
  padding: 0;
}

.portfolio_boxes a {
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: relative;
    display: inline-block;
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.portfolio_boxes a figure {
    margin-bottom: 0;
    height: 500px;
}

.portfolio_boxes a figure img {
    width: 100%;
    position: relative;
    top: 0;
    transition: 2s all;
}

.portfolio_boxes a:hover img {
    top: -100%;
}

.portfolio_boxes:hover a:after {
    opacity: 1;
    position: absolute;
    content: "\f067";
    font-family: FontAwesome;
    left: 50%;
    top: 48%;
    width: 48px;
    margin-left: -24px;
    margin-top: -24px;
    color: #fff;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    text-shadow: 0 0 10px rgb(0 0 0 / 25%);
}

.portfolio_boxes:hover a:before {
    opacity: 1;
    content: '';
    background: #000;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
}

.portfolio_boxes {
    display: inline;
}

/*Our Portfolio Section End*/

.packages_sec_main {
    background: var(--white);
    position: relative;
}

.packages_sec_main:before {
    background: url(../images/lines-orange.svg);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
}

.package-box .package-top h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--black);
}
.package-box .cutprice {
    display: block;
    font-size: 18px;
    margin-top: 10px;
    text-decoration: line-through;
    padding-bottom: 5px;
    color: #73a545;
}
.package-box {
    padding: 22px 20px 10px;
    position: relative;
    box-shadow: 0px 0px 15px #cbcbcb;
    transition: 0.5s ease-in-out;
    background: var(--white);
    margin-bottom: 50px;
    border-radius: 10px;
}
.package-ss .slick-dots li button:before {
    font-size: 50px;
    }
    .package-ss .slick-dots li.slick-active button:before{
          color: #fe6654; 
    }
.package-ss .slick-next,.package-ss .slick-prev{
  display: none !important;
}
.package-ss .slick-track {
    padding-top: 30px;
}
.package-box img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}
.packages-section .slick-slide {
    margin: 0;
}

.btn_packages {
    padding: 15px 0 10px;
    text-align: center;
}

.btn_packages a {
    background: #38b967;
    color: var(--white) !important;
    padding: 15px 40px;
    display: inline-block;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #bdbdbd;
    cursor: pointer;
    background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);
}

.btn_packages a:hover {
    background: #73a545;
    color: var(--white);
}

.package-box:hover{
  transform: scale(1.05) !important;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}
.package-box:hover .package-details p {
    transition: all 0.5s ease-in-out;
}
.package-box:hover .contact-part p,
.package-box:hover .contact-part a  {
    transition: all 0.5s ease-in-out;
}
.package-box:hover ul li:before{
    transition: all 0.5s ease-in-out;
}
.package-box .package-top .h5 sub {
    font-size: 14px;
}
.package-box ul li.heading {
    font-weight: 700;
}
.package-box ul li.heading:before {
    display: none;
}
.package-box .extra p {
        margin: 5px 0;
    background: #bf1f0b;
    color: #fff;
    padding: 0 10px;
}
.package-box .package-top .h5 {
    font-size: 29px;
    font-weight: 700;
    display: block;
    color: #1fab4f;
}

span.first_month {
    display: block;
    background: #bf1f0b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 5px;
    font-size: 15px;
}

span.third_month {
    display: block;
    background: #1a1a2f;
    color: #fff;
    padding: 5px 0px;
    border-radius: 5px;
    margin-bottom: 5px;
    font-size: 14px;
}

.package-box .package-details .h6 {
    font-size: 22px;
    font-weight: 700;
    display: block;
}
.package-box .package-details {
    /* border-top: 1px solid #ccc; */
    margin: 20px 0;
    /* padding-top: 20px; */
}
.package-box .contact-part {
    margin-bottom: 15px;
    padding-top: 20px;
    text-align: left;
    padding: 10px 10px;
}

.package-box .contact-part p, .contact-part a {
    margin: 0;
    color: var(--blsck);
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
}

.contact-part a{
   color: #1fab4f;
}

.w-50.pl-2 a {
    color: #1fab4f;
}
.package-box ul li {
    margin: 5px 0;
    word-break: break-word;
    padding-right: 10px;
    font-size: 15px;
    line-height: initial;
    color: var(--blsck);
    position: relative;
    padding: 5px 20px;
    line-height: 17px;
}

.package-box ul li:before {
    content: '';
    background: url(../images/tick-arrow.png) no-repeat;
    color: #bf1f0b;
    font-size: 17px;
    margin-right: 8px;
    width: 13px;
    height: 12px;
    display: inline-block;
    top: 8px;
    position: absolute;
    left: 0;
}
.package-box ul.pkg-list {
    height: 170px;
    text-align: start;
    overflow-y: scroll;
    padding: 0 6px;
}
.package-box ul.pkg-list::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;
}

.package-box ul.pkg-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #e6e5e5;
  border-radius: 10px;
  background: #e6e5e5;
}
.package-box ul.pkg-list::-webkit-scrollbar-thumb {
  background: #4cbe60;
  border-radius: 10px;
}
.package-box ul.pkg-list::-webkit-scrollbar-thumb:hover {
  background: #29a8e1;
  border-radius: 10px;
}

.package-details p {
    font-size: 14px;
    font-weight: 500;
    line-height: initial;
    color: var(--black);
}

.package-box:hover .btn_packages a{
}

.package-box .contact-part > div:before {content: '';border-right: 1px solid #d9d7d7;width: 2px;height: 50px;position: absolute;right: 7px;}

.package-box .contact-part > div {
    position: relative;
}

.package-box .contact-part > div:nth-last-child(1):before {
    border: 0;
}

h2.text-black,p.text-black {
    color: var(--black);
}

.tab_btn ul {
    margin-bottom: 50px;
}

.tab_btn ul li a {
    padding: 13px 40px;
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    border-radius: 50px;
    font-size: 18px;
}

.tab_btn ul {
    border: 0;
    text-align: center;
    justify-content: center;
}

.tab_btn ul li {
    margin: 0 15px 0 0;
}

.tab_btn ul li a:hover,.tab_btn ul li a.active.show {
    background: var(--pink);
}

.packages_sec_main  .tab-content>.active {
    opacity: 1;
}

p.small_text {
    font-size: 13px;
    font-weight: 500;
    padding-top: 30px;
}

/*Packages Section End*/


/*Combo Packages Section Begin*/

.combo_packages_sec {
    background: var(--white);
    position: relative;
}

.combo_packages_sec:before {
    /* background: url(../images/lines-orange.svg); */
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.1;
}

.combo_head {
    text-align: center;
    padding-bottom: 40px;
}

.combo_head h3 {
    color: var(--blue);
    font-weight: 600;
    font-size: 50px;
}

.combo_head h4 {
    color: var(--black);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 36px;
}

.combo_list h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.combo_list ul li {
    padding-bottom: 10px;
    line-height: 22px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    color: var(--white);
}

.combo_list ul li:before {
    content: '';
    background: url(../images/tick-arrow.png) no-repeat;
    color: #bf1f0b;
    font-size: 17px;
    margin-right: 8px;
    width: 13px;
    height: 12px;
    display: inline-block;
    top: 5px;
    position: absolute;
    left: 0;
    filter: brightness(0) invert(1);
}

.combo_pack {
    background: var(--pink);
    padding: 30px 40px;
    border-radius: 10px 10px 0px 0px;
    position: relative;
    z-index: 99;
}

.combo_price {
    background: var(--blue);
    padding: 20px 40px;
    border-radius: 0px 0px 10px 10px;
}

.price_text_combo {
    color: var(--white);
}

.price_text_combo h4 {
    font-size: 27px;
    font-weight: 600;
}

.price_text_combo h5 {font-size: 20px;font-weight: 300;}

.price_tag_sec {
    text-align: center;
}

.price_tag_sec span.cutprice {
    /* display: block; */
    text-decoration: line-through;
    font-size: 15px;
    color: var(--white);
    padding-bottom: 7px;
    padding-left: 5px;
}

.price_tag_sec span.h5 {
    color: var(--white);
    font-weight: bold;
    font-size: 23px;
}

.combo_price .row {
    align-items: center;
}

.price_tag_sec .btn_packages a {
    background: var(--pink);
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 15px;
}

/*Combo Packages Section End*/

/*Process Section Begin*/

.services_boxes {
    padding-bottom: 60px;
}

.services_boxes h2 {
    color: var(--white);
    font-size: 19px;
    text-transform: uppercase;
    padding-bottom: 5px;
    padding-left: 60px;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.services_boxes h2 img {
    position: absolute;
    left: 10px;
    filter: brightness(0) invert(1);
    width: 60px;
}

.services_boxes p {
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    color: var(--white);
}

.logo_content_tab.mb {
    position: relative;
    margin-top: -110px;
}

.process_sec_main .row.pt-5 {
    padding-top: 100px !important;
}

.process_sec_main {
    background: url(../images/process_banner.jpg);
    background-size: cover;
    position: relative;
}

.process_sec_main:before {
    content: '';
    background: rgb(20 20 20 / 42%);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}


.process_sec_main .web_head h2,.process_sec_main .web_head p {
    color: var(--white);
}
/*Process Section End*/

/*Review Home Section Begin*/

.about_review .review_sec_main {
    padding: 70px 0 30px;
}

.review_hme_sec {
    padding: 30px 0 0;
}

.review_hme_box {
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 6%);
    border: 0.5px solid #6a9840;
    text-align: center;
    padding: 50px 30px  20px;
    margin-bottom: 90px;
    min-height: 540px;
}

.rating_sec ul {
    display: inline-block;
}

.rating_sec ul li {
    display: inline-block;
    color: #f15307;
    font-size: 25px;
    padding: 0 2px;
}

.rating_sec span {
    font-size: 16px;
    position: relative;
    top: -3px;
    padding-left: 5px;
    color: var(--black);
}

.rating_sec {
    padding-bottom: 15px;
}

.review_hme_box p {
    font-size: 14px;
    line-height: 26px;
    color: var(--black);
    padding-bottom: 0px;
    font-weight: 500;
}

.review_hme_box h3 {
    color: var(--black);
    font-size: 17px;
    font-weight: bold;
}

.review_hme_box h5 {
    color: var(--black);
    font-size: 16px;
    font-weight: 300;
}

span.quote {
    display: inline-block;
    padding-bottom: 20px;}

span.quote img{
  border-radius: 50%;
}

.review_sec_main .slick-dots li button:before{
    font-size: 57px;
    color: #ccc;
    opacity: 0.25;
}

.review_sec_main .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--blue);
}

.review_sec_main .slick-dots{
    bottom: 0;
}

.review_sec_main {
    background: transparent;
    position: relative;
    padding-bottom: 10px;
}

.review_sec_main:before {
    background: url(../images/lines-orange.svg);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    background-size: cover;
    display: none;
}

/*Review Home Section End*/


/*Footer Section Begin*/

footer {
    background: url(../images/footer_bg.jpg);
    padding: 50px 0 20px;
    position: relative;
}

.footer_logo img {
  width: 20%;
}

.footer_logo p {
    padding-top: 30px;
    color: var(--white);
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
}

.footer_logo ul li {position: relative;color: var(--white);padding: 0px 10px 20px 40px;font-size: 17px;font-weight: 300;}

.footer_logo ul li span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 23px;
}

.footer_logo ul li p {
    display: inline;
    font-weight: 300;
    margin-bottom: 0;
    line-height: initial;
    font-size: 14px;
}

.footer_logo ul li a {
    color: var(--white);
    font-size: 14px;
}

.form_footer_head h2 {
    color: var(--white);
    font-size: 25px;
}

.footer_form_sec form {
    padding-top: 20px;
}

.footer_form_sec form input {
    height: 50px;
    margin-bottom: 15px;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    width: 100%;
    padding: 0 15px;
}

.footer_form_sec form textarea {
    height: 120px;
    border-radius: 10px;
    border: 0;
    font-size: 15px;
    padding-top: 10px;
    margin-bottom: 10px;
    resize: none;
}

.footer_form_sec form .btn_form input {
    background: var(--blue);
    color: var(--white);
    padding: 15px 70px;
    height: auto;
    font-size: 19px;
    cursor: pointer;
}

.btn_form {
    padding-top: 10px;
}

.copy_right {
    /* background: #fff; */
    margin-top: 40px;
    padding: 5px 0;
}

.copy_right_text p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    font-weight: 300;
}

.pay_icon img {
    width: 40%;
}

.pay_icon {
    text-align: right;
}

.copy_right .row {
    align-items: center;
}

footer:before {
    content: '';
    position: absolute;
    background: rgb(4 4 4 / 86%);
    width: 100%;
    height: 100%;
    top: 0;
}

.intl-tel-input {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}

/*Footer Section End*/

/* Lead PopUp Section Begin */

.lead_popup .modal-content {
    border: 0;
    border-radius: 20px;
    padding: 40px 60px 10px;
    background: #fff;
    background-size: cover;
}

.lead_popup .modal-header button {
    background: var(--blue);
    opacity: 1;
    text-shadow: none;
    color: var(--white);
    font-size: 35px;
    font-weight: 300;
    width: 50px;
    border-radius: 50px;
    height: 50px;
    line-height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.5s ease-in-out;
}

.lead_popup .modal-header button:hover {
    background: var(--blue);
}

.lead_popup .modal-header {
    padding: 0;
    border: 0;
}

.lead_popup h2 {
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 30px;
}

.lead_popup [type=radio]:checked+label, [type=radio]:not(:checked)+label {
    position: relative;
    padding-left: 48px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--black);
    font-size: 16px;
    margin-bottom: 23px;
}

.lead_popup [type=radio]:checked+label:before, [type=radio]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--blue);
    border-radius: 100%;
    background: transparent;
}

.lead_popup [type=radio]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.lead_popup [type=radio]:checked+label:after, [type=radio]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--blue);
    position: absolute;
    top: 4px;
    left: 19px;
    border-radius: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.lead_popup [type=radio]:checked, [type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.lead_popup input {
    height: 50px;
    border-radius: 0;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

.lead_popup .modal-footer {
    border: 0;
}

.lead_popup .modal-content:before {
  content: '';
  position: absolute;
  background: rgb(255 255 255 / 85%);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 20px;
  }


.lead_popup .modal-btn ul li button {
    background: var(--blue);
    border: 0;
    padding: 10px 50px;
    font-size: 20px;
    border-radius: 10px;
    font-size: 18px;
}

.lead_popup .modal-btn ul li button:hover {
    background: var(--blue);
    color: var(--white);
}

.lead_popup input.btn-success {
    background: var(--pink);
    border: 0;
    padding: 15px 0;
    height: auto;
    border-radius: 50px;
    width: auto;
    padding: 13px 60px;
    display: table;
    margin: 10px auto;
}

.modal-btn ul {
    display: flex;
    justify-content: space-between;
}

/* Lead PopUp Section End */


/*Started POPUp Section Begin*/

.started_popup_sec .modal-content {
    background: #fff;
    background-size: cover;
    padding: 30px 20px 50px;
    position: relative;
    border: 0;
    box-shadow: 0px 0px 50px rgb(0 0 0 / 50%);
}

.started_popup_sec .modal-header {
    padding: 0;
    border: 0;
}

.started_popup_sec .modal-header button {
    position: absolute;
    background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);
    width: 50px;
    height: 50px;
    color: var(--black);
    font-size: 45px;
    opacity: 1;
    text-shadow: none;
    font-weight: 200;
    line-height: 21px;
    border-radius: 50px;
    right: 0;
    top: 0;
}

.started_popup_sec .modal-header button span {
    position: relative;
    left: -2px;
}

.started_popup_sec .modal-content:before {content: '';background: rgb(255 255 255 / 75%);height: 100%;width: 100%;top: 0;position: absolute;right: 0;}

.form_head_Sec {
    text-align: center;
}

.form_head_Sec h2 {
    font-size: 23px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: var(--white);
    margin-bottom: 0;
    background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);
    padding: 10px 0;
    margin: 10px 0;
    border-radius: 50px;
}

.form_head_Sec h4 {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
}

.form_head_Sec h3 {
    color: #26ac4e;
    font-size: 29px;
    font-weight: 600;
    margin: 0;
    padding-top: 10px;
}

.started_popup_sec input {
    height: 50px;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #3ab04d;
    padding: 10px 20px;
    font-size: 13px;
}

.started_popup_sec select {
    height: 50px;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #3ab04d;
    padding: 10px 20px;
    font-size: 13px;
}

.started_popup_sec textarea {
    height: 130px;
    font-size: 13px;
    padding: 15px 10px;
    resize: none;
    border-radius: 10px;
    border: 1px solid #3ab04d;
}

.started_popup_sec form {
    padding-top: 20px;
}
.btn_form input {
    background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);
    color: var(--white);
    font-size: 19px;
    border: 0;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.btn_form input:hover {
    background: var(--blue);
    border: 0;
}


/*Started POPUp Section End*/

/*Trust Widget Begin*/

.floating_widget {
    padding: 15px 10px;
    border: 1px solid #d7d7d7;
    border-radius: 0 4px 4px 0;
    border-left: medium;
    box-shadow: 0 5px 17px -3px rgb(0 0 0 / 12%);
    transform: translateX(-5%);
    opacity: 1;
    left: 0;
    -webkit-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    margin-bottom: auto;
    background-color: #fff;
    text-align: center;
    max-width: 100px;
    cursor: pointer;
    z-index: 1020;
    margin-top: auto;
    bottom: 0;
    height: 160px;
    display: inline-block;
    position: fixed;
    top: 0;
}

.numbers {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 0;
}

.number_big {
    font-weight: 600;
}

.number_small {
    color: #000000cc;
    font-size: 12px;
}

.ratingStars {
    margin-bottom: 5px;
    display: inline-block;
    vertical-align: middle;
}

.ratingStars img {
    width: 100%;
}

.subheading_small {
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}

.subheading_big {
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
}

.reviewsLogo_text {
    color: #333;
    font-size: 12px;
    line-height: 24px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

.reviewsLogo_star img {
    width: 18px;
    margin-right: 5px;
    position: relative;
    top: -3px;
}


.reviewsLogo {
    float: left;
    width: 100%;
    display: inline-block;
    white-space: nowrap;
}

.reviewsLogo_star {
    display: inline-block;
    vertical-align: middle;
}

.floating_footer {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border-top: 1px solid #ccc;
    padding-top: 3px;
}
/*Trust Widget End*/

/*Thank You CSS Begin*/

.main-thankyou-sec h1 {
    color: var(--black);
    font-size: 59px;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-thankyou-sec p.subtitle {
    color: var(--black);
    line-height: 1.4;
    font-size: 21px;
    font-weight: 300;
    padding: 5px 0 30px 0;
}

.main-thankyou-sec{
  padding: 230px 0 90px;
  background-size: cover;
}
section.main-thankyou-sec a {
    padding: 14px 30px;
    border-radius: 5px;
    background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    font-size: 17px;
    top: 0;
}
/*Thank You CSS End*/

/*Custom Qoute Section Begin*/

.custom_qoute {
    background: rgb(41,168,225);
    padding: 40px 0;
    margin: 50px 130px;
    background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);
}

.custom_qoute p {
    color: var(--white);
    font-size: 22px;
    line-height: 40px;
}

.custom_qoute p strong {
    font-weight: bold;
}

.btn_custom a {
    padding: 20px 31px;
    display: inline-block;
    color: var(--white);
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    background: #000;
}

.btn_custom {
    text-align: center;
}

.custom_qoute  .row {
    align-items: center;
}

/*Custom Qoute Section End*/


.banner__form__head h3 {
    font-weight: bold;
    font-size: 31px;
}

.banner__form__head p {
    font-size: 17px;
    line-height: 23px;
    color: rgb(0 0 0 / 60%);
    font-weight: 400;
}

.banner__form__main {
    padding: 40px 30px 60px;
}

.banner__form input {
    height: 50px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.btn__form input {
    background: var(--blue);
    border: 0;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
}


/*Responsive End*/
.shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape1 {
            width: 200px;
            height: 200px;
            background: white;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape2 {
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.8);
            top: 60%;
            right: 1%;
            animation-delay: 2s;
        }

        .shape3 {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.6);
            top: 10%;
            right: 37%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
/* Outer Section */
.callback-box {
  padding-bottom: 60px;
}

/* Gradient Box */
.callback-content {
  background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Heading */
.callback-content h2 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.callback-content .form-control,
.callback-content textarea {
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  padding: 12px 15px;
}

.callback-content .btn_form input {
  background: #fff;
  color: #004c3f;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 8px;
  border: none;
  transition: 0.3s;
}

.callback-content .btn_form input:hover {
  background: #004c3f;
  color: #fff;
}

.callback-content .col-md-6.text-end img {
  border-radius: 12px;
  width: 100%;
  height: 600px;
  object-fit: cover;
}


.selected-dial-code {
    color: #000;
}

.intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
    color: #000;
}
.footer_logo.text-center ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.copy_right_text {
    border-top: 1px solid #ffffff66;
}
html {
    overflow-x: hidden;
}
/*Responsive Begin*/

.subscribe-fold {
    padding: 200px 60px 60px 60px;
}
.subscribe-fold .myheading {
    position: relative;
    padding-bottom: 40px;
    font-size: 44px;
    color: #160c28;
    line-height: 1.1em;
    margin-bottom: 30px;
    padding: 0px;
}
.subscribe-fold .mytext {
    text-align: left;
    margin: 0 0 30px;
    padding: 0px;
    font-size: 14px;
    line-height: 20px;
    width: 75%;
}
.subs-pac {
    box-shadow: 0 3px 30px #0000001f;
    display: block;
    width: 100%;
    text-align: center;
    height: 505px;
    margin: 0 0 60px;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-radius: 10px;
    padding: 75px 0 0;
}
.subscribe-fold h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 400;
    position: relative;
    text-transform: capitalize;
    font-weight: 800;
    width: 80%;
        margin: 0 auto 20px;
    text-align: center;
    color: #000;
}
.subs-pac h6 {
    color: #36a94a;
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
    line-height: 0.9;
    margin: 30px 0 0;
    position: relative;
    padding: 0 20px;
}
.subs-pac h6 span.old {
    position: absolute;
    right: 0;
    left: 0;
    top: -30px;
    text-decoration: line-through;
    font-weight: bold;
    margin: 0;
    font-size: 16px;
}
.subs-pac h6 span {
    font-size: 16px;
    color: #687087;
    display: inline-block;
    margin: 30px 0 0;
    padding: 0;
    position: relative;
    line-height: 1.3;
}
.subs-pac h6 span {
    font-size: 16px;
    color: #000;
    display: inline-block;
    margin: 30px 0 0;
    padding: 0;
    position: relative;
    line-height: 1.3;
}
.subs-pac a.ordrrrr {
    text-align: center;
    margin: 30px auto 0;
    border: none;
    padding: 14px 60px;
    color: #ffffff;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);
    font-family: var(--heading-font-family);
}
.subs-pac .actions {
    border-top: 1px solid #eeeeee;
    padding: 0px 0;
    margin: 40px 0 0;
    position: relative;
}
.subs-pac .actions a.chatbtn {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 0px;
    display: inline-block;
    color: #000000;
    margin: 0px;
}
.subs-pac .actions a.numberbtn {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 0px;
    color: #000000;
    display: inline-block;
    margin: 0px;
}
.subscribe-fold .table-packages .head {
    width: 100%;
}
.subscribe-fold .table-packages .head h5 {
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    display: inline-block;
    color: #160c28;
}
.subscribe-fold .table-packages .body ul li {text-align: left;padding: 14px 0 14px 0;border-bottom: 1px solid #eaeaea;width: 95%;list-style: none;margin-left: 0;position: relative;}
.subscribe-fold .table-packages .body ul li h6 {font-size: 16px; font-weight: 400; margin: 0; padding: 0; display: inline-block;
}
.subscribe-fold .table-packages .body ul li span.tick {font-size: 20px;color: #1fab4f;position: relative;display: block;margin: 0;padding: 0;text-align: center;width: 30px;height: 32px;line-height: 1.6;float: right;right: 0;position: absolute;top: 14px;}
.subscribe-fold .table-packages .body ul li span.tick:before {font-family: "fontawesome"; content: "\f00c"; position: absolute; top: -8px; }

.subscribe-fold .table-packages .body .subscription-list {height: 430px;margin-top: 20px;padding: 0;overflow-y: scroll;}
.subs-pac.bronze:hover {background: linear-gradient(135deg, #00A651 0%, #95bf47 50%, #004c3f 100%);}
.subs-pac.bronze:hover h6 {color: #fff;}
.subs-pac.bronze:hover h3 {color: #fff;}
.subs-pac.bronze:hover .old {color: #fff;}
.subs-pac.bronze:hover span {color: #fff;}
.subs-pac.bronze:hover .ordrrrr {background-color: #fff; color: #000; }
.subs-pac.bronze:hover .chatbtn, .subs-pac.bronze:hover .numberbtn {color: #fff; }
.subs-pac.bronze:hover .chatbtn, .subs-pac.bronze:hover .numberbtn {color: #fff; }
.pkge-detail header .menu ul li a{color: #222;}

.list-scroll{height: 155px;}
.ticklist2.list-scroll{height: 146px;}

body.pak-detail-body header {
    background: #272727;
}
a.vdbuttn {
    display: block;
    text-align: center;
    margin: 10px 0 10px 0;
    color: #1fab4f;
    font-weight: 700;
    text-decoration: underline;
}
@media (max-width: 1600px) {
    
.banner__right img {
    width: 670px;
}

.cta_right_img {
    position: absolute;
    right: 50px;
}

.choose_sec_main{
    overflow: hidden;
}

.choose_sec_box h2{
    font-size: 19px;
}

.choose_sec_box p {
    font-size: 15px;
    line-height: 27px;
}

.cta_sec_content h2{
    font-size: 38px;
}
    
}

@media (max-width: 1440px) {

.banner__right img {
    width: 600px;
}

.banner_content_sec h2{
    font-size: 54px;
    line-height: 70px;
}

.cta_right_img{
    right: 0px;
}

.services_boxes p {
    font-size: 14px;
    line-height: 24px;
}
    
}

@media (max-width: 1366px) {

.web_head h2 {
    font-size: 32px;
}

.web_head p{
    font-size: 16px;
    line-height: 28px;
}

.cta_sec_content h2{
    font-size: 34px;
}

.cta_sec_content p{
    width: 80%;
}

.web_head h2 {
    font-size: 29px;
}
    
}




@media (max-width: 1200px) {

.book_table ul li{
  padding-left: 10px;
}

.book_table ul li a {
    font-size: 24px;
}

.banner_content_sec h2 {
    font-size: 45px;
    line-height: 60px;
}

.banner_content_sec p {
    font-size: 17px;
}

.banner-btn ul li a {
    font-size: 22px;
}

.number ul li a {
    font-size: 45px !important;
}

.banner__right img {
    width: 560px;
}

.banner__right {
    left: -90px;
}

.custom_qoute p {
    font-size: 19px;
    line-height: 32px;
}

.btn_custom a{
    font-size: 15px;
}

.package-box .package-top .h5 {
    font-size: 26px;
}



.web_head h2 {
    font-size: 30px;
}

.empowers_boxes_sec h3 {
    font-size: 18px;
}

.empowers_boxes_sec p {
    font-size: 13px;
    line-height: 23px;
}

.empowers_boxes_sec {
    min-height: 410px;
}


.expert_content h1 {
    font-size: 30px;
    line-height: 45px;
}

.expert_content p {
   font-size: 15px;
}


.expert_content:before{
  width: 820px;
  height: 710px;
}

.expert_content {
    position: relative;
    z-index: 999;
    padding-top: 90px;
    padding: 20px 70px 0px 140px;
}

.web_head p {
    font-size: 17px;
    width: 100%;
    margin: 0 auto;
}

.choose_sec_box h2 {
    font-size: 23px;
}

.choose_sec_box p {
    font-size: 15px;
    line-height: 25px;
}

.choose_sec_box{
  min-height: 340px;
}

.cta_sec_content h2 {
    font-size: 33px;
}

.cta_sec_content h3 {
    font-size: 25px;
}

.cta_sec_content p {
    font-size: 15px;
    line-height: 27px;
    width: 90%;
}

.cta_sec_content {
    width: 90%;
}

.cta_right_img img {
    width: 80%;
    position: relative;
    right: -50px;
}

.cta_right_img {
    right: 0;
}

.accordion_head h2 {
    font-size: 28px;
    line-height: 35px;
}

.accordion_head p {
    font-size: 15px;
}

.book_accordion .card-body {
    font-size: 14px;
    line-height: 22px;
}

.bg_author {
    padding: 40px 40px 40px;
}

.portfolio_boxes a figure {
    margin-bottom: 0;
    height: 330px;
}

.portfolio_Sec_main .container-fluid {
    padding: 0 15px;
}

.choose_sec_main {
    overflow: hidden;
}

.bg_faq_right img {
    width: 100% !important;
}

.footer_logo p {
    font-size: 14px;
    line-height: 25px;
}

.footer_logo ul li {
    font-size: 16px;
}

.review_hme_box p {
    font-size: 15px;
}

.review_hme_box {
    min-height: 470px;
}

.faq_sec_main::after {
    height: 720px;
    width: 615px;
    transform: translateY(-70%);
}

img.gr-1 {
    right: 0;
    top: 33%;
}


img.gr-2 {
    bottom: 170px;
    left: -2px;
}

.expert_content {
    position: relative;
    z-index: 99;
}



}

@media (max-width: 1024px) {
    
.number ul li a {
    font-size: 31px !important;
}

.banner-btn ul li a {
    font-size: 16px;
    padding: 0 17px 20px 0;
}

.banner-btn ul li:after{
    right: 13px;
}

.banner__right img {
    width: 520px;
}

.head_trust h2{
    font-size: 36px;
}

.web_head p {
    font-size: 15px;
}

.cta_sec_main{
        background-size: cover;
}


.banner_content_sec h2 {
    font-size: 39px;
    line-height: 50px;
}

.logo-main-sec {
    display: inline-block;
    width: 50%;
}

.logo-main-sec img {
    width: 100%;
}

.counter_logo span {
    font-size: 10px;
}

.counter_logo {
    padding-left: 4px;
}

header.menu_fixed .logo-main-sec img {
    width: 100%;
}

.expert_content {
    z-index: 9;
}

.choose_sec_box h2 {
    font-size: 19px;
}


.expert_content {
    padding: 20px 70px 0px 40px;
}

.expert_content p {
    font-size: 14px;
    line-height: 24px;
}

.expert_content h1 {
    font-size: 30px;
    line-height: 34px;
}

.cta_right_img img {
    width: 78%;
    position: relative;
    right: -100px;
}

.cta_sec_content h2 {
    font-size: 27px;
    line-height: 40px;
}

.package-box .contact-part p, .contact-part a {
    font-size: 12px;
    line-height: 12px;
}

.package-box .contact-part > div:before {
    height: 30px;
    right: 5px;
}

.review_hme_box {
    min-height: 470px;
     padding: 30px 20px 15px;
}

.faq_sec_main::after {
    height: 800px;
    width: 535px;
    transform: translateY(-52%);
}

img.gr-1 {
    right: -50px;
    top: 37%;
}

}

@media (max-width: 992px) {

.banner_content_sec h2 {
    font-size: 30px;
    line-height: 40px;
}

.banner-btn{
    padding-left: 110px;
}

.banner_content_sec p {
    font-size: 16px;
}

.banner-btn {
    padding-top: 10px;
}

.book_table ul li a {
    font-size: 13px;
}

.book_table ul li {
    padding-left: 5px;
}

.banner-btn ul li a {
    font-size: 16px;
    padding: 10px 20px;
}

.banner-btn ul li:after {
    right: 7px;
    top: 10px;
}

.custom_qoute{
        margin: 50px 40px;
}

.custom_qoute_head {
    padding-left: 12px;
}

.custom_qoute p {
    font-size: 18px;
}

.book_table ul li a {
    font-size: 26px;
}

.banner_sec_main {
    min-height: 670px;
}

.form_footer_head h2{
    font-size: 22px;
}

.empowers_boxes_sec {
    min-height: 420px;
}

.empowers_boxes_sec p {
    font-size: 15px;
    line-height: 26px;
}

.expert_content {
    padding: 20px 70px 0px 60px;
}

.expert_content h1 {
    font-size: 30px;
    line-height: 35px;
}

.expert_content p {
    font-size: 14px;
    line-height: 25px;
}

.expert_content:before {
    width: 680px;
    height: 590px;
    right: 10px;
}

.experts_sec_main {
    padding: 135px 0;
}

.choose_sec_box p {
    font-size: 14px;
    line-height: 25px;
}

.choose_sec_box h2 {
    font-size: 18px;
}

.cta_right_img img {
    width: 70%;
    position: relative;
    right: -110px;
}

.cta_sec_content h2 {
    font-size: 26px;
    line-height: 35px;
}

.web_head p {
    font-size: 15px;
    line-height: 30px;
}

.package-box .package-top h4 {
    font-size: 16px;
}

.package-box .cutprice {
    display: block;
    font-size: 16px;
}

.package-box .package-top .h5 {
    font-size: 24px;
}

.package-box ul li {
    font-size: 13px;
}

.package-box .contact-part p, .contact-part a {
    font-size: 12px;
    line-height: 13px;
}

.package-box .contact-part > div:before{
    height: 30px;
}

.btn_packages a {
    padding: 12px 35px;
    font-size: 16px;
}

.services_boxes h2 {
    font-size: 17px;
}

.services_boxes p {
    font-size: 13px;
    line-height: 23px;
}

.services_boxes {
    padding-bottom: 30px;
}

.review_hme_box p {
    font-size: 14px;
}

.review_hme_box {
    min-height: 480px;
}

.accordion_head p {
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
}

.accordion_head h2 {
    font-size: 25px;
    line-height: 30px;
}

.book_accordion .card-header {
    padding: 10px 20px;
}

.book_accordion .card h5 button {
    font-size: 15px;
}

.book_accordion .card-body {
    font-size: 13px;
    line-height: 20px;
}

.portfolio_boxes a figure {
    margin-bottom: 0;
    height: 260px;
}

.tab_btn ul li a {
    font-size: 16px;
}

.lead_popup .modal-content{
  padding: 40px 20px 10px;
}

}

@media (max-width: 768px) {

.banner_content_sec h2 {
    font-size: 25px;
    line-height: 34px;
}

.banner_content_sec p {
  font-size: 14px;
  line-height: 27px;
}

.banner-btn ul li a {
    font-size: 15px;
    padding: 8px 25px;
}

.banner-btn ul li {
    display: inline-block;
    padding: 0 10px 0 0;
}

.logo-main-sec img {
    width: 70% !important;
}

.book_table ul li {
    padding-left: 3px;
}

.book_table ul li a {
    font-size: 11px;
    font-weight: bold;
}

.book_table ul li a img {
    padding-right: 6px;
    width: 30px;
}

.banner_content_sec {
    padding: 150px 50px 0 0;
}

.banner_sec_main {
    min-height: 510px;
}

.web_head h2 {
    font-size: 23px;
}

.expert_content:before{
  display: none;
}

.expert_content {
    padding: 20px 0 0px 0;
}

.expert_content h1 {
    color: var(--white);
}

.expert_content p {
    color: var(--white);
    text-shadow: none;
}

.experts_sec_main {
    padding: 35px 0 50px;
}

.choose_sec_main .container-fluid {
    padding: 0 20px;
    position: relative;
}

.choose_sec_box {
    margin: 0 20px;
    min-height: 400px;
}

.choose_sec_main .container-fluid {
    padding: 0 40px;
    position: relative;
}

.cta_right_img img {
    width: 57%;
    position: relative;
    right: -210px;
}

.cta_sec_content h2 {
    font-size: 23px;
    line-height: 31px;
}

.cta_sec_content p {
    font-size: 15px;
    line-height: 27px;
    width: 100%;
}

.cta_sec_content {
    position: relative;
    z-index: 999;
}

.cta_sec_content p {
    font-size: 13px;
    line-height: 24px;
}

.accordion_head h2 {
    font-size: 19px;
    line-height: 25px;
}

.accordion_head p {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
}

.book_accordion .card-body {
    font-size: 11px;
    line-height: 19px;
}

.book_accordion .card-header {
    padding: 7px 20px;
}

.web_head p {
    font-size: 14px;
    line-height: 27px;
}

.pencil_img {
    display: none;
}

.review_hme_box {
    min-height: 430px;
}

.copy_right_text p{
  font-size: 13px;
}

.form_footer_head h2 {
    font-size: 21px;
}

.empowers_boxes_sec {
    min-height: 440px;
}

.services_boxes h2 img{
    width: 47px;
}

.process_sec_main .row.pt-5 {
    padding-top: 20px!important;
}

.padding_70 {
    padding: 50px 0;
}

.review_hme_sec {
    padding: 0;
}

.empowers_boxes_sec p {
    font-size: 13px;
    line-height: 26px;
}

.empowers_sec_main:after{
  height: 240px;
}

.expert_content {
    padding: 0;
}

.book_accordion .card h5 button {
    font-size: 13px;
}

.footer_logo p {
    font-size: 13px;
    line-height: 21px;
}

.footer_logo ul li{
  padding: 0px 10px 20px 30px;
  font-size: 14px;
}

.cta_sec_content {
    position: relative;
    z-index: 99;
}

header .container{
  max-width: 820px;
}

.book_table ul li a.btn_custom {
    background: var(--blue);
    padding: 11px 23px;
}

.counter_logo span {
    font-size: 8px;
}

header {
    background: transparent;
    padding: 10px 0;
}

.book_table {
    text-align: right;
    position: relative;
    top: 10px;
}

.banner_content_sec {
    padding: 100px 50px 0 0;
}

.banner_sec_main:before{}

.banner__right {
    display: none;
}

.banner_sec_main .col-sm-7 {
    max-width: 100%;
    flex: 100%;
}

.logo-main-sec {
    display: inline-block;
    width: 100%;
}

.book_table ul li a {
    font-size: 25px;
    font-weight: bold;
}

.banner_sec_main {
    min-height: 690px;
}

.banner_content_sec {
    padding: 130px 50px 0 0;
}

.banner-btn ul li a {
    font-size: 23px;
    padding: 8px 25px;
}

.number ul li a {
    font-size: 44px !important;
}

.head_trust h2 {
    font-size: 28px;
}

.cta_right_img img{
    display: none;
}

.cta_sec_main .col-lg-8.col-md-8.col-sm-12 {
    max-width: 100%;
    flex: 100%;
}

.cta_sec_content p {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 20px;
}

.money {
    position: absolute;
    left: 0;
    top: -14px;
}

}

@media (max-width: 576px) {
   .footer_logo.text-center ul {
    display: block;
}

.callback-content .col-md-6.text-end img {
    height: 300px;
    margin-top: 20px;
}

.row.align-items-center.callback-content {
    padding: 30px 0 0;
}

.banner_content_sec h2 {
    font-size: 34px;
    line-height: 41px;
    margin-bottom: 10px;
}

.book_table ul li a.btn_custom{
  display: none;
}

.banner_sec_main {
    min-height: 610px;
}

.banner_content_sec p {
    font-size: 13px;
    line-height: 24px;
}

.banner_content_sec {
    padding: 100px 50px 0 0;
}

.banner-btn ul li a {
    font-size: 20px;
    padding: 5px 16px;
}

.number ul li a {
    font-size: 44px !important;
    margin-bottom: 15px;
}

.logo-main-sec img {
    width: 100% !important;
}

footer .col-sm-5 {
    max-width: 100%;
    flex: 100%;
}

footer .col-sm-6 {
    margin: 0 !important;
    max-width: 100%;
    flex: 100%;
    margin-top: 10px !important;
}

.copy_right_text p {
    font-size: 16px;
}


.banner-btn {
    padding-left: 130px;
}

.copy_right{
    text-align: center;
}

.pay_icon {
    text-align: center;
}

.banner-btn ul li {
    display: inline-block;
    padding: 0 4px 0 0;
}

header {
    background: transparent;
    padding: 10px 0;
}


.empowers_boxes_sec h3 {
    font-size: 14px;
}

.empowers_boxes_sec h3 {
    font-size: 14px;
}

.expert_content h1 {
    font-size: 27px;
    line-height: 35px;
}

.cta_right_img {
    right: 0;
    display: none;
}

.choose_sec_box {
    margin: 0 20px;
    min-height: auto;
}

.bg_faq_right{
  display: none;
}

.review_hme_box {
    min-height: auto;
}

.package-box .package-top .h5 {
    font-size: 21px;
}

.package-details p {
    font-size: 12px;
}

.package-box .contact-part > div {
    position: relative;
    width: 100% !important;
    padding-bottom: 10px;
    text-align: center;
}

.package-box .contact-part > div:before{
  display: none; 
}

.w-50.pl-2 {
    padding: 0 !important;
}

.floating_widget{
  display: none;
}

.cta_sec_content {
    position: relative;
    z-index: 99;
}

.portfolio_Sec_main .col-sm-3.p-0 {
    width: 50%;
}

.experts_sec_main{
  display: none;
}

.cta_sec_main, .faq_sec_main{
  display: none;
}

.banner_content_sec {
    padding: 150px 10px 0 0;
    text-align: left;
}

header .col-md-5.col-5 {
    max-width: 100% !important;
    width: 100%;
    flex: 100%;
}

header .col-md-7.col-7 {
    max-width: 100%;
    flex: 100%;
    text-align: center;
    width: 100%;
}

.banner_right_img {
    text-align: center;
    background-color: #f3f3f3;
    padding: 200px 0 0;
}

.book_table {
    text-align: center;
    position: relative;
    top: 0;
    padding: 15px 0;
}

.counter_logo img {
    width: 70%;
    filter: brightness(0);
}

.portfolio_boxes a figure {
    margin-bottom: 0;
    height: 430px;
}

.lead_popup .modal-content{
      padding: 40px 0px 10px;
}

.lead_popup h2 {
    font-size: 20px;
}

.empowers_sec_main, .custom_qoute, .combo_packages_sec{
    display: none;
}

}


@media (max-width: 500px) {

footer .col-sm-6.offset-1 {
    margin: 0;
}

.package-box ul.pkg-list {
    height: 260px;
}

.modal-dialog{
    width: 90%;
    margin: 30px auto;
}

.trust-sec {
    padding: 15px 0;
    text-align: center;
    display: none;
}

header .col-md-4.col-4 {
    max-width: 100% !important;
    width: 100%;
    flex: 100%;
}

.logo-main-sec img {
    width: 50% !important;
}

.logo-main-sec {
    text-align: left;
    padding: 10px 0;
    display: inline-block;
    width: 45%;
}

.book_table {
    text-align: center;
    padding: 0;
}

.counter_logo {
    width: 50%;
    padding-left: 10px;
}

.logo-main-sec img {
    width: 100% !important;
}


header .col-md-8.col-8 {
    max-width: 100%;
    flex: 100%;
    text-align: center;
    width: 100%;
}


.counter_logo span {
    padding-left: 12px;
    font-size: 10px;
    font-weight: 600;
}

.book_table ul li a.btn_custom{
  display: none;
}

.banner_right_img{
  display: none;
}

.banner_sec_main {
    min-height: 500px;
    padding-top: 50px;
    background-size: cover;
    background-position: center;
}

.expert_content p {
    color: var(--white);
    text-shadow: none;
    width: 100%;
}

.banner-btn ul li a {
    font-size: 14px;
    padding: 8px 27px;
}

.cta_sec_main{
  background-size: cover;
}

.bg_author {
    padding: 40px 20px 30px;
}

.book_accordion .card-body {
    font-size: 13px;
    line-height: 22px;
}

.portfolio_boxes a figure {
    margin-bottom: 0;
    height: 410px;
}

.copy_right_text {
    text-align: center;
}

.pay_icon {
    text-align: center;
}

.banner-btn ul li a {
    font-size: 14px;
    padding: 8px 24px;
}

.package-box .contact-part > div {
    position: relative;
    width: 49% !important;
    padding-bottom: 0;
    text-align: unset;
    display: inline-block;
}

.w-50.pl-2 {
    padding: unset !important;
}

.package-box .contact-part p, .contact-part a {
    font-size: 13px;
    line-height: 13px;
}

.package-box .contact-part > div:before{
  display: block;
}

.tab_btn ul li a {
    font-size: 13px;
    padding: 10px 16px;
}

.trust-sec {
    padding: 5px 0;
}

.web_head h2 {
    font-size: 19px;
}

.package-box .contact-part > div:before {
    right: 11px;
}

.book_table ul li a {
    font-size: 14px;
    font-weight: bold;
}

.expert_content{
  z-index: unset;
}

.book_table ul li a {
    font-size: 28px;
    font-weight: bold;
    display: none;
}

.money {
    position: relative;
    left: 0;
    top: -20px;
}

.number ul li a {
    font-size: 38px !important;
    margin-bottom: 15px;
    padding: 8px 0 !important;
}

.banner-btn ul li a {
    font-size: 18px;
    padding: 8px 34px 0 0;
}

.banner-btn ul li:after {
    right: 15px;
    top: 8px;
}

.trust-sec {
    padding: 15px 0;
    text-align: center;
}

.process_sec_main .web_head h2, .process_sec_main .web_head p {
    text-align: left;
}

.banner_content_sec {
    padding: 140px 10px 50px 0px;
    text-align: left;
}

.banner_sec_main {
    min-height: 520px;
    padding-top: 0;
    background-size: cover;
    background-position: center;
}

.banner-btn {
    padding-left: 0;
}


}


@media (max-width: 390px) {
    
.banner_content_sec h2 {
    font-size: 25px;
    line-height: 31px;
}

ul.point__banner li {
    font-size: 15px;
    padding-bottom: 9px;
}

.number ul li a {
    font-size: 33px !important;
}

.banner-btn ul li a {
    font-size: 15px;
    padding: 8px 29px 0 0;
}


    
}


.privy-main h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #32ae4d;
}

.privy-main h6 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #32ae4d;
}
