@charset "utf-8";
 * {
     outline: none;
     margin: 0px;
     padding: 0px;
     border: none;
     text-decoration: none;
      font-family: 'Poppins';
     box-sizing:border-box;
}
 body {
     text-decoration: none;
     background:#fff;
      font-family: 'Poppins';
     font-size:16px;
     color:#000;
}
.modal-open { overflow: hidden; }
li{list-style: none !important;}
p{line-height: 1.8}
html {
  scroll-behavior: smooth;
}
a {
    text-decoration: none !important;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
 .c1 {
     background-color:#fff !important;
     color:#333 !important;
}
 .fa-rotate-90 {
     -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
     transform: rotate(90deg);
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.eot');
    src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff'),
        url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.eot');
    src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff'),
        url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Italic.eot');
    src: url('../fonts/Poppins-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/Poppins-Italic.woff') format('woff'),
        url('../fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-MediumItalic.woff2') format('woff2'),
        url('../fonts/Poppins-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
/*popup style starts here*/
#page-loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  /*background-color: #F5F5F5;*/
}

.three-balls {
  margin: 0 auto;
  width: 70px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
}

.three-balls .ball {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: bouncedelay 2.0s infinite cubic-bezier(.62, .28, .23, .99) both;
  animation: bouncedelay 2.0s infinite cubic-bezier(.62, .28, .23, .99) both;
}

.three-balls .ball1 {
  -webkit-animation-delay: -.16s;
  animation-delay: -.16s;
}

.three-balls .ball2 {
  -webkit-animation-delay: -.08s;
  animation-delay: -.08s;
}
.contact-enquiry-box {
  width: 50%;
  height: 45px;
  padding-left: 5%;
  padding-right: 5%;
  line-height: 55px;
  font-weight: normal;
  font-style: normal;
  color: #666;
  font-size: 1em;
  font-family: inherit;
  border:1px solid #145474;
}
@keyframes bouncedelay {
  0% {
    bottom: 0;
    background-color: #03A9F4;
  }
  16.66% {
    bottom: 40px;
    background-color: #FB6542;
  }
  33.33% {
    bottom: 0px;
    background-color: #FB6542;
  }
  50% {
    bottom: 40px;
    background-color: #FFBB00;
  }
  66.66% {
    bottom: 0px;
    background-color: #FFBB00;
  }
  83.33% {
    bottom: 40px;
    background-color: #03A9F4;
  }
  100% {
    bottom: 0;
    background-color: #03A9F4;
  }
}

@-webkit-keyframes bouncedelay {
  0% {
    bottom: 0;
    background-color: #03A9F4;
  }
  16.66% {
    bottom: 40px;
    background-color: #FB6542;
  }
  33.33% {
    bottom: 0px;
    background-color: #FB6542;
  }
  50% {
    bottom: 40px;
    background-color: #FFBB00;
  }
  66.66% {
    bottom: 0px;
    background-color: #FFBB00;
  }
  83.33% {
    bottom: 40px;
    background-color: #03A9F4;
  }
  100% {
    bottom: 0;
    background-color: #03A9F4;
  }
}
/*popup style ends here*/
.popup-textbox
{
    width:100%;
    height: 50px;
    padding-left: 5%;
    padding-right: 5%;
    line-height: 50px;
    font-weight: normal;
    font-style: normal;
    color: #666;
    font-size: 1em;
    background-color: #f1f1f1;
    font-family: inherit;
    margin-top:2%;
    border-radius: 12px;
}
.center{
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9;
}

#button {
  display: inline-block;
  background-color: #333;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 100%;
  position: fixed;
  bottom: 80px;
  right: 30px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

 .clear {
     clear: both
}
 audio, ::selection {
     background:#8cc248;
     color: #fff;
}

 .grecaptcha-badge{
     display:none !important;
}
 .img-full{
     width: 100%;
     height:auto;
     display: block
}
.logo {
    width: 200px;
}
.header {
    border-bottom: 1px solid #dedede;
        padding-bottom: 25px;
    padding-top: 15px;
}
.abt-img img{
  border-radius: 25px;
}
.abt-section1
{
  padding: 70px 0 60px
}
.ad-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.ad-num {
    background: #145474;
    text-align: center;
    font-weight: 500;
    height: 65px; font-size: 1.4em;
    width: 65px;
    line-height: 65px;
    border-radius: 100%;
    color: #fff;
}
.ad-right {
    padding-left: 30px; padding-top: 20px;
}
.ad-right p span{ color: #145474; font-weight: 500; }
.ad-right h2
{
  margin: 0 0 10px; font-family: 'Poppins'; font-weight: 500;
  font-size: 1.726em; color: #145474;
}
.ad-items
{ margin-top: 3em;}
.bg-blue{
  background-image: url(../images/bg1.jpg);
  background-size: cover; padding: 40px; border-radius: 25px;
}
.bg-blue p{color: #fff; font-weight: 500; font-size: 1.125em; text-align: center; margin-bottom: 0}
.abt-section2{
  padding: 50px 0 50px; border-top: 1px solid #a2a2a2
}

 .footer-container{
     width:100%;
     height:auto;
     padding-top:2em;
     padding-bottom:2em;
}

/* Dropdown styles */
 .footer-wraper {
     width:100%;
     height:auto; position: relative;
    padding: 40px 0px 0;
}

.footer-bottom-wraper{
background: #10304c
}
.enq-img {
    padding: 20px;
}
 .copy-right {
     width:auto;
     height:auto;
     float:left;
      color:#fff;
      font-family:'Poppins';
     font-size:1.093em;
     font-weight:300;
     line-height:50px
}
 .copy-right span {
 color:#fff;
      font-family:'Poppins';
     font-size:1em;
     font-weight:300;
}
 .designed {
     width: auto;
     height: auto;
     float: right
}
 .designed-ido {
     float: right;
     height: auto;
     padding-left: 8px;
     padding-top:15px;
     width: auto;
     color:#fff
}
 .designed p {
     width: auto;
     height: auto;
     float: right;
     color:#fff;
      font-family:'Poppins';
     font-size:1.093em;
     font-weight:300;
     line-height:50px;
     margin: 0
}
 .designed p a {
     text-decoration: none;
   color:#fff;
      font-family:'Poppins';
     font-size:1em;
     font-weight:300;
}
 .designed p a:hover {
     text-decoration: none;
}
 .whats-app{
    position:fixed;
        bottom: 20vh;
    right:20px;
    margin-right:3%;
    width:30px;
    z-index:99
}
.whats-app img{
    animation-name:floating;
    animation-duration:3s;
    animation-iteration-count:infinite;
    animation-timing-function:ease-in-out;
    margin-left:30px;
    margin-top:5px;
    opacity:1;
    max-width:40px
}
.whats-app:hover img{
    opacity:1
}
@keyframes floating{
    from{
        transform:translate(0,0)
    }
    65%{
        transform:translate(0,15px)
    }
    to{
        transform:translate(0,0)
    }
}
.clickable {
    cursor: pointer;
}
 .footer-content-details p {
     width:100%;
     height:auto;
     font-family:inherit;
     line-height:1.7;
     color:#333;text-transform: capitalize;
     font-size:1em
}
 .footer-content-details p a {
     font-family:inherit;
     line-height:1.7;
     color:#333;
     font-size:1em
}
.address p {
    font-size: 1em; text-align: center;
    font-family: 'Poppins';   color: #000;
    font-weight: 300;margin: 0 0 10px; display: flex;
    align-items: center;   text-align: left;
}
.address p a{ color: #000; text-decoration: none; }
.address p span{
  font-size: 0.813em; margin-left: 10px;
}

.footer-content .address{
  margin-bottom: 30px;    margin-top: 20px;
}
.footer-social-links li a{
    font-size: 1.33em !important;color: #113551 !important;
    margin-right: 15px;
    display: block;
    text-align: center;
}

.footer-social-links li a:hover{
 color: #7ac9f4 !important;
}
.footer-social-links ul li {
   float: left;
    margin-right: 15px;    margin-top: 5px;
}
.footer-social-links ul li:last-child a,
.footer-social-links ul li:last-child{margin-right: 0}

.address p img {
    padding-right: 15px;
}
.footer-top {
    display: flex;
    padding-bottom: 30px;
}
.footer-top-item ul li a:hover,
.footer-address-links ul li a:hover{
  color: #0055a6
}
.footer-cottage-links p{
  font-weight: 500
}

.footer-top-item:last-child{margin-right: 0}
.footer-top-item {
    width: auto;
    float: left;
    margin-right: auto;
}

.bottom-wrapper {
    clear: both;    display: flex;
    width: 100%;
    padding: 20px 0 40px;   margin-top: 1em;
    justify-content: space-between;
}
.footer-content-title {
    width: 100%; border-bottom: 1px solid #d6d6d6; padding-bottom: 15px;
    height: auto; color: #113551;
    font-size: 1.125em;
    font-family: 'Poppins';
    font-weight: 500; text-transform: uppercase;
    margin-bottom: 15px;
}
.footer-top-item ul li a {
    font-size: 1em;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 30px; color: #161616;
    text-transform: capitalize;
}
.cr {padding-left: 50px; margin-top: 20px;}
.cr h6{
  color: #113551; font-size: 1em; font-weight: 500;
}

.welcome-detail-title2 p{
text-align: center;    margin-top: 10px;
}
.welcome-detail-title2 .abt-shape{
  text-align: center;margin: 0 auto;
    display: flex;
}
.welcome-detail-title2 {z-index: 9; position: relative;
    margin-bottom: 15px;
}
.welcome-detail-title2 span{
    font-size: 1.168em;    color: #2d2d2d;
        line-height: 35px;
    font-family: 'Poppins';
    font-weight: normal;  font-style: italic;
    display: block;
}
.welcome-detail-title2 h1 {
    text-align: left; text-transform: capitalize;
    font-size:2.335em;
    line-height: 46px;
    font-weight:600;
    font-family: 'Poppins';
    font-style: normal;
    margin-top:0px;
    margin-bottom: 0;    color:#217b91;
  }
.welcome-detail-title2 span b{
font-family: 'Poppins'; font-weight: 600; color: #217b91;
    font-style: normal;
}
.shape1 {
    position: absolute;
    top: -120px;
    left: -100px;
}
.abt-container{ position: relative; }

/*projects*/


.know-more{
    font-family: 'Outfit';
    font-weight: normal;  color: #3078ad;
    font-size: 0.875em;  letter-spacing: 2px;
    text-transform: capitalize;
    display: flex; margin-top: 1.5em;
    align-items: center;
}
.bg-light h3{
    font-family: 'Poppins'; font-weight: 500; font-style: italic;
    font-size: 1.5em; color: #145474; text-align: center;
}
.bg-head{
    margin-bottom: 40px;
}
.bg-light h6{
    font-family: 'Poppins'; font-weight: normal;
    font-size: 1.125em; color: #145474; text-align: center;
}
.ad-title h4{
    font-family: 'Poppins'; font-weight: 500; font-style: normal; line-height: 20px;
    font-size: 1.199em; color: #10597e; text-align: center; margin-bottom: 0;
}

.adv-contnt{padding-left: 40px}
.ad-title{margin-top: 10px}
.ad-title span{ font-style: italic; }
.advisor-img{text-align: center; position: relative;}
.shape2{
  position: absolute; left: 60px; z-index: -1
}
.d-flex{
    display: flex;
}
.bg-light{
    background-image: url(../images/bg2.jpg);    margin-top: 40px;
    background-size: cover; padding: 50px; border-radius: 25px;
}
.book{
    background: #065283; border-radius: 5px;
    color: #fff; text-transform: uppercase; padding: 12px 30px;
    display: flex; margin: 20px 0 7px;
    width: fit-content;font-size: 1.125em;
}
.book:hover{
    background: #1ea1f3; color: #fff;
}
.package h2{
     font-family: 'Poppins'; font-weight: 500; font-style: normal;
    font-size: 1.524em; margin-bottom: 25px;
}
.package{ margin: 70px 0 }
.package h2 span{   color: #31a3dc;}
.package p{
    font-size: 1.125em;
}
.package p span{
   color: #10597e; font-weight: 600;
}
.table-half {
    width: 50%;
    float: left;
}
.thead-light th{
    font-family: 'Poppins'; font-weight: 500; font-style: normal;    text-align: left;
    font-size: 1.5em; color: #2397d1; padding: 13px 30px;
}
.thead-light th span{
    font-weight: normal; font-style: normal; font-size: 0.667em; color: #424242; display: block;
}
span.italic{
    font-size: 0.875em; font-style: italic; display: block;
}
.head td{
    font-family: 'Poppins'; font-weight: 500; font-size: 1.25em; color: #065283;
}
td{
    font-size: 1.125em; color: #000000;    padding: 20px 30px;
    border-color: #065283; height: 90px;
    border-right: 1px solid #065283;
        vertical-align: middle; display: table-cell;
}
td span{ font-size: 0.889em; font-style: italic; display: block; color: #424242 }
span.sm{font-style: normal; font-size: 0.778em; }
tfoot td{
    font-weight: 500; font-size: 1.125em;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td {
    line-height: 1.42857143;
    border-top: 1px solid #065283;
}
.table-light tbody {
    background: #b9e2f7;
}
.table-light td{
    background: #b9e2f7;
}
.table-light tfoot td{
    background: #9bd6f3;
}

 .blur {
    filter: blur(3px);
    -webkit-filter: blur(3px);
    display: unset;
  }
.table-dark td{
    background: #a5d7f6;
}
.table-dark tbody {
    background: #a5d7f6;
}
.table-dark tfoot td{
    background: #7db6d9;
}
.tables{
    border: 1px solid #000000; border-radius: 25px;    margin-bottom: 30px; margin-top: 50px;
}
.table-light{border-right: 1px solid #000}
.table-dark tfoot td:nth-child(2){
    border-bottom-right-radius: 25px;
}
.table-light tfoot td:nth-child(1){
    border-bottom-left-radius: 25px;
}
.btm-txt{
    font-weight: 500; font-style: italic; font-size: 1.125em;
}
.btm-txt span {
    color: #3791bf !important; font-weight: 500 !important
}
.txt-btm h6{ font-size: 1em; font-weight: 500; color: #000; margin-top: 2em }

.lux-wrap {
    position: relative;
    height: 100%;
    overflow: hidden; border-radius: 15px;
}
.bg-features{
    background-image: url(../images/bg3.jpg);background-size: cover;
    padding: 50px 0;
}
.product-item:nth-child(1) .lux-wrap {
    background-image: url(../images/shade1.jpg); background-size: cover;
}
.product-item:nth-child(2) .lux-wrap {
      background-image: url(../images/shade2.jpg); background-size: cover;
}
.product-item:nth-child(3) .lux-wrap {
      background-image: url(../images/shade3.jpg); background-size: cover;
}
.lux-img {
    position: relative;
    padding: 10px 20px;
}
.lux-txt h3 {
    font-size: 1.25em;
    line-height: 27px;
    margin-top: 0;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Poppins';
    text-align: center;
    z-index: 9;
    color: #065283;
    position: relative;
    width: 100%;
}
.img-icon {
    margin: 0 auto;
    text-align: center;
    display: flex;
}
.eq-ht {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.testimonial-content{height: 100%;     border-right: 1px solid #d9d9d9; }
img.img-user{border-radius: 15px; margin: 0 auto; display: flex;}
.user-top{text-align: center; margin: 15px 0}
.star{text-align: center; margin: 0 auto; display: block;}
p.description{font-style: italic;    margin: 0 25px;}
.testimonilas-wrap{
padding: 60px 0
}
.main-title{
    font-weight: 600; font-size: 1.875em; color: #065283;    text-align: center; padding-bottom: 20px;
}
.user-top h4{
    font-weight: 500; font-size: 1.125em; margin: 0;
}
.user-top  span{ font-style: italic; font-size: 0.944em; }
.how-lft{
    background-image: url(../images/how-lft.jpg); background-size: cover; height: 100%;
        display: flex;
    align-items: center; border-top-left-radius: 15px;
    justify-content: center; border-bottom-left-radius: 15px;
}
.step-item {
    border-bottom: 1px solid #a2a2a2; padding: 15px 40px
}
.steps{height: 100%;   border: 1px solid #a2a2a2; border-top-right-radius: 15px;
border-bottom-right-radius: 15px;
 }
.how-lft h2{ color: #fff; text-transform: uppercase; font-weight: 500; font-size: 1.726em; margin: 0 }
.step-item h4{
    background: #4da2ce; border-radius: 13px; padding: 4px 30px;    width: fit-content;
    color: #fff; font-weight: 500; font-size:1em;    display: flex;
    align-items: center; text-transform: capitalize; margin-bottom: 10px;
}
.step-item span{
    background: #102d48; height: 30px; width: 30px; line-height: 30px; border-radius: 100%;
    display: flex;   margin-left: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.step-item h2{
    font-weight: 500; font-size: 1.25em; color: #207aa8;
}
.blog-item h2 a{color: #fff}
.blog-item h2{ color: #effdff; font-weight: 500;  font-size: 1.125em; text-align: center;     line-height: 26px;}
.p0{padding: 0}
.blog-item{background-size: cover; border-radius: 10px;
    padding: 20px 15px  }
.blg:nth-child(1) .blog-item{
    background-image: url(../images/blog-bg1.jpg);
}
.blg:nth-child(2) .blog-item{
    background-image: url(../images/blog-bg2.jpg);
}

.blg:nth-child(3) .blog-item{
    background-image: url(../images/blog-bg3.jpg);
}
.why-title{     font-size: 1.726em;
    font-weight: 500; }
.mtop{margin-top: 1em}
.mt-2{margin-top: 2em;}
.mt-3{margin-top: 3em;}
.blog-wrap{ padding: 60px 0; }
.more {
    background: #4da2ce;
    border-radius: 5px;
    padding: 12px 20px;
    width: fit-content;
    color: #fff;
    font-weight: normal;
    font-size: 0.978em;
    display: flex; margin: 30px auto 0;
    align-items: center;
    text-transform: uppercase;
}
.more:hover{
    background: #065283; color: #fff;
}
.why-item{ position: relative; height: 100%; padding: 80px 40px 20px; }
.col-md-15:nth-child(1n) .why-item{ background: #e3f5ff }
.col-md-15:nth-child(2n) .why-item{ background: #1f6f99 }
.why-wrap{
    padding: 60px 60px; position: relative;
}
.why-item .num{
    font-weight: 600; color: #3a7797; opacity: .3; font-size: 3.458em;position: absolute;
    top: 0;
    left: 20px;
}
.why-item h2{
    font-weight: 600; font-size: 1.5em; color: #207aa8;
    line-height: 30px; margin-bottom: 10px
}
.col-md-15:nth-child(2n) .why-item h2{color: #7ac9f4}
.col-md-15:nth-child(2n) .num{ color: #e3f5ff }
.col-md-15:nth-child(2n) .why-item p{color: #ffffff}

.know-bg{
    background: #092e41; border-bottom-left-radius: 25px;
     border-bottom-right-radius: 25px; padding: 30px;
}
.know-bg h2{ color: #4da2ce; font-weight: 500; font-size: 1.726em; margin: 0;}
.know-content{display: flex; align-items: center; margin: 0 auto; justify-content: center;}
.know-content .book{background-color: #4da2ce; margin-left: 30px; margin-top: 0; margin-bottom: 0;font-size: 1.179em;}


.accordion-button{
    border-bottom: 1px solid #b1b0b0;font-size: 1.125em; cursor: pointer;

}
.accordion-button::after{  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  background-color: #4da2ce; height: 45px; width: 45px; line-height: 45px; border-radius: 100%;    background-size: 100% 65%;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-body p{font-style: italic;}
.accordion-header{   font-size: 1.125em; }
.accordion-button span{ color: #4da2ce; margin-right: 20px; font-weight: 500; font-size: 1.222em }
.accordion-body span{color: #4da2ce; margin-right: 20px; font-weight: 500; font-size: 1.375em; width: 55px  }
.accordion-body {
    display: flex;
    align-items: flex-start;
}
.shape3{
    position: absolute;top: 0; left: 0;
}
.shape4{
    position: absolute;top: 0; right: 0;
}
.faq-wrapper{
    position: relative; padding: 0 250px 80px;
}
.get-bg{
    background-image: url(../images/get-bg.jpg); background-size: cover;
    padding: 35px; border-radius: 25px; text-align: center;
}
.get-txt{ margin: 0 100px; }
.get-bg h2{
    font-weight: 500; font-size: 1.726em; color: #4da2ce; margin-bottom: 10px;
}
.get-bg p{color: #fff; text-align: center;}
.get-btn {
    background: #7ac9f4;
    border-radius: 10px;
    color: #12324d; font-weight: 500; font-size: 0.976em;
    padding: 12px 30px;
    display: block;
    margin: 20px auto 0px;
    width: fit-content;
}
.get-btn:hover,.know-content .book:hover{
  background: #1f6f99; color: #fff;
}

/* 5 Columns */

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 0px;
    padding-left: 0px;
}

.col-md-15 {
    width: 20%;
    float: left;
}

/**/
/* The Modal (background) */

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeout {
  animation: fadeout 0.4s;
}
.modal-dialog{
 margin-top: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
 /* -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;*/
  -webkit-justify-content: center;
     /* -ms-flex-pack: center;*/
          justify-content: center;
          min-width:30%;
          align-items:center;
          height:100%;
}
.modal {
  position: fixed; /* Stay in place */
  z-index: 9; /* Sit on top */
  padding-top: 10px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  animation: fadein 0.4s forwards;
  display:none;
 
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  /*margin: auto;*/
  padding: 40px;
  width:auto; position: relative;
  border-radius: 15px;
  max-width:70%;
  min-width:30%;
}

/* The Close Button */
.close {
    color: #11344f;
    float: right;
    font-size: 2.25em;
    background: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 100%;
        right: -25px;
    top: -20px; position: absolute;
}

.close:hover,
.close:focus {
  cursor: pointer;
}
.submit-btn{
  background: #217b91; border-radius: 8px; font-weight: 500; 
  color: #fff; font-size: 1.251em; padding: 5px 35px; cursor: pointer;
  margin-top:1em;
}
.submit-btn:hover{
      background: #7ac9f4; color: #000;
}
/*qs*/
/*.qs-section {
    margin-bottom: 60px;
}*/
.questions .radioboxs label input[type=radio] {
    display: none;
}
.radioboxs label:has(input[type="radio"]:checked)
{
      background: #4da2ce7a !important;
}
.questions .radioboxs label,.questions .form-group  select {
  background: #ddf0ff; border-radius: 12px;    color: #000;
    width: 49%; font-weight: normal;
    display: flex;
    align-items: center;
    font-size: 1em;
    cursor: pointer;
    padding: 8px 20px; margin-bottom:2%; height: 60px;
    float:left;
}
.questions .radioboxs label{ margin-right:2%}
.questions .radioboxs label:nth-child(2n+2){ margin-right:0%}

.questions .radioboxs label span{
  font-weight: 500; font-size: 1.05em; color: #fff; text-align: center;    margin-right: 20px;
  background: #217b91; border-radius: 50%; height: 30px; width: 30px; line-height: 30px;
}
.qs-section h2{
  font-weight: 600; font-size:1.25em; color: #217b91; border-bottom: 1px solid #ddd;    padding-bottom: 10px;
  margin-bottom: 20px;
}
.qs-section h3{
  font-weight: 600; font-size: 1.313em; color: #323232; position: relative; padding-left: 30px;
      margin-bottom: 20px;
}
/*.qs-form {
    padding: 100px 100px;
}*/

.qs-section h3:before{
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  background: #323232;
  left: 0; top: 50%; border-radius: 100%;transform: translate(-50%, -50%);
}
.questions {
   margin-bottom:1em;
}
.thanks-content {
        background-image: url(../images/shade1.jpg);
    background-size: cover;
    padding: 50px;
      width: 100%;
    text-align: center;
    margin: 0 auto;
}
.text-success {
    color: #217b91 !important;
}
.thanks-content h1 {
    color: #217b91;
    line-height: 50.99px;
    text-transform: capitalize;
       font-weight: 600;
    font-size: 2em;
    margin-top: 5px;
}
.thanks-div p {
    margin-bottom: 20px;
    font-size: 1em;
    margin-top: 10px;
}

/*checkbox*/
.checkboxx {
     display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.251em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
span.check-span {
    position: relative;
    left: 50px;
}
/* Hide the browser's default checkbox */
.checkboxx input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
 position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
  font-weight: 600;
    font-size: 1.251em;
    color: #fff;
    text-align: center;
    margin-right: 20px;
    background: #217b91;
    border-radius: 12px;
    height: 40px;
    width: 45px;
    line-height: 45px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxx input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxx .checkmark:after {
     left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 25px;
    height: 20px;
  background-image: url(../images/checkbox.png); background-size: cover;
}
.form-group.checkboxs {
    display: flex;
    align-items: center;
}
.checkboxx{margin-right: 200px;}

/**/

.container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}



 @media (min-width: 1023px) and (max-width: 1279px) {
     body,li {
         font-size:12px !important;
    }
     .d-container{
         width:100%;
         padding-left:6%;
         padding-right:6%
    }
       td{ padding: 20px 16px;  }

  .why-item{ padding: 80px 15px 10px }
  .ad-right h2{ font-size: 1.4em; margin: 0 0 5px }
    .welcome-detail-title2 h1{
    font-size: 2em;
    line-height: 36px;
  }
  .faq-wrapper{ padding: 0 150px 60px }
  .why-wrap{padding: 40px 30px}
  .thead-light th{ padding: 9px 20px }
  p.description{ margin: 0 10px }
  .address p img{width: 40px;}
  .why-item h2{ font-size: 1.2em; line-height: 22px }
  .shape1{ width: 700px; top: -140px }
.qs-form {
    padding: 30px 30px;
}
.close{ height: 40px; width: 40px; line-height: 40px; top: -10px }
.questions .radioboxs label span{ height: 40px; width: 40px;  line-height: 40px;}
.questions .radioboxs label, .questions .form-group select{ height: 50px }
.checkmark{     height: 35px;
    width: 40px;
    line-height: 40px; }
    .qs-section h2{font-size: 1.6em}
       .thanks-content h1{ font-size: 1.7em;line-height: 30.99px }
       .thanks-content{ width: 70%; padding: 30px }
       .thanks-content svg {
    width: 60px;
}
}
 @media (min-width: 1280px) and (max-width: 1359px) {
     body,li {
         font-size:14px !important;
    }
     .d-container{
         width:100%;
         padding-left:7%;
         padding-right:7%
    }
         td{ padding: 20px 16px }

  .why-item{ padding: 80px 15px 10px }
    .welcome-detail-title2 h1{
    font-size: 2em;
    line-height: 36px;
  }
  .faq-wrapper{ padding: 0 150px 60px }
  .why-wrap{padding: 40px 30px}
   .shape1{ width: 800px; top: -140px }
   .qs-form {
    padding: 30px 30px;
}
.close{ height: 40px; width: 40px; line-height: 40px; top: -10px }
.questions .radioboxs label span{ height: 40px; width: 40px;  line-height: 40px;}
.questions .radioboxs label, .questions .form-group select{ height: 50px }
.checkmark{     height: 35px;
    width: 40px;
    line-height: 40px; }
    .qs-section h2{font-size: 1.6em}
         .thanks-content h1{ font-size: 1.7em;line-height: 30.99px }
       .thanks-content{ width: 70%; padding: 30px }
       .thanks-content svg {
    width: 60px;
}
}
 @media (min-width: 1360px) and (max-width: 1399px) {
     body {
         font-size:14px !important;
    }
    li{font-size:14px !important;}

     .d-container{
         width:100%;
         padding-left:10%;
         padding-right:10%
    }
        td{ padding: 20px 16px }
    td:nth-child(2) {
    width: 128px;
    display: block;
  }
  .why-item{ padding: 80px 15px 10px }
    .welcome-detail-title2 h1{
    font-size: 2em;
    line-height: 36px;
  }
  .faq-wrapper{ padding: 0 150px 60px }
   .shape1{ width: 800px; top: -140px }

  /* .qs-form {
    padding: 30px 50px;
}*/
/*.close{ height: 40px; width: 40px; line-height: 40px; top: -10px }
.questions .radioboxs label span{ height: 40px; width: 40px;  line-height: 40px;}*/
.questions .radioboxs label, .questions .form-group select{ height: 55px; }
.checkmark{     height: 35px;
    width: 40px;
    line-height: 40px; }
   .thanks-content h1{ font-size: 1.7em }
}
 @media (min-width: 1400px) and (max-width: 1441px) {
     body {
         font-size:15px !important;
    }
    .d-container{
         width:100%;
         padding-left:10%;
         padding-right:10%
    }

    li{font-size:15px !important;}
    .nav-menu > li > a{ margin:30px 15px !important}
    td{ padding: 20px 16px }

  .why-item{ padding: 80px 15px 10px }
   .shape1{ width: 900px; top: -140px }

     .qs-form {
    padding: 30px 50px;
}
.close{ height: 40px; width: 40px; line-height: 40px; top: -10px }
.questions .radioboxs label span{ height: 40px; width: 40px;  line-height: 40px;}
.questions .radioboxs label, .questions .form-group select{ height: 55px; width: 40% }
.checkmark{     height: 35px;
    width: 40px;
    line-height: 40px; }
    .qs-section h2{font-size: 1.6em}
    .thanks-content h1{ font-size: 1.7em }
}
 @media (min-width: 1441px) and (max-width: 1599px) {
     body,li {
         font-size:15px !important;
    }

 .nav-menu > li > a{ margin:30px 15px !important}
    li.header-phone a
    {
      margin: 19px 12px !important;
    }
    .nav-brand img {
    width: 65%;
    }
    .sexy-menu.detached .header-phone a {
    margin: 20px 6px !important;
  }
  .sexy-menu.detached .nav-brand img {
    margin-top: 15px;
    width: 60% !important;
}
   .d-container{
         width:100%;
         padding-left:8%;
         padding-right:8%
    }

 #button{
  right: 20px;
  width: 45px;
    height: 45px;bottom: 25px;
}
#button::after{line-height: 45px}
    td{ padding: 20px 16px }
  .why-item{ padding: 80px 15px 10px }
   .shape1{ width: 900px; top: -140px }
     .qs-form {
    padding: 30px 50px;
}
.close{ height: 40px; width: 40px; line-height: 40px; top: -10px }
.questions .radioboxs label span{ height: 40px; width: 40px;  line-height: 40px;}
.questions .radioboxs label, .questions .form-group select{ height: 55px; width: 40% }
.checkmark{     height: 35px;
    width: 40px;
    line-height: 40px; }
    .qs-section h2{font-size: 1.6em}
       .thanks-content h1{ font-size: 1.7em }
}
 @media (min-width:1600px) and (max-width:1680px) {
     body {
         font-size:15px !important;
    }
    li{font-size:15px !important;}
         img.banner-bg1{
              bottom: -400px !important;
        }

  .d-container{
         width:100%;
         padding-left:8%;
         padding-right:8%
    }
     td{ padding: 20px 16px }

  .why-item{ padding: 80px 15px 10px }
}
 @media (min-width:1681px){
     body {
         font-size:16px !important;
    }
   .d-container {
    width: 100%;
    padding-left: 13%;
    padding-right: 13%;
}
}

 @media (max-width:420px) {
  body {
       font-size:14px !important;
  }
 .center,.eq-ht{display: block;}
.how-lft{height: 50px}
.d-container{ padding-left: 3%; padding-right:3% }
.col-md-15{ width: 100%; float: none; }
.faq-wrapper{ padding: 20px 20px 30px }
.logo {
    width: 150px;
}
.header{
    padding-bottom: 5px;
    padding-top: 5px;
  }
.abt-section1 {
    padding: 40px 0 10px;
}
.welcome-detail-title2 h1{
   font-size: 1.3em;
    line-height: 30px;
 }
 .abt-section2{ padding: 25px 0 20px }
 .ad-num{ height: 45px;
    font-size: 1em;
    width: 45px;
    line-height: 45px; }
.welcome-detail-title2 span {font-size: .85em; line-height: 26px}
.ad-right h2{ font-size: 1.1em; margin: 0 0 5px }
.ad-right {
    padding-left: 20px;
    padding-top: 0;
}
.bg-blue p{font-size: 1em;}
.bg-blue{ padding: 30px 20px; }
.bg-light{     margin-top: 30px;background-position: center;
    padding: 25px }
  .bg-light h3{ font-size: 1.1em; margin-bottom: 10px }
  .bg-light h6{font-size: 1em}
.bg-head {
    margin-bottom: 10px;
}
.adv-contnt {
    padding-left: 0; padding-top: 10px;
}
.book{ padding: 8px 25px; margin: 13px 0 7px }
.package {
    margin: 30px 0;
}
.package h2{ font-size: 1.2em;     margin-bottom: 10px; }
.thead-light th{ font-size: 1.1em; padding: 7px 17px;width: 100%; }
.table-half{ width: 100%; float: none; border: 1px solid #000000; margin-bottom: 10px }
td:nth-child(2){        width: 95px;
        display: block;}
td{height: unset;     font-size: 1em;
    color: #000000;
    padding: 10px 13px;
}
.tables{border:0;    margin-bottom: 30px;
    margin-top: 20px;}
.table-light tfoot td:nth-child(1),.table-dark tfoot td:nth-child(2){border-radius: 0}
tfoot td{ font-size: .9em }
.package p {
    font-size: 1em;
}
.lux-txt h3{font-size: 1.1em; line-height: 20px}
.img-icon {
    width: 60px;
}
.lux-wrap{margin-bottom: 5px}
.testimonilas-wrap {
    padding: 30px 0;
}
.main-title,.how-lft h2{ font-size: 1.4em }
.mt-3 {
    margin-top: 1em;
}
.testimonial-content{border: 0; margin-bottom: 20px;}
p.description{margin: 0; text-align: center;}
.how-lft,.steps{border-radius: 0; }
.step-item{ padding: 15px 26px }
.step-item h2{font-size: 1.1em; margin-bottom: 10px;}
.blog-wrap {
    padding: 30px 0;
}
.blog-item{margin-bottom: 10px;}
.more{ margin: 15px auto 0 }
.why-wrap {
    padding: 5px 20px;
  }
.mtop {
    margin-top: 0;
}
.why-item h2{font-size: 1.125em; line-height: 23px}
.know-content{display: block;}
.know-bg h2{font-size: 1.333em; text-align: center;}
.know-content .book{font-size: 1em; margin: 5px auto 0}
.know-bg{padding: 20px;}
.accordion-button{font-size: 1em; padding: 15px 0}
.accordion-body{padding: 15px 0 15px}
.accordion-button::after{
      height: 35px;
    width: 35px;
    line-height: 35px;
 }
 .accordion-body span{display: none;}
 .accordion-header{font-size: 1em}
 .get-txt {
    margin: 0;
}
.get-bg h2{font-size: 1.4em; line-height: 22px}
.get-btn{ padding: 8px 16px }
.footer-top-item{float: none; margin-bottom: 20px;}
.address p img{width: 40px;}
.copy-right span{display: none;}
.footer-content-title{
    padding-bottom: 8px;    width: 90%;    margin-bottom: 10px;
}
.footer-social-links li a{font-size: 1.1em !important}
.footer-social-links ul li {
    margin-right: 5px;
  }
  .qs-form {
    padding: 30px 20px;
}
.modal-content{width: 90%; padding: 10px; max-width:90%}
.qs-section h2{font-size: 1.1em;}
.qs-section h3{font-size: 1em; padding-left: 15px}
.qs-section h3:before{height: 6px; width: 6px}
.questions .radioboxs label, .questions .form-group select{ width: 100%; height:auto;     font-size: 1em; }
.questions .radioboxs label span{     height: 30px;
    width: 30px; border-radius: 5px;
    line-height: 30px; }
    .checkmark{ width: 30px; height: 30px;     border-radius: 5px;}
    .checkboxx {
    margin-right: 100px;
}
.close{
      width: 40px; font-size: 2em; top: -7px; right: -10px;
    height: 40px;
    line-height: 40px;
}
.modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
    }
  .thanks-content h1{ font-size: 1.2em;line-height: 20.99px }
  .thanks-content{ width: 100%; padding: 15px }
  .thanks-content svg {
    width: 50px;
}
}
 @media (min-width:421px) and (max-width:460px){
    body {
       font-size:14px !important;
  }
 .center,.eq-ht{display: block;}
.how-lft{height: 50px}
.d-container{ padding-left: 3%; padding-right:3% }
.col-md-15{ width: 100%; float: none; }
.faq-wrapper{ padding: 20px 20px 30px }
.logo {
    width: 150px;
}
.header{
    padding-bottom: 5px;
    padding-top: 5px;
  }
.abt-section1 {
    padding: 40px 0 10px;
}
.welcome-detail-title2 h1{
   font-size: 1.3em;
    line-height: 30px;
 }
 .abt-section2{ padding: 25px 0 20px }
 .ad-num{ height: 45px;
    font-size: 1em;
    width: 45px;
    line-height: 45px; }
.welcome-detail-title2 span {font-size: .85em; line-height: 26px}
.ad-right h2{ font-size: 1.1em; margin: 0 0 5px }
.ad-right {
    padding-left: 20px;
    padding-top: 0;
}
.bg-blue p{font-size: 1em;}
.bg-blue{ padding: 30px 20px; }
.bg-light{     margin-top: 30px;background-position: center;
    padding: 25px }
  .bg-light h3{ font-size: 1.1em; margin-bottom: 10px }
  .bg-light h6{font-size: 1em}
.bg-head {
    margin-bottom: 10px;
}
.adv-contnt {
    padding-left: 0; padding-top: 10px;
}
.book{ padding: 8px 25px; margin: 13px 0 7px }
.package {
    margin: 30px 0;
}
.package h2{ font-size: 1.2em;     margin-bottom: 10px; }
.thead-light th{ font-size: 1.1em; padding: 7px 17px;width: 100%; }
.table-half{ width: 100%; float: none; border: 1px solid #000000; margin-bottom: 10px }
td:nth-child(2){        width: 95px;
        display: block;}
td{height: unset;     font-size: 1em;
    color: #000000;
    padding: 10px 13px;
}
.tables{border:0;    margin-bottom: 30px;
    margin-top: 20px;}
.table-light tfoot td:nth-child(1),.table-dark tfoot td:nth-child(2){border-radius: 0}
tfoot td{ font-size: .9em }
.package p {
    font-size: 1em;
}
.lux-txt h3{font-size: 1.1em; line-height: 20px}
.img-icon {
    width: 60px;
}
.lux-wrap{margin-bottom: 5px}
.testimonilas-wrap {
    padding: 30px 0;
}
.main-title,.how-lft h2{ font-size: 1.4em }
.mt-3 {
    margin-top: 1em;
}
.testimonial-content{border: 0; margin-bottom: 20px;}
p.description{margin: 0; text-align: center;}
.how-lft,.steps{border-radius: 0; }
.step-item{ padding: 15px 26px }
.step-item h2{font-size: 1.1em; margin-bottom: 10px;}
.blog-wrap {
    padding: 30px 0;
}
.blog-item{margin-bottom: 10px;}
.more{ margin: 15px auto 0 }
.why-wrap {
    padding: 5px 20px;
  }
.mtop {
    margin-top: 0;
}
.why-item h2{font-size: 1.125em; line-height: 23px}
.know-content{display: block;}
.know-bg h2{font-size: 1.333em; text-align: center;}
.know-content .book{font-size: 1em; margin: 5px auto 0}
.know-bg{padding: 20px;}
.accordion-button{font-size: 1em; padding: 15px 0}
.accordion-body{padding: 15px 0 15px}
.accordion-button::after{
      height: 35px;
    width: 35px;
    line-height: 35px;
 }
 .accordion-body span{display: none;}
 .accordion-header{font-size: 1em}
 .get-txt {
    margin: 0;
}
.get-bg h2{font-size: 1.4em; line-height: 22px}
.get-btn{ padding: 8px 16px }
.footer-top-item{float: none; margin-bottom: 20px;}
.address p img{width: 40px;}
.copy-right span{display: none;}
.footer-content-title{
    padding-bottom: 8px;    width: 90%;    margin-bottom: 10px;
}
.footer-social-links li a{font-size: 1.1em !important}
.footer-social-links ul li {
    margin-right: 5px;
  }
  .qs-form {
    padding: 30px 20px;
}
.modal-content{max-width: 90%}
.qs-section h2{font-size: 1.1em;}
.qs-section h3{font-size: 1em; padding-left: 15px}
.qs-section h3:before{height: 6px; width: 6px}
.questions .radioboxs label, .questions .form-group select{ width: 100%; height: 45px;     font-size: 1em; }
.questions .radioboxs label span{     height: 30px;
    width: 30px; border-radius: 5px;
    line-height: 30px; }
    .checkmark{ width: 30px; height: 30px;     border-radius: 5px;}
    .checkboxx {
    margin-right: 100px;
}
.close{
      width: 40px; font-size: 2em; top: -7px; right: -10px;
    height: 40px;
    line-height: 40px;
}
.modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
    }
  .thanks-content h1{ font-size: 1.2em;line-height: 20.99px }
  .thanks-content{ width: 100%; padding: 15px }
  .thanks-content svg {
    width: 50px;
}

}
 @media (min-width:461px) and (max-width:560px){

    body {
       font-size:14px !important;
  }
  .center{ display: block; }
.d-container{ padding-left: 3%; padding-right:3% }
.col-md-15{ width: 100%; float: none; }
.faq-wrapper{ padding: 20px 20px 30px }
.logo {
    width: 150px;
}
.header{
    padding-bottom: 5px;
    padding-top: 5px;
  }
.abt-section1 {
    padding: 40px 0 10px;
}
.welcome-detail-title2 h1{
   font-size: 1.4em;
    line-height: 32px;
 }
 .abt-section2{ padding: 25px 0 20px }
 .ad-num{ height: 45px;
    font-size: 1em;
    width: 45px;
    line-height: 45px; }
.welcome-detail-title2 span {font-size: 1em; line-height: 26px}
.ad-right h2{ font-size: 1.2em; margin: 0 0 5px }
.ad-right {
    padding-left: 20px;
    padding-top: 0;
}
.bg-blue p{font-size: 1em;}
.bg-blue{ padding: 30px 20px; }
.bg-light{     margin-top: 30px;background-position: center;
    padding: 25px }
  .bg-light h3{ font-size: 1.1em; margin-bottom: 10px }
  .bg-light h6{font-size: 1em}
.bg-head {
    margin-bottom: 10px;
}
.adv-contnt {
    padding-left: 0; padding-top: 10px;
}
.book{ padding: 8px 25px; margin: 13px 0 7px }
.package {
    margin: 30px 0;
}
.package h2{ font-size: 1.2em;     margin-bottom: 10px; }
.thead-light th{ font-size: 1.1em; padding: 7px 17px;width: 100%; }
.table-half{ width: 100%; float: none; border: 1px solid #000000; margin-bottom: 10px }
td:nth-child(2){        width: 95px;
        display: block;}
td{height: unset;     font-size: 1em;
    color: #000000;
    padding: 10px 13px;
}
.tables{border:0;    margin-bottom: 30px;
    margin-top: 20px;}
.table-light tfoot td:nth-child(1),.table-dark tfoot td:nth-child(2){border-radius: 0}
tfoot td{ font-size: .9em }
.package p {
    font-size: 1em;
}
.lux-txt h3{font-size: 1.1em; line-height: 20px}
.img-icon {
    width: 60px;
}
.lux-wrap{margin-bottom: 5px}
.testimonilas-wrap {
    padding: 30px 0;
}
.main-title,.how-lft h2{ font-size: 1.4em }
.mt-3 {
    margin-top: 1em;
}
.testimonial-content{border: 0; margin-bottom: 20px;}
p.description{margin: 0; text-align: center;}
.how-lft,.steps{border-radius: 0; }
.step-item{ padding: 15px 26px }
.how-lft{height: 70px}
.eq-ht{display: block;}
.step-item h2{font-size: 1.1em; margin-bottom: 10px;}
.blog-wrap {
    padding: 30px 0;
}
.blog-item{margin-bottom: 10px;}
.more{ margin: 15px auto 0 }
.why-wrap {
    padding: 5px 20px;
  }
.mtop {
    margin-top: 0;
}
.why-item h2{font-size: 1.125em; line-height: 23px}
.know-content{display: block;}
.know-bg h2{font-size: 1.333em; text-align: center;}
.know-content .book{font-size: 1em; margin: 5px auto 0}
.know-bg{padding: 20px;}
.accordion-button{font-size: 1em; padding: 15px 0}
.accordion-body{padding: 15px 0 15px}
.accordion-button::after{
      height: 35px;
    width: 35px;
    line-height: 35px;
 }
 .accordion-body span{display: none;}
 .accordion-header{font-size: 1em}
 .get-txt {
    margin: 0;
}
.get-bg h2{font-size: 1.4em; line-height: 22px}
.get-btn{ padding: 8px 16px }
.footer-top-item{float: none; margin-bottom: 20px;}
.address p img{width: 40px;}
.copy-right span{display: none;}
.footer-content-title{
    padding-bottom: 8px;    width: 90%;    margin-bottom: 10px;
}
.footer-social-links li a{font-size: 1.1em !important}
.footer-social-links ul li {
    margin-right: 5px;
  }
  .qs-form {
    padding: 30px 20px;
}
.modal-content{max-width: 90%}
.qs-section h2{font-size: 1.1em;}
.qs-section h3{font-size: 1em; padding-left: 15px}
.qs-section h3:before{height: 6px; width: 6px}
.questions .radioboxs label, .questions .form-group select{ width: 100%; height: 45px;     font-size: 1em; }
.questions .radioboxs label span{     height: 30px;
    width: 30px; border-radius: 5px;
    line-height: 30px; }
    .checkmark{ width: 30px; height: 30px;     border-radius: 5px;}
    .checkboxx {
    margin-right: 100px;
}
.close{
      width: 40px; font-size: 2em; top: -7px; right: -10px;
    height: 40px;
    line-height: 40px;
}
.modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
    }
    .thanks-content h1{ font-size: 1.44em;line-height: 25.99px }
  .thanks-content{ width: 100%; padding: 25px }
  .thanks-content svg {
    width: 50px;
}
}

 @media (min-width:561px) and (max-width:680px){
   body {
       font-size:14px !important;
  }
 .center,.eq-ht{display: block;}
.how-lft{height: 70px}
.d-container{ padding-left: 3%; padding-right:3% }
.col-md-15{ width: 100%; float: none; }
.faq-wrapper{ padding: 20px 20px 30px }
.logo {
    width: 150px;
}
.header{
    padding-bottom: 5px;
    padding-top: 5px;
  }
.abt-section1 {
    padding: 40px 0 10px;
}
.welcome-detail-title2 h1{
   font-size: 1.4em;
    line-height: 32px;
 }
 .abt-section2{ padding: 25px 0 20px }
 .ad-num{ height: 45px;
    font-size: 1em;
    width: 45px;
    line-height: 45px; }
.welcome-detail-title2 span {font-size: 1em; line-height: 26px}
.ad-right h2{ font-size: 1.2em; margin: 0 0 5px }
.ad-right {
    padding-left: 20px;
    padding-top: 0;
}
.bg-blue p{font-size: 1em;}
.bg-blue{ padding: 30px 20px; }
.bg-light{     margin-top: 30px;background-position: center;
    padding: 25px }
  .bg-light h3{ font-size: 1.1em; margin-bottom: 10px }
  .bg-light h6{font-size: 1em}
.bg-head {
    margin-bottom: 10px;
}
.adv-contnt {
    padding-left: 0; padding-top: 10px;
}
.book{ padding: 8px 25px; margin: 13px 0 7px }
.package {
    margin: 30px 0;
}
.package h2{ font-size: 1.2em;     margin-bottom: 10px; }
.thead-light th{ font-size: 1.1em; padding: 7px 17px;width: 100%; }
.table-half{ width: 100%; float: none; border: 1px solid #000000; margin-bottom: 10px }
td:nth-child(2){        width: 95px;
        display: block;}
td{height: unset;     font-size: 1em;
    color: #000000;
    padding: 10px 13px;
}
.tables{border:0;    margin-bottom: 30px;
    margin-top: 20px;}
.table-light tfoot td:nth-child(1),.table-dark tfoot td:nth-child(2){border-radius: 0}
tfoot td{ font-size: .9em }
.package p {
    font-size: 1em;
}
.lux-txt h3{font-size: 1.1em; line-height: 20px}
.img-icon {
    width: 60px;
}
.lux-wrap{margin-bottom: 5px}
.testimonilas-wrap {
    padding: 30px 0;
}
.main-title,.how-lft h2{ font-size: 1.4em }
.mt-3 {
    margin-top: 1em;
}
.testimonial-content{border: 0; margin-bottom: 20px;}
p.description{margin: 0; text-align: center;}
.how-lft,.steps{border-radius: 0; }
.step-item{ padding: 15px 26px }
.step-item h2{font-size: 1.1em; margin-bottom: 10px;}
.blog-wrap {
    padding: 30px 0;
}
.blog-item{margin-bottom: 10px;}
.more{ margin: 15px auto 0 }
.why-wrap {
    padding: 5px 20px;
  }
.mtop {
    margin-top: 0;
}
.why-item h2{font-size: 1.125em; line-height: 23px}
.know-bg h2{font-size: 1.333em; text-align: center;}
.know-content .book{font-size: 1em; }
.know-bg{padding: 20px;}
.accordion-button{font-size: 1em; padding: 15px 0}
.accordion-body{padding: 15px 0 15px}
.accordion-button::after{
      height: 35px;
    width: 35px;
    line-height: 35px;
 }
 .accordion-body span{display: none;}
 .accordion-header{font-size: 1em}
 .get-txt {
    margin: 0;
}
.get-bg h2{font-size: 1.4em; line-height: 22px}
.get-btn{ padding: 8px 16px }
.footer-top-item{float: none; margin-bottom: 20px;}
.address p img{width: 40px;}
.copy-right span{display: none;}
.footer-content-title{
    padding-bottom: 8px;    width: 50%;    margin-bottom: 10px;
}
.footer-social-links li a{font-size: 1.1em !important}
.footer-social-links ul li {
    margin-right: 5px;
  }
.footer-top-item:last-child{ display: flex; }
.footer-link {
    width: 50%;
}
  .qs-form {
    padding: 30px 20px;
}
.modal-content{width: 90%}
.qs-section h2{font-size: 1.1em;}
.qs-section h3{font-size: 1em; padding-left: 15px}
.qs-section h3:before{height: 6px; width: 6px}
.questions .radioboxs label, .questions .form-group select{ width: 100%; height: 45px;     font-size: 1em; }
.questions .radioboxs label span{     height: 30px;
    width: 30px; border-radius: 5px;
    line-height: 30px; }
    .checkmark{ width: 30px; height: 30px;     border-radius: 5px;}
    .checkboxx {
    margin-right: 100px;
}
.close{
      width: 40px; font-size: 2em; top: -7px; right: -10px;
    height: 40px;
    line-height: 40px;
}
.modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
    }
    .thanks-content h1{ font-size: 1.44em;line-height: 25.99px }
  .thanks-content{ width: 100%; padding: 25px }
  .thanks-content svg {
    width: 50px;
}
}
 @media (min-width:681px) and (max-width: 768px){

     body {
       font-size:14px !important;
  }
.d-container{ padding-left: 3%; padding-right:3% }
.col-md-15{ width: 50%; float: none; }
.faq-wrapper{ padding: 20px 20px 30px }
.bg-light .col-md-5{
  width: 60.666667%
}
.bg-light .col-md-3{ width: 40% }
.logo {
    width: 150px;
}
.header{
    padding-bottom: 5px;
    padding-top: 5px;
  }
.abt-section1 {
    padding: 40px 0 10px;
}
.welcome-detail-title2 h1{
   font-size: 1.6em;
    line-height: 36px;
 }
 .col-md-8{width: 70%}
 .abt-section2{ padding: 25px 0 20px }
 .ad-num{ height: 45px;
    font-size: 1em;
    width: 45px;
    line-height: 45px; }
.welcome-detail-title2 span {font-size: 1em; line-height: 26px}
.ad-right h2{ font-size: 1.2em; margin: 0 0 5px }
.ad-right {
    padding-left: 20px;
    padding-top: 0;
}
.bg-blue p{font-size: 1em;}
.bg-blue{ padding: 30px 20px; }
.bg-light{     margin-top: 30px;background-position: center;
    padding: 25px }
  .bg-light h3{ font-size: 1.33em; margin-bottom: 5px }
  .bg-light h6{font-size: 1em}
.bg-head {
    margin-bottom: 10px;
}
.adv-contnt {
   padding-top: 10px;
}
.book{ padding: 8px 25px; margin: 13px 0 7px }
.package {
    margin: 30px 0;
}
.package h2{ font-size: 1.2em;     margin-bottom: 10px; }
.thead-light th{ font-size: 1.1em; padding: 7px 17px;width: 100%; }
.table-half{ width: 100%; float: none; border: 1px solid #000000; margin-bottom: 10px }
td:nth-child(2){        width: 150px;
        display: block;}
td{height: unset;     font-size: 1em;
    color: #000000;
    padding: 10px 13px;
}
.tables{border:0;    margin-bottom: 30px;
    margin-top: 20px;}
.table-light tfoot td:nth-child(1),.table-dark tfoot td:nth-child(2){border-radius: 0}
tfoot td{ font-size: .9em }
.package p {
    font-size: 1em;
}
.lux-txt h3{font-size: 1.1em; line-height: 20px}
.img-icon {
    width: 60px;
}
.lux-wrap{margin-bottom: 5px}
.testimonilas-wrap {
    padding: 30px 0;
}
.main-title,.how-lft h2{ font-size: 1.4em }
.mt-3 {
    margin-top: 1em;
}
.testimonial-content{border: 0; margin-bottom: 20px;}
p.description{margin: 0 10px; text-align: center;}
.how-lft,.steps{border-radius: 0; }
.step-item{ padding: 15px 26px }
.step-item h2{font-size: 1.1em; margin-bottom: 10px;}
.blog-wrap {
    padding: 30px 0;
}
.blog-item{margin-bottom: 10px;}
.more{ margin: 15px auto 0 }
.why-wrap {
    padding: 5px 20px;
  }
.mtop {
    margin-top: 0;
}
.why-item h2{font-size: 1.125em; line-height: 23px}
.know-bg h2{font-size: 1.333em; text-align: center;}
.know-content .book{font-size: 1em;}
.know-bg{padding: 20px;}
.accordion-button{font-size: 1em; padding: 15px 0}
.accordion-body{padding: 15px 0 15px}
.accordion-button::after{
      height: 35px;
    width: 35px;
    line-height: 35px;
 }
 .accordion-body span{display: none;}
 .accordion-header{font-size: 1em}
 .get-txt {
    margin: 0;
}
.get-bg h2{font-size: 1.4em; line-height: 22px}
.get-btn{ padding: 8px 16px }
.footer-top-item{float: left; width: 50%; margin-bottom: 20px;}
.address p img{width: 40px;}
.footer-content-title{
    padding-bottom: 8px;    width: 50%;    margin-bottom: 10px;
}
.footer-link {
    width: 50%;
    float: left;
}
.footer-top-item:nth-child(4) {
    clear: both;
    width: 100%;
}
.footer-top-item:nth-child(1){width: 100%}
.footer-social-links li a{font-size: 1.1em !important}
.footer-social-links ul li {
    margin-right: 5px;
  }
.col-md-4.product-item {
    width: 50%; padding: 10px;
}
.bg-features{ padding: 30px }
.how-wrap .col-md-8,.how-wrap .col-md-4{
  width: 100%
}
.how-lft{ height: 100px }
.blog-wrap .col-md-4.blg{
 width: 50%; padding: 10px;
}
.blog-wrap .col-md-4.blg:nth-child(3){display: none;}

  .qs-form {
    padding: 30px 20px;
}
.modal-content{width: 80%}
.qs-section h2{font-size: 1.1em;}
.qs-section h3{font-size: 1em; padding-left: 15px}
.qs-section h3:before{height: 6px; width: 6px}
.questions .radioboxs label, .questions .form-group select{ width: 100%; height: 45px;     font-size: 1em; }
.questions .radioboxs label span{     height: 30px;
    width: 30px; border-radius: 5px;
    line-height: 30px; }
    .checkmark{ width: 30px; height: 30px;     border-radius: 5px;}
    .checkboxx {
    margin-right: 100px;
}
.close{
      width: 40px; font-size: 2em; top: -7px; right: -10px;
    height: 40px;
    line-height: 40px;
}
.modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
    }
    .qs-form {
    padding: 30px 20px;
}
.modal-content{width: 90%}
.qs-section h2{font-size: 1.1em;}
.qs-section h3{font-size: 1em; padding-left: 15px}
.qs-section h3:before{height: 6px; width: 6px}
.questions .radioboxs label, .questions .form-group select{ width: 100%; height: 45px;     font-size: 1em; }
.questions .radioboxs label span{     height: 30px;
    width: 30px; border-radius: 5px;
    line-height: 30px; }
    .checkmark{ width: 30px; height: 30px;     border-radius: 5px;}
    .checkboxx {
    margin-right: 100px;
}
.close{
      width: 40px; font-size: 2em; top: -7px; right: -10px;
    height: 40px;
    line-height: 40px;
}
.modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
    }
    .thanks-content h1{ font-size: 1.44em;line-height: 25.99px }
  .thanks-content{ width: 100%; padding: 25px }
  .thanks-content svg {
    width: 50px;
}
}
@media (max-width:768px) {
 .footer-top{display: block; padding-bottom: 0}
 .abt-img,#button{display: none;}
}
 @media (min-width:769px) and (max-width:991px){
     body {
       font-size:14px !important;
  }
.d-container{ padding-left: 3%; padding-right:3% }
.col-md-15{ width: 50%; float: none; }
.why-item
{
  padding: 75px 20px 10px
}
.faq-wrapper{ padding: 20px 20px 30px }
.bg-light .col-md-5{
  width: 60.666667%
}
.bg-light .col-md-3{ width: 40% }
.logo {
    width: 150px;
}
.header{
    padding-bottom: 5px;
    padding-top: 5px;
  }
.abt-section1 {
    padding: 40px 0 10px;
}
.welcome-detail-title2 h1{
   font-size: 1.6em;
    line-height: 36px;
 }
 .col-md-8{width: 70%}
 .abt-section2{ padding: 25px 0 20px }
 .ad-num{ height: 45px;
    font-size: 1em;
    width: 45px;
    line-height: 45px; }
.welcome-detail-title2 span {font-size: 1em; line-height: 26px}
.ad-right h2{ font-size: 1.2em; margin: 0 0 5px }
.ad-right {
    padding-left: 20px;
    padding-top: 0;
}
.bg-blue p{font-size: 1em;}
.bg-blue{ padding: 30px 20px; }
.bg-light{     margin-top: 30px;background-position: center;
    padding: 25px }
  .bg-light h3{ font-size: 1.33em; margin-bottom: 5px }
  .bg-light h6{font-size: 1em}
.bg-head {
    margin-bottom: 10px;
}
.adv-contnt {
   padding-top: 10px;
}
.book{ padding: 8px 25px; margin: 13px 0 7px }
.package {
    margin: 30px 0;
}
.package h2{ font-size: 1.2em;     margin-bottom: 10px; }
.thead-light th{ font-size: 1.1em; padding: 7px 17px;width: 100%; }
.table-half{ width: 100%; float: none; border: 1px solid #000000; margin-bottom: 10px }
td:nth-child(2){        width: 150px;
        display: block;}
td{height: unset;     font-size: 1em;
    color: #000000;
    padding: 10px 13px;
}
.tables{border:0;    margin-bottom: 30px;
    margin-top: 20px;}
.table-light tfoot td:nth-child(1),.table-dark tfoot td:nth-child(2){border-radius: 0}
tfoot td{ font-size: .9em }
.package p {
    font-size: 1em;
}
.lux-txt h3{font-size: 1.1em; line-height: 20px}
.img-icon {
    width: 60px;
}
.lux-wrap{margin-bottom: 5px}
.testimonilas-wrap {
    padding: 30px 0;
}
.main-title,.how-lft h2{ font-size: 1.6em }
.mt-3 {
    margin-top: 1em;
}
.testimonial-content{border: 0; margin-bottom: 20px;}
p.description{margin: 0 10px; text-align: center;}
.how-lft,.steps{border-radius: 0; }
.step-item{ padding: 15px 26px }
.step-item h2{font-size: 1.1em; margin-bottom: 10px;}
.blog-wrap {
    padding: 30px 0;
}
.blog-item{margin-bottom: 10px;}
.more{ margin: 15px auto 0 }
.why-wrap {
    padding: 5px 20px;
  }
.mtop {
    margin-top: 0;
}
.why-item h2{font-size: 1.125em; line-height: 23px}
.know-bg h2{font-size: 1.333em; text-align: center;}
.know-content .book{font-size: 1em; }
.know-bg{padding: 20px;}
.accordion-button{ padding: 15px 0}
.accordion-body{padding: 15px 0 15px}
.accordion-button::after{
      height: 35px;
    width: 35px;
    line-height: 35px;
 }
 .accordion-body span{display: none;}
 .accordion-header{font-size: 1em}
 .get-txt {
    margin: 0;
}
.get-bg h2{font-size: 1.4em; line-height: 22px}
.get-btn{ padding: 8px 16px }
.footer-top-item{float: left; width: 50%; margin-bottom: 20px;}
.address p img{width: 40px;}
.footer-content-title{
    padding-bottom: 8px;    width: 50%;    margin-bottom: 10px;
}
.footer-link {
    width: 50%;
    float: left;
}
.footer-top-item:nth-child(4) {
    clear: both;
    width: 100%;
}
.footer-top-item:nth-child(1){width: 100%}
.footer-social-links li a{font-size: 1.1em !important}
.footer-social-links ul li {
    margin-right: 5px;
  }
.col-md-4.product-item {
    width: 50%; padding: 10px;
}
.bg-features{ padding: 30px }
.how-wrap .col-md-8,.how-wrap .col-md-4{
  width: 100%
}
.how-lft{ height: 100px }
.blog-wrap .col-md-4.blg{
 width: 50%; padding: 10px;
}
.blog-wrap .col-md-4.blg:nth-child(3){display: none;}
.footer-top{display: block;}

  .qs-form {
    padding: 30px 20px;
}
.modal-content{width: 80%}
.qs-section h2{font-size: 1.1em;}
.qs-section h3{font-size: 1em; padding-left: 15px}
.qs-section h3:before{height: 6px; width: 6px}
.questions .radioboxs label, .questions .form-group select{ width: 100%; height: 45px;     font-size: 1em; }
.questions .radioboxs label span{     height: 30px;
    width: 30px; border-radius: 5px;
    line-height: 30px; }
    .checkmark{ width: 30px; height: 30px;     border-radius: 5px;}
    .checkboxx {
    margin-right: 100px;
}
.close{
      width: 40px; font-size: 2em; top: -7px; right: -10px;
    height: 40px;
    line-height: 40px;
}
.modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
    }
  .qs-form {
    padding: 30px 20px;
}
.modal-content{width: 80%}
.qs-section h2{font-size: 1.1em;}
.qs-section h3{font-size: 1em; padding-left: 15px}
.qs-section h3:before{height: 6px; width: 6px}
.questions .radioboxs label, .questions .form-group select{ width: 100%; height: 45px;     font-size: 1em; }
.questions .radioboxs label span{     height: 30px;
    width: 30px; border-radius: 5px;
    line-height: 30px; }
    .checkmark{ width: 30px; height: 30px;     border-radius: 5px;}
    .checkboxx {
    margin-right: 100px;
}
.close{
      width: 40px; font-size: 2em; top: -7px; right: -10px;
    height: 40px;
    line-height: 40px;
}
.modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
    }
    .thanks-content h1{ font-size: 1.44em;line-height: 25.99px }
  .thanks-content{ width: 100%; padding: 25px }
  .thanks-content svg {
    width: 50px;
}
}
 @media (min-width:992px) and (max-width:1022px){
     body {
       font-size:14px !important;
  }
.d-container{ padding-left: 3%; padding-right:3% }
.col-md-15{ width: 50%; float: none; }
.why-item
{
  padding: 75px 20px 10px
}
.faq-wrapper{ padding: 20px 20px 30px }
.bg-light .col-md-5{
  width: 60.666667%
}
.bg-light .col-md-3{ width: 40% }
.logo {
    width: 150px;
}
.header{
    padding-bottom: 5px;
    padding-top: 5px;
  }
.abt-section1 {
    padding: 40px 0 10px;
}
.welcome-detail-title2 h1{
   font-size: 1.6em;
    line-height: 36px;
 }
 .abt-section2{ padding: 25px 0 20px }
 .ad-num{ height: 45px;
    font-size: 1em;
    width: 45px;
    line-height: 45px; }
.welcome-detail-title2 span {font-size: 1em; line-height: 26px}
.ad-right h2{ font-size: 1.2em; margin: 0 0 5px }
.ad-right {
    padding-left: 20px;
    padding-top: 0;
}
.bg-blue p{font-size: 1em;}
.bg-blue{ padding: 30px 20px; }
.bg-light{     margin-top: 30px;background-position: center;
    padding: 25px }
  .bg-light h3{ font-size: 1.33em; margin-bottom: 5px }
  .bg-light h6{font-size: 1em}
.bg-head {
    margin-bottom: 10px;
}
.adv-contnt {
   padding-top: 10px;
}
.book{ padding: 8px 25px; margin: 13px 0 7px }
.package {
    margin: 30px 0;
}
.package h2{ font-size: 1.2em;     margin-bottom: 10px; }
.thead-light th{ font-size: 1.1em; padding: 7px 17px;width: 100%; }
td:nth-child(2){        width: 100px;
        display: block;}
td{height: 60px;     font-size: 1em;
    color: #000000;
    padding: 10px 13px;
}
.table-light tfoot td:nth-child(1),.table-dark tfoot td:nth-child(2){border-radius: 0}
tfoot td{ font-size: .9em }
.package p {
    font-size: 1em;
}
.lux-txt h3{font-size: 1.1em; line-height: 20px}
.img-icon {
    width: 60px;
}
.lux-wrap{margin-bottom: 5px}
.testimonilas-wrap {
    padding: 30px 0;
}
.main-title,.how-lft h2{ font-size: 1.6em }
.mt-3 {
    margin-top: 1em;
}
.testimonial-content{border: 0; margin-bottom: 20px;}
p.description{margin: 0 10px; text-align: center;}
.how-lft,.steps{border-radius: 0; }
.step-item{ padding: 15px 26px }
.step-item h2{font-size: 1.1em; margin-bottom: 10px;}
.blog-wrap {
    padding: 30px 0;
}
.blog-item{margin-bottom: 10px;}
.more{ margin: 15px auto 0 }
.why-wrap {
    padding: 5px 20px;
  }
.mtop {
    margin-top: 0;
}
.why-item h2{font-size: 1.125em; line-height: 23px}
.know-bg h2{font-size: 1.333em; text-align: center;}
.know-content .book{font-size: 1em; }
.know-bg{padding: 20px;}
.accordion-button{ padding: 15px 0}
.accordion-body{padding: 15px 0 15px}
.accordion-button::after{
      height: 35px;
    width: 35px;
    line-height: 35px;
 }
 .accordion-body span{display: none;}
 .accordion-header{font-size: 1em}
 .get-txt {
    margin: 0;
}
.get-bg h2{font-size: 1.4em; line-height: 22px}
.get-btn{ padding: 8px 16px }
.footer-top-item{float: left; width: 33%; margin-bottom: 20px;}
.address p img{width: 40px;}
.footer-content-title{
    padding-bottom: 8px;    width: 50%;    margin-bottom: 10px;
}
.footer-top-item:nth-child(1){width: 100%}
.footer-social-links li a{font-size: 1.1em !important}
.footer-social-links ul li {
    margin-right: 5px;
  }

.bg-features{ padding: 30px }

.blog-wrap .col-md-4.blg{
 width: 50%; padding: 10px;
}
.blog-wrap .col-md-4.blg:nth-child(3){display: none;}
.footer-top{display: block;}

  .qs-form {
    padding: 30px 60px;
}
.modal-content{width: 80%}
.qs-section h2{font-size: 1.1em;}
.qs-section h3{font-size: 1em; padding-left: 15px}
.qs-section h3:before{height: 6px; width: 6px}
.questions .radioboxs label, .questions .form-group select{ width: 100%; height: 45px;     font-size: 1em; }
.questions .radioboxs label span{     height: 30px;
    width: 30px; border-radius: 5px;
    line-height: 30px; }
    .checkmark{ width: 30px; height: 30px;     border-radius: 5px;}
    .checkboxx {
    margin-right: 100px;
}
.close{
      width: 40px; font-size: 2em; top: -7px; right: -10px;
    height: 40px;
    line-height: 40px;
}
.modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
    }


    .thanks-content h1{ font-size: 1.44em;line-height: 25.99px }
  .thanks-content{ width: 100%; padding: 55px }
  .thanks-content svg {
    width: 50px;
}
}
@media (max-width:992px) {
  .shape1,.shape4,.shape3,.shape2{display: none;}
}
