:root {
    /*--primaryy-color: #31304D;
    --secondary-color: #B6BBC4;*/
    --primaryy-color: #910000;
    /*--secondary-color: #FF31A0;*/
    --secondary-color: #2E3245;
    --font-color: #878787;
    --heading-color: #3b3b3b;
    --pricing-package-bg: #fff7f5;
    --pricing-package-bg-hover: #f9f5fe;
    --footer-bg: #31304D;
    --bg-sections: #f8f5fe;
    --bg-sections-2: #fff7f5;
    --bg-sections-dark: #ece6fa;
    --bg-light-color: #feebe5;
    --bg-package-color: #615E9A;
}

body{
  font-family: 'Poppins', sans-serif;
  color: #878787;
}

h1,h2,h3,h4,h5,h6{
  color: var(--heading-color);
}

/* Spacers */

.space-p-t{
  padding-top: 100px;
}

.space-p-b{
  padding-bottom: 100px;
}

.space-p-tb{
  padding: 100px 0;
}

.space-m-t{
  margin-top: 100px;
}

.space-m-b{
  margin-bottom: 100px;
}

.space-m-tb{
  margin: 100px 0;
}

.section-bg{
  background-color: var(--bg-sections);
}
.section-bg-dark{
  background-color: var(--bg-sections-dark);
}
.section-bg-peach{
  background-color: var(--bg-sections-2);
}
/* Spacers End */

.text-color-pri{
  color: var(--primaryy-color);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    text-transform: capitalize;
}

/* Button */
.ctm-pri-btn {
    background-color: var(--primaryy-color);
    padding: 8px 20px;
    border: 1px solid var(--primaryy-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    display: inline-block;
}

.ctm-pri-btn:hover{
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primaryy-color);
}
/* Button */

/* topbar Start */
.topbar{
  padding: 8px 0;  
  background-color: var(--primaryy-color);
  position: relative;
}
.topbar:after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  background-color: #feebe5;
  z-index: 1;
  width: 50%;
  height: 100%;
}
.ctm-bg-pri{
    background-color: var(--primary-color);
}

.ctm-bg-sec{
    background-color: var(--secondary-color);
}

.sign-in-search a{
  text-decoration: none;
  font-weight: 500;
}

.call-now span{
  font-weight: 500;
}

.tb-search-btn{
  background-color: var(--primaryy-color);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  color: #fff;
  margin-right: 15px;
}

.tb-sign-in{
  text-transform: uppercase;
  color: #000;
}

/* .ctm-bg-light{
  background-color: #feebe5;
} */

.sign-in-search {
  position: relative;
  z-index: 2;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}
/* topbar end */


/* Navbar */
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
  color: var(--primaryy-color);
}

.navbar-light .navbar-nav .nav-link {
  color: #818080;
  font-weight: 500;
}

.ctm-navbar-brand{
  padding: 5px 0;
}
    .ctm-navbar-brand img {
        width: 200px;
    }

    @media only screen and (min-width:1200px) {
        .dropdown-menu[data-bs-popper] {        
        left: -50%;        
    }

    .dropdown-menu li a:hover {
        background-color: var(--primaryy-color);  
        color:#fff;
    }

    .navbar-light .navbar-nav .nav-link:hover {
        color: var(--primaryy-color);
    }
    li.nav-item {
        padding: 0 12px;
    }
  li.nav-item .nav-link:after {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    background: transparent;
    margin: 0 auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    position: relative;
    top: 12px;
  }
  
  li.nav-item .nav-link:hover:after{
    background-color: var(--primaryy-color);
  }

  li.nav-item .nav-link.active:after{
      background-color: var(--primaryy-color);
  }

  li.nav-item{
    position: relative;
  }
    li.nav-item.contacts .btn {
        background: var(--primaryy-color);
        color: #fff;
    }
    li.nav-item.contacts .btn i {
        margin-right: 10px;
    }
    li.nav-item.contacts .btn:hover {
        background: var(--secondary-color);
        /*color: var(--primaryy-color);*/
    }

  /* li.nav-item:after {
    content: "";
    width: 100%;
    height: 40px;
    display: block;
    position: absolute;
    bottom: -49px;
    background:transparent;
    z-index: -1;
    border-radius: 30px 30px 0 0;
    max-width: 70px;
    -webkit-border-radius: 30px 30px 0 0;
    -moz-border-radius: 30px 30px 0 0;
    -ms-border-radius: 30px 30px 0 0;
    -o-border-radius: 30px 30px 0 0;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

li.nav-item:hover:after{
  background: #fb633275;
} */
  
}


/* Navbar End*/


/* Main Banner */

.ctm-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    /* background-color: #fb6332; */
    /*height: 775px;*/
    /*New height given to make header/banner in one scroll*/
    height: 690px;
    display: flex;
    align-items: center;
    background-position: center;
}

.banner-title{
  color: #fff;
  font-size: 3rem;
}

.banner-cont-holder {
  margin-top: 150px;
}

.form-holder {
  background: #fff;
  padding: 12px 50px 12px 12px;
  position: relative;
  border-radius: 0 33px 33px 20px;
}

.banner-cont-holder p{
  font-size: 22px;
}
    .banner-cont-holder p span, .banner-cont-holder span {
        font-size: 13px;
        line-height: 1;
    }
    .banner-form-title {
        display: inline-block;
        /*background: var(--primaryy-color);*/
        background: var(--secondary-color);
        padding: 8px 30px 8px 8px;
        border-radius: 0px 25px 25px 0px;
        -webkit-border-radius: 0px 25px 25px 0px;
        -moz-border-radius: 0px 25px 25px 0px;
        -ms-border-radius: 0px 25px 25px 0px;
        -o-border-radius: 0px 25px 25px 0px;
        text-transform: uppercase;
        /*color: var(--primaryy-color);*/
        color: var(--bs-light);
        font-weight: 600;
    }
.ctm-form{
    display: flex;  
    align-items: center;
    /* position: relative; */
}

.banner-form-btn{
  background-color: var(--primaryy-color);
  color: #fff;
  padding: 15px;

}

.ctm-col input {
  border: none;
  border-bottom: 1px solid #d6d6d6;
  border-radius: 0;
}

.banner-form-btn {
    background-color: var(--primaryy-color); !important;
    /*color: #fff;*/
    padding: 0 !important;
    width: 35px;
    height: 35px;
    border: none;
    position: absolute;
    right: 29px;
    bottom: -12px;
    transition: 0.5s ease-in;
    border-radius: 15px !important;
} 
.banner-form-btn-1 {
    right: -36px;
    bottom: 0px;
}
.banner-form-btn-2 {
    right: 24px;
    bottom: 13px;
}
.banner-form-btn:hover {
}

.ctm-col {
  margin-right: 10px;
}

.ctm-list {
    list-style: none;
    padding-left: 35px;
}

.ctm-list li{
  margin-bottom: 8px;
}
.ctm-list li:before{
 
  display: inline-block;
  content: "\f061"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  margin-right: 14px;
  color: var(--white-color);
  margin-left: -29px; 
}


/* Main Banner End */
.timeline {
  position: relative;
  max-width: 698px;
}

/* Why choose Us */
.timeline:after {
  content: "";
  width: 2px;
  /* background: red; */
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  border: 0;
  border-left: 1px solid var(--primaryy-color);
  border-style: dashed;
  height: calc(100% - 59px);
}

.wch-list{
  list-style: none;
  padding-left: 12px;
}

.wch-list li {
  position: relative;
  margin-bottom: 50px;
}

.wch-list li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primaryy-color);
  left: -16px;
  top: 3px;
  display: inline-block;
  position: absolute;
  z-index: 1;
  border-radius: 50px;
}

.wch-list h4{
  font-size: 25px;
  font-weight: 500;
}

.ctm-image-holder {
    position: relative;
    text-align: right;
    border-radius: 12px;
    padding: 11px;
    background: #fafafa;
    background: linear-gradient(90deg,rgba(250, 250, 250, 1) 0%, rgba(145, 0, 0, 0.75) 100%);
}

    .ctm-image-holder.sty1 {
        /*background: rgb(229,213,253);*/
        /*background: rgb(182, 187, 196);*/
        /*background: linear-gradient(90deg, rgba(231,231,231,1) 26%, rgba(255,255,255,1) 100%);*/
        /*background: linear-gradient(90deg, rgba(182, 187, 196) 26%, rgba(49, 48, 77) 100%);*/
        /*background: linear-gradient(90deg, rgba(229, 228, 226) 25%, rgba(87, 86, 234) 100%);*/
        /*background: #F00028;*/
        background: #fafafa;
        background: linear-gradient(90deg,rgba(250, 250, 250, 1) 0%, rgba(145, 0, 0, 0.75) 100%);
    }

.wc-image {
  border-radius: 12px;
  width: 100%;
  /*box-shadow: 0px 0px 0px 11px #e6d7fd;*/
}

.why-choose-us h3, .why-choose-us h4{
  font-weight: 600;
}

.wc-img-tag {
  width: 251px;
  display: flex;
  text-align: left;
  position: absolute;
  left: -50px;
  top: 80%;
  background-color: #f6f2ff;
  padding: 11px 15px;
  font-size: 14px;
  color: #000;
  border-radius: 9px;
  align-items: center;
}

.wc-icon {
  margin-right: 10px;
}

.wc-img-tag:before {
  content: "";
  width: 39px;
  height: 7px;
  background: var(--primaryy-color);
  display: block;
  position: absolute;
  top: -6px;
  left: 35px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
/* Why choose us end */


/* Boxes Section */

.ctm-boxes-section{
  position: relative;
}

.ctm-boxes-section:after {
  content: "";
  height: 120px;
  width: 100%;
  background-color: var(--primaryy-color);
  top: 58px;
  display: block;
  position: absolute;
  z-index: -1;
}

.ctm-box{
  min-height: 400px;
  background-color: #f8f5fe;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  padding: 22px 30px;
  text-align: center;
  position: relative;
}

.ctm-box-img-holder {
  min-height: 149px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.ctm-box:hover {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    background-color: var(--primaryy-color);
    color: #fff;
    min-height: 440px;
    z-index: 2;
    margin-top: -20px;
    box-shadow: 0px 0px 43px 0px rgba(14, 26, 47, 0.36);
}

.ctm-box h4{
  font-size: 20px;
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
}

.ctm-box .ctm-box-title {
    font-size: calc(24px + (32 - 24) * ((100vw - 300px) / (1920 - 300)));    
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    font-weight: bold;
}

.cpr-icon{
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
}

.ctm-box:hover .cpr-icon{
  filter: invert(100%) sepia(21%) saturate(1%) hue-rotate(145deg) brightness(108%) contrast(101%);
}


.ctm-box:hover h4, .ctm-box:hover .ctm-box-title{
  color: #fff;
}

.ctm-box span{
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
}

.ctm-box:hover span{
  color: #fff;
}

/* Boxes Section */




/* PRICING PACKAGES START*/
.pkg-header {
  margin-bottom: 10px;
}

.p-package {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%2331304D' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    /*background-color: var(--pricing-package-bg);*/
    background-color: var(--secondary-color);
    /*background-color: var(--bg-package-color);*/
 /*   background-color: var(--primaryy-color);*/
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    overflow: hidden;
}

.p-package h4 {
  font-size: 35px;
  font-weight: bold;
  color: var(--bs-light);
  text-transform: uppercase;
}

@media (max-width: 991px) {
    .p-package h4 {
        font-size: 26px;
    }
}

.slae-price {
  font-size: 23px;
  opacity: 0.5;
}

.p-package {
  padding: 40px 20px;
}
.p-package .d-newPKG {
    display: flex;
}
.p-package .d-newPKG .pkg-header {
        display: flex;
    flex-direction: column;
    max-width: 35%;
    flex: 0 0 35%;
    padding-right: 25px;
}
.p-package .d-newPKG .pkg-content{
    display: flex;
    max-width: 65%;
    flex: 0 0 65%;
    flex-direction: column;
}

.p-price h4 {
    margin-bottom: 0;
}

.p-tagline {
    font-size: 12px;
    line-height: 12px;
    color: var(--bs-light);
    content: close-quote;
}

.pkg-header p{
  font-weight: 500;
  /*color: #88919c;*/
  color: var(--bs-light);
}

.p-package .doller-sign{
  font-size: 16px;
}

.pkg-list li {
  margin-bottom: 8px;
  color: #fff;
  font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
}

.pkg-list li .innerlist li:before {
    display: none;
}

.pkg-content {
  /*background-color: #fff;*/
  padding: 20px 8px;
  overflow: auto;
  height: 250px;
}

.pkg-content p {
    font-size: 13px;
}
.pkg-content span {
    color: #fff;
    font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
}


/* Firefox */
.pkg-content {
  scrollbar-width: thin;
  scrollbar-color: #FF6634 #FEF1EE;
}

/* Chrome, Edge and Safari */
.pkg-content::-webkit-scrollbar {
  width: 2px;  
}
    .pkg-content::-webkit-scrollbar-track {
        border-radius: 0px;
        background-color: var(--secondary-color);
    }

        .pkg-content::-webkit-scrollbar-track:hover {
            background-color: var(--secondary-color);
        }

        .pkg-content::-webkit-scrollbar-track:active {
            background-color: var(--secondary-color);
        }

.pkg-content::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: var(--primaryy-color);
}

.pkg-content::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondary-color);
}

    .pkg-content::-webkit-scrollbar-thumb:active {
        background-color: var(--secondary-color);
    }

.pkg-footer {
  padding-top: 21px;
  text-align: center;
  position: relative;
}

.pkg-footer span{
  display: block;
}

.foo-info-box {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid;
  padding-top: 18px;
  color: #ccc;
  position: relative;
}

.pkg-btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    line-height: 14px;
    font-weight: 300;
    font-size: 14px;
}

.pkg-btn:hover{
  color: #fff;
  
}


.pkp-label{
  font-size: 12px;
  /*color: #000;*/
  color: var(--bs-light);
  font-weight: 600;
}

.pkg-link{
  text-decoration: none;
  /*color: var(--primaryy-color);*/
  color: var(--bs-light);
  font-size: 13px;
}

.pkg-btn span{
  display: none;
}

.pkg-line {
  height: 32px;
  width: 1px;
  background-color: #ccc;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
}

.pkg-list {
  list-style: none;
}

.pkg-list {
  position: relative;
  padding-left: 20px;
}

/* .pkg-list li:before{
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: var(--primaryy-color);
} */


.pkg-list li:before {
  content: "";
  /* position: absolute; */
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: #fff;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  margin-left: -15px;
}

/* package hover */

.p-package:hover .pkg-list li:before{
    background-color: var(--secondary-color);
}

.p-package:hover {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23B6BBC4' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    /* background-image: url("data: image/svg+xml,%3csvgwidth='100%25'height='100%25'xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%236f52c3' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e"); */
    /*background-color: var(--pricing-package-bg-hover);*/
    background-color: var(--secondary-color);
    overflow: inherit;
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -moz-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    -o-transform: scale3d(1.1, 1.1, 1.1);
}

.p-package:hover .pkg-header h4{
  color: var(--bs-light);
}

.p-package:hover .pkg-link{
  color: var(--bs-light);
}

    .p-package:hover .pkg-btn {
        z-index: 2;
        background-color: var(--secondary-color);
        border: 3px solid white;
        box-shadow: 0 0 0 2px var(--secondary-color);
        transform: rotate(360deg);
    }

    .p-package:hover .pkg-btn span {
        color: var(--bs-light);
        /*color: var(--primaryy-color);*/
        font-weight: 500;
        display: block;
    }

/* Firefox */
.p-package:hover .pkg-content {
  scrollbar-color: var(--secondary-color) #f8f5fe;
}

.p-package:hover .pkg-content::-webkit-scrollbar-track {
  background-color: #f8f5fe;  
}

.p-package:hover .pkg-content::-webkit-scrollbar-track:hover {
  background-color: #f8f5fe;
}

.p-package:hover .pkg-content::-webkit-scrollbar-track:active {
  background-color: #f8f5fe;
}

.p-package:hover .pkg-content::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
}

.p-package:hover .pkg-content::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondary-color);
}

.p-package:hover .pkg-content::-webkit-scrollbar-thumb:active {
  background-color: var(--secondary-color);
}


/* package hover end */


/* PRICING PACKAGES END*/



/* blocks section */
.tags-holder {
  margin-top: 30px;
}

.tags-holder a{
  display: inline-block;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border: 1px solid var(--primaryy-color);
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 8px 24px;
  text-decoration: none;
  color: #3b3b3b;
  text-transform: uppercase;
  cursor: default;
}

.tags-holder a:hover{
    background-color: var(--primaryy-color);
    color: #fff;
}

.q-icon{
  flex: 1 0 33px;
  max-width: 33px;
  margin-right: 8px;
}

.quotebox {
  display: flex;
  max-width: 350px;
  margin-bottom: 20px;
  align-items: center;  
  background: rgb(193,177,238);
  background: linear-gradient(90deg, rgba(193,177,238,1) 0%, rgba(248,246,253,0.7539390756302521) 74%, rgba(255,255,255,0) 100%);
  padding: 18px;
}

.q-text{
  color: #000;
}

/* blocks section End */


/* Choice Section Start */

.choice-section{
  /*background-color: var(--bg-sections-2);*/
}

.choice-image {
    border-radius: 12px;
    /*box-shadow: 0px 0px 0px 11px #b9ccde66;*/
    box-shadow: 0px 0px 0px 11px var(--secondary-color);
}

.text-block {
  padding: 12px 20px;
  background-color: #fff;
  margin-bottom: 15px; 
  position: relative; 
  z-index: 2;
}
.text-block:hover {
    background-color: var(--primaryy-color)
}
.text-block:hover p, .text-block:hover h5 {
    color: #fff;
}

.blocks-section .pro-content-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    background: #fff;
    padding: 20px;
    border: var(--primaryy-color) dashed 2px;
}

.blocks-section .lg-img {
    width: 100%;
}

@media (max-width: 991px) {
    .blocks-section .pro-content-box {
        margin-bottom: 30px;
        height: auto;
    }
}

.ctm-number {
    position: absolute;
    right: 5px;
    font-size: 6rem;
    /*color: #feebe5;*/
    color: var(--secondary-color);
    z-index: -1;
    display: flex;
    font-weight: 600;
    height: 100%;
    align-items: center;
    top: 0;
}

/* Choice Section end */



/* Ready To Work */

/* .ready-to-work{
    background-color: var(--primaryy-color);
    
} */

.bg-col-pri{
  background-color: var(--primaryy-color);
}

.bg-col-sec{
  background-color: var(--secondary-color);
}

.rw-row {
  display: flex;
}

.rw-col{
  flex:1;
  padding: 20px 15px;
}

.bg-col-pri {
  display: flex;
  justify-content: flex-end;
}

.bg-col-sec {
  display: flex;
  justify-content: flex-start;
}

.rw-cont {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.rw-info{
  color: #FFF;
  margin-right: 20px;
}

.rw-info a{
  text-decoration: none;
  color: #fff;
}

.rw-info span{
  display: block;
  text-transform: uppercase;
}

.rw-icon {
  background-color: #fff;
  font-size: 30px;
  border-radius: 50px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primaryy-color);
}

.rwr-cont {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.rwr-cont .rw-icon {
  margin-right: 20px;
}

.bg-col-sec .rw-icon {
  color: var(--secondary-color);
}

.rw-info a {
  font-size: 22px;
  font-weight: 600;
}
/* Ready To Work End */


/* Testimonials Slider */

.tm-slider-section{
  position: relative;
}

.bg-sub-title{
  background-color: var(--primaryy-color);
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.tm-slide {
  min-height: 350px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #f8f5fe;
  position: relative;
}

/* the slides */
.slick-slide {
  margin: 0 10px;
}
/* the parent */
.slick-list {
  margin: 0 -10px;
}

.tm-content-holder{
  max-width: 650px;
}

.tm-name{
  color: #000;
  font-weight: 600;
}

.tm-star{
  margin-top: 20px;
}

.tm-star i{
  color: var(--primaryy-color);
 }

 .prev-btn {
  position: absolute;
  left: 21%;
  top: 65%;
  /*top: 50%;*/
}

.next-btn {
  position: absolute;
  right: 21%;
  top: 65%;
  /*top: 50%;*/
}

.slick-btn {
    background-color: var(--primaryy-color);
    border: none;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 40px;
    color: #fff;
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
}

.slick-btn:hover {
  background-color: var(--secondary-color);
  color: var(--primaryy-color);
}

.quote-icon-top {
  position: absolute;
  top: 5%;
  left: 5%;
}


.quote-icon-bottom {
  position: absolute;
  bottom: 5%;
  right: 5%;
}
/* Testimonials Slider End */




/* Footer */

.main-footer{
  /* height: 400px; */
  /*background-color: var(--footer-bg);*/
  background: #333;
  padding-top: 50px;
  color: #fff;
}
.main-footer a img {
    width: 250px;
}
    .main-footer img {
        width: 250px;
    }

.main-footer h6 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}

.foo-menu {
  list-style: none;
  padding-left: 0;
}

.foo-menu li{
  margin-bottom: 10px;
}

.foo-menu li a{
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
}

    .foo-menu li a:hover {
        color: var(--primaryy-color);
    }

.copyright {
  border-top: 1px solid #677280;
  text-align: center;
  color: #fff;
  padding: 25px 15px;
  font-size: 14px;
  margin-top: 40px;
  
}

.contact-info-foo {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 20px;
}

.contact-info-foo li {
  margin-bottom: 12px;
}

.contact-info-foo li i{
  color: white !important;
  margin-right: 8px;
}

.payment-cards-img{
  max-width: 182px;
  width:100%;
}

.copyright p{
  margin: 0;  
}

/* Footer End */






/* About Us page */

.inner-banner-cont-holder {
  /*margin-top: 60px;*/
}

.inner-banner{
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-banner-form {
  max-width: 750px;
  position: absolute;
  bottom: -45px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.inner-banner-form .form-holder{
  box-shadow: 0px 0px 43px 0px rgba(17, 17, 21, 0.36);
}

.ctm-box-stitle {
  display: block;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 20px;
  color: #3b3b3b;
}

.ctm-box-ab{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .os-content-holder{
  max-width: 750px;
  padding-left: 100px;
} */

.our-story{
  position: relative;
  min-height: 650px;
  align-items: center;
  display: flex;
}

    .our-story:before {
        width: 33%;
        height: 100%;
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        background-image: url(/assets/images/our-story-girl.webp);
        background-size: cover;
        /*filter: grayscale(1);*/
    }

.ab-img-holder {
  position: absolute;
  left: 25%;
  width: auto;
  height: 600px;
  bottom: 0;
}

.ab-img-holder img {
  height: 100%;
}


/* About Us page End */

.ov-box-span {
  font-weight: 600;
  color: #3b3b3b;
  display: block;
  margin-bottom: 5px;
}


/* Faq Accordion Style */

#faq-accordion .accordion-item{
  background-color: transparent;
}

#faq-accordion .accordion-button{
  background-color: transparent;
  font-weight: 600;
}

#faq-accordion .accordion-button:focus{
  outline: none !important;
  box-shadow:none;
}

#faq-accordion .accordion-button:not(.collapsed){
  background-color: transparent;
}

#faq-accordion .accordion-button:not(.collapsed){
  color: #3b3b3b;
} 

#faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg)
}

/* Faq Accordion Style End */


/* Conatct Page */

.ci-holer {
  margin-bottom: 45px;
}

.cp-form .iti{
  width: 100%;
}

.cp-form input, .cp-form textarea {
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  border-color: #ccc;
}

.cp-form{
  color: #000;
}

/* Conatct Page End */





/* Back To Top CSS */
#btt-button {
  display: inline-block;
  background-color: var(--primaryy-color);
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: 1px solid transparent;
}
#btt-button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;  
  font-style: normal;
  font-size: 1.5em;
  line-height: 45px;
  color: #fff;
}
#btt-button:hover {
  cursor: pointer;
  background-color: var(--secondary-color);
}
#button:active {
  background-color: var(--secondary-color);
}
#btt-button.show {
  opacity: 1;
  visibility: visible;
}
/* Back To Top CSS End */



/* Trademark Monitoring */

.white-box {
  background-color: #fff;
  padding: 30px 20px;
  box-shadow: 0px 0px 29px 0px rgba(5, 92, 147, 0.35);
  border-radius: 10px;
}

.white-box {
  background-color: #fff;
  padding: 30px 20px;
  box-shadow: 0px 0px 29px 0px rgba(5, 92, 147, 0.35);
  border-radius: 10px;
  min-height: 400px;
}

.ask-box-title{
  margin-bottom: 30px;
}

.agent-img {
  border-radius: 50%;
  margin-bottom: 18px;
}

.span-phone-no{
  font-size: 30px;
  display: block;
  font-weight: 500;
  color: var(--secondary-color);
}


.ask-box{
  color:#1d1d1d;
  padding: 0 20px;
  position: relative;
}

.ask-box:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #cacaca;
  position: absolute;
  right: -12px;
  display: block;
  top: 0;
  min-height: 292px;
}

.ask-section .col-md-4:last-child .ask-box:after {
  display: none;
}

/* Trademark Monitoring End */


/* Contact Us Page */
.cont-us-col{
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.cp-girl-img-holder {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* .cp-girl-img-holder img{
  max-height: 250px;
} */

.cpi-holder{
  position: relative;
  z-index: 2;
}

    .cpi-holder a {
        color: var(--bs-white);
        text-decoration: none;
    }
/* Contact Us Page End */


/*TM Registration Page CSS*/

.tmr-box-white {
    background-color:#fff;
    padding:20px;
}

.tmr-box-white {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    min-height: 350px;
    var(--primaryy-color)
}


.btn-white {
    background-color: #fff;
    padding: 12px 30px;
    color: #fb6332;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
    transition:0.3s ease-in;
    border:1px solid #fff;
}

.btn-orange {
    background-color: var(--primaryy-color);
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
    transition: 0.3s ease-in;
    border: 1px solid var(--primaryy-color);
}

.btn-white:hover {
    background-color:var(--primaryy-color);
    border-color:var(--primaryy-color);
    color:#fff;
}

.btn-orange:hover {
    background-color: transparent;
    border-color: var(--primaryy-color);
    color: var(--primaryy-color);
}

.ready-tr {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    margin-block: 25px;
    display: block;
    margin: 26px 0px;
}

.diff-title-holder {
    text-align:center;
    margin-bottom:60px;
}

.list-box {
    min-height: 150px;
}

.diff-box-holder {
    max-width: 562px;
    position:relative;
}

.diff-main {
    position:relative;
}

@media (min-width: 992px) {
    .line-diff {
        height: 100%;
        width: 2px;
        background-color: #ababab;
        display: block;
        position: absolute;
        right: 0;
        left: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .diff-box-2 {
        margin-left: auto;
    }   
}


.tm-phrase {
    background-color: var(--bg-sections);
    /*background-color: #f8f5fe;*/
    position: relative;
}

.numbered-list li {
    margin-bottom: 24px;
}




.why-tm-box {
    text-align: center;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 29px 0px rgba(5, 92, 147, 0.2);
    padding: 30px;
    height: 100%;
    /*margin-bottom: 30px;
    min-height: 325px;*/
}

.why-tm-box-title {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 20px;
    color: #3b3b3b;
}


@media (min-width: 768px) {
    .wtm-mid-col {
        margin-top: -24px;
    }

    .tm-phrase:after {
        content: "";
        position: absolute;
        width: 36%;
        height: 100%;
        display: block;
        background-image: url(../images/bg-phrase.webp);
        top: 0;
        right: 0;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
    }
}


.why-tm-tt {
    margin-bottom:80px;
    text-align:center;
}



.why-tm-box-2 {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 29px 0px rgba(5, 92, 147, 0.2);
    padding: 20px;
    margin-bottom: 30px;
    min-height: 245px;
}

.why-tm-list {
    list-style:none;
}

.why-tm-list li {
    padding-bottom: 18px;
    position: relative;
}

.why-tm-list li::before {
    content: "\f111";
    color: var(--primaryy-color);
    font-family: fontawesome;
    margin-left: -17px;
    font-size: 7px;
    vertical-align: middle;
    line-height: 12px;
    margin-right: 10px;
    position: absolute;
    top: 4px;
}

.faqs-section .accordion-button {
    font-size:20px;
    line-height:1.5;
    font-weight: bold;
    
}

.faqs-section .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #3b3b3b;
}
.faqs-section .accordion-button:focus {
    
    border-color: #3b3b3b;
    outline: 0;
    box-shadow: none;
}

/*TM Registration Page end*/
/* Media Queries Min Width*/
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1600px) {
}
    /* Media Queries End */
    /* XX-Large devices (larger desktops, 1400px and up) */
    @media (min-width: 1400px) {
    }
    /* Media Queries End */
    /* X-Large devices (large desktops, 1200px and up) */
    @media (min-width: 1200px) {
    }
    /* Large devices (desktops, 992px and up) */
    @media (min-width: 992px) {
    }
    /* Medium devices (tablets, 768px and up) */
    @media (min-width: 768px) {
    }
    /* Small devices (landscape phones, 576px and up) */
    @media (min-width: 576px) {
    }
    /* Media Queries Max Width*/
    /* `xxl` applies to x-large devices (large desktops, less than 1400px) */
    @media (max-width: 1599.98px) {
        .nav-item {
            font-size: 14px;
        }

        .our-story:before {
            width: 29%;
        }

        .ab-img-holder {
            left: 20%;
        }

    }

    @media (max-width: 1399.98px) {

        .our-story:before {
            width: 25%;
        }

        .ab-img-holder {
            left: 14%;
        }

        .nav-item {
            font-size: 13px;
        }
        li.nav-item.contacts .btn {
            background: var(--primaryy-color);
            color: #fff;
        }

            li.nav-item.contacts .btn i {
                margin-right: 10px;
            }

        .navbar-expand-lg .navbar-nav .nav-link {
            padding-right: 0.2rem;
            padding-left: 0.2rem;
        }

        .ctm-banner {
            height: 665px;            
        }

        .banner-cont-holder {
            margin-top: 44px;
        }

        .space-p-t {
            padding-top: 80px;
        }

        .space-p-b {
            padding-bottom: 80px;
        }

        .space-p-tb {
            /*padding: 80px 0;*/
            /*New padding added*/
            padding: 50px 0;
        }

        .space-m-t {
            margin-top: 80px;
        }

        .space-m-b {
            margin-bottom: 80px;
        }

        .space-m-tb {
            margin: 80px 0;
        }
    }
    /* `xl` applies to large devices (desktops, less than 1200px) */
    @media (max-width: 1199.98px) {

        .space-p-t {
            padding-top: 60px;
        }

        .space-p-b {
            padding-bottom: 60px;
        }

        .space-p-tb {
            padding: 60px 0;
        }

        .space-m-t {
            margin-top: 60px;
        }

        .space-m-b {
            margin-bottom: 60px;
        }

        .space-m-tb {
            margin: 60px 0;
        }
        .wch-list h4 {
            font-size:20px;
        }
        #main-nav .nav-link {
            border-bottom: 1px solid #ccc;
            padding: 14px 0;
        }

    }
    /* `lg` applies to medium devices (tablets, less than 992px) */
    @media (max-width: 991.98px) {
        .banner-cont-holder {
            margin-top: 0;
        }
        .ctm-banner {
            height: auto;
            padding: 50px 0;
            /*background-image: none !important;*/
            /*background-color: #5f42b8;*/
            /*background-color: var(--primaryy-color);*/
        }

        .banner-title {
            font-size: calc(18px + (32 - 18) * (100vw - 320px) / (1920 - 320));
        }
        .banner-cont-holder p {
            font-size: calc(14px + (22 - 14) * (100vw - 320px) / (1920 - 320));
        }

        .banner-form-title {
            border-radius: 0px 25px 0 0px;
        }

        .ab-img-holder {
            display: none;
        }

        .our-story:before {
            display: none;
        }

        .our-story {
            min-height:100%;
            padding-bottom:40px;
        }

        .p-package {
            margin-bottom: 50px;
        }
        .rw-info a {
            font-size: 18px;
        }

        .rw-icon {
            
            font-size: 25px;
            border-radius: 55px;
            width: 55px;
            height: 55px;
        }
        .rw-row {
            display: flex;
            flex-direction: column;
        }
        .rw-icon {
            flex:1 0 55px;
            max-width:55px;
        }
        .ctm-navbar-brand img {
            width: 150px;
        }

    }
    /* `md` applies to small devices (landscape phones, less than 768px) */
    @media (max-width: 767.98px) {
        .p-package .d-newPKG {
            flex-direction: column
        }
        .p-package .d-newPKG .pkg-header {
            max-width: 100%;
            flex: 0 0 100%;
            padding-right: 0;
        }
        .p-package .d-newPKG .pkg-content {
            max-width: 100%;
            flex: 0 0 100%;
        }
        .rw-info a {
            font-size: 15px;
            line-height: 15px;
        }

        .foo-menu {               
            font-size: 13px;
        }

        footer.main-footer h6 {
            margin-top: 19px;
        }

        .wch-list h4 {
            font-size: 20px;         
        }

        .space-p-t {
            padding-top: 40px;
        }

        .space-p-b {
            padding-bottom: 40px;
        }

        .space-p-tb {
            padding: 40px 0;
        }

        .space-m-t {
            margin-top: 40px;
        }

        .space-m-b {
            margin-bottom: 40px;
        }

        .space-m-tb {
            margin: 40px 0;
        }

        .ctm-form {
            display: flex;
            flex-direction: column;
        }

        .ctm-col {
            margin-right: 0px;
            width: 100%;
            margin-bottom: 12px;
        }
        .ctm-form .iti {
            width: 100%;
        }
        
        .ctm-banner {
            height: auto;
            padding-bottom: 56px;
        }

        .choice-image {
            margin-bottom: 25px;
        }

        .prev-btn {
            position: relative;
            left: inherit;
            top: inherit;
        }

        .next-btn {
            right: inherit;
            top: inherit;
            position: relative;
        }

        .btn-wrap {
            text-align:center;
            margin-top:35px;
        }

        .slick-btn {
            background-color: var(--primaryy-color);
            border: none;
            border-radius: 50px;
            width: 24px;
            height: 24px;
            line-height: 24px;
            font-size: 20px;
            color: #fff;
            transition: 0.3s ease-in;
            -webkit-transition: 0.3s ease-in;
            -moz-transition: 0.3s ease-in;
            -ms-transition: 0.3s ease-in;
            -o-transition: 0.3s ease-in;
        }
        .copyright {
            margin-top: 12px;
        }

        .inner-banner-form {
            position: relative;
            bottom: 0;
        }
        .tmr-box-white {         
            margin-bottom: 15px;
        }
        .bottom-cta .ctaBox {
            background: var(--primaryy-color) !important;
        }
    }
    /* `sm` applies to x-small devices (portrait phones, less than 576px) */
    @media (max-width: 575.98px) {

        .topbar {
            font-size:10px;
        }
        .tags-holder a {
            margin-right: 5px;
            margin-bottom: 8px;
            padding: 4px 15px;
        }

        .banner-form-title {
            font-size:12px;
        }

        body {
            font-size:14px;
        }
}
    /* Media Queries End*/



    /*Menu btn css*/


/* Icon 1 */

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 37px;
    height: 33px;
    position: relative;
    /*margin: 50px auto;*/
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

    #nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--primaryy-color);
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

        #nav-icon1 span:nth-child(1) {
            top: 0px;
        }

        #nav-icon1 span:nth-child(2) {
            top: 14px;
        }

        #nav-icon1 span:nth-child(3) {
            top: 28px;
        }

    #nav-icon1.open span:nth-child(1) {
        top: 18px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    #nav-icon1.open span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    #nav-icon1.open span:nth-child(3) {
        top: 18px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

.navbar-toggler {
    border:none;
    padding:0;
}

.navbar-toggler:focus {
    box-shadow:inherit;
    outline:none;
}

.why-choose-us .container {
    position: relative;
}
.about-rightTag {
    position: absolute;
    left: -230px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-transform: uppercase;
    font-weight: 700;
    transform: rotate(-90deg);
    height: 150px;
    color: #dadddd;
    font-size: calc(30px + (72 - 30) * (100vw - 320px) / (1920 - 320));
}
@media (max-width: 1600px) {
    .about-rightTag {
        left: -190px;
    }
}
@media (max-width: 1400px) {
    .about-rightTag {
        left: -150px;
    }
}

@media (max-width: 1200px) {
    .about-rightTag {
        display: none;
    }
}

.about-rightTag.sty1 {
    /*color: #ecf1f1;*/
    color: var(--primaryy-color);
    left: -400px;
}

@media (max-width: 1600px) {
    .about-rightTag.sty1 {
        left: -280px;
    }
}
@media (max-width: 1400px) {
    .about-rightTag.sty1 {
        left: -230px;
    }
}


.about-rightTag.sty3 {
    color: var(--secondary-color);
    left: -320px;
}

@media (max-width: 1600px) {
    .about-rightTag.sty3 {
        left: -210px;
    }
}

@media (max-width: 1400px) {
    .about-rightTag.sty3 {
        left: -180px;
    }
}


.pb-250 {
    padding-bottom: 250px;
}




.bottom-cta .ctaBox {
    border-radius: 25px;
    /*padding: 50px;*/
    padding: 34px 50px;
    /*background: rgb(219,223,234);*/
    position: relative;
    /*background: linear-gradient(90deg, rgba(219,223,234,1) 0%, rgba(208,212,224,1) 100%);*/
    /*background: var(--primaryy-color) !important;*/
    background: url(/assets/images/cta.webp);
    background-repeat: no-repeat !important;
    background-size: cover;
    -webkit-box-shadow: 0 29px 50px 0 rgba(35,35,35,0.17);
    box-shadow: 0 29px 50px 0 rgba(35,35,35,0.17);
}

.bottom-cta .imgBox {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 40%;
}
.bottom-cta {
    margin-top: -50px;
}

@media (max-width: 991px) {
    .pb-250 {
        padding-bottom: 40px;
    }
    .bottom-cta {
        margin-top: 50px;
    }
    .bottom-cta .ctaBox {
        padding: 30px;
    }

    .faqs-section .accordion-button {
        font-size: 15px;
    }

    .bottom-cta .imgBox {
        display: none;
    }
}

@media (max-width: 575px) {
    .wc-img-tag {
        left: 20px;
    }
}

.bn-form-wd {
    top: -20px;
    position: relative;
    font-size: 13px;
    text-align: left;
}
.font-sz {
    font-size: 19px
}

.cl-white {
    color: #ffffff !important;
}
.p-package:hover .pkp-label {
    color: var(--bs-light);
}
.p-package:hover .pkg-header p {
    /*color: var(--secondary-color);*/
    color: var(--bs-light);
}
.rotational-transform {
    transform: rotate(180deg);
}
.banner-text-2 {
    color: #1f1c1c;
}
.text-primary {
    color: var(--primaryy-color) !important;
}
.text-tertiary {
    color: #1f1c1c !important;
}

.slick-active.tm-slide {
    min-height: 350px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #b6bbc487;
    position: relative;
    /*margin-bottom: 100px;*/
}
.contact-info-foo li a {
    color: var(--bs-white);
    text-decoration: none;
}
.contact-info-foo li a:hover {
    color: var(--secondary-color);
}

/*.banner-form-btn.fa-solid.fa-paper-plane {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
}*/
.banner-form-btn::before {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    top: 12px;
    width: 35px;
    height: 10px;
    content: "\f1d8";
    font-family: "Font Awesome 6 Free";
}