@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
  background-color: #f8f6f4;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

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

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

img {
  max-width: 100%;
}

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

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

p {
   font-family: "Montserrat", sans-serif;
  font-weight: 400;
}


/***** Font Files *****/

@font-face {
  font-family: 'Cammron';
  src: url(../fonts/CammronDemo.otf);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Cammron';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Cammron';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Cammron';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Cammron';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Cammron';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 15px 3%;
}
.menuSec .row{
  align-items: center;
}
.menuSec ul li a.active {
    transition: all 0.5s ease;
    /* -webkit-transition: all 0.5s ease; */
    -moz-transition: all 0.5s ease;
    color: #000;
    /* border-bottom: 1px solid #000; */
    /* padding: 6px 20px; */
    /* border-radius: 100px; */
    /* position: absolute; */
    /* width: 100%; */
    position: relative;
}
.menuSec img {
  margin: 0;
}
.menuSec a.btn-1 {
    margin: 0 0 0 auto;
}
.menuSec ul li a.active:before {
    position: absolute;
    bottom: -27px;
    width: 84px;
    height: 2px;
    background-color: #a0574e;
    content: '';
    left: -10px;
}
.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 46px;
    width: 174px;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 1px solid #b0b3ad;
}
.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    /* padding: 10px 23px; */
    font-size: 14px;
    font-family: 'Montserrat';
    color: #0a0a0a;
    font-weight: 600;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}



.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 25px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 5px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
  /* margin-top:  10px !important; */
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 10px;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}



.menuSec li ul li a:hover {
  /* background-color: #ffffff; */
  /* color: #000000 !important; */
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */

section.main_slider .container-fluid {
    padding: 0 3%;
}
.banner_text h5 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    letter-spacing: 7px;
    color: #a55850;
}

.banner_text h3 {
    font-size: 35px;
    line-height: 44px;
    color: #0a0a0a;
    font-weight: 300;
    margin-bottom: 10px;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {
    display: none;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}
.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}
.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}
/*banner css end*/

/*blog start*/
section.latest-blogs {
    padding: 100px 3%;
}
.lat-txt {
    text-align: center;
    margin-bottom: 30px;
}
.lat-txt h3 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    color: #1a1817;
    margin-bottom: 0px;
}
.lat-txt p {
    font-size: 14px;
    color: #a1a09f;
    width: 55%;
    margin: 0 auto;
}
.blog-img img {
    width: 100%;
    height: 464px;
    object-fit: cover;
}

.blog-img {
    position: relative;
    width: 95%;
}
.blog-txt {
  background-color: #f8f6f4;
  width: 95%;
  padding: 15px;
  position: relative;
  z-index: 11;
  margin-top: -212px;
}

.blog-txt ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-txt ul li p {
    font-size: 14px;
    color: #2d2d2d;
    margin: unset;
    font-weight: 600;
}
.blog-txt ul li i {
    font-size: 20px;
    color: #a65a53;
}
.blog-txt h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    color: #353331;
    margin-bottom: 15px;
}

.blog-txt h3 span {
    display: block;
}
.blog-txt p {
    font-size: 14px;
    color: #262626;
    margin: unset;
}
/*blog end*/

/* footer sec start  */

footer {
    padding: 100px 0 0 0;
    position: relative;
    z-index: 0;
    background-color: #0c0c0c;
}

.foot-bottom {
    background: #0c0c0c;
    margin-top: 40px;
    padding: 20px 0px;
    text-align: center;
}

footer h5 {
    position: relative;
    font-size: 22px;
    color: white;
    padding-left: 0px;
    text-transform: uppercase;
    line-height: 25px;
    margin-bottom: 50px;
}

footer h5:before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    background: #404040;
    top: 50px;
    left: 0;
}

p.ftr_leftp {
    font-size: 14px;
    color: #767676;
    line-height: 24px;
    width: 85%;
    margin-bottom: 50px;
    margin-top: 35px;
    position: relative;
}

p.ftr_leftp::before {
    position: absolute;
    content: "";
    width: 80%;
    height: 1px;
    background: #404040;
    top: -14px;
    left: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    background: #a55850;
    border-radius: 50%;
    font-size: 15px;
    margin-right: 10px;
}
.quick-links a:hover {
    color: #a0574e;
}
img.img-fluid {
    width: 100%;
}
.social-links a:hover {
    background-color: #c48270;
    color: #fff;
    border: 1px solid #fefefe;
}

.quick-links a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #767676;
    line-height: 36px;
    font-weight: 500;
}

footer:before {
    /* content: ''; */
    position: absolute;
    left: 0;
    top: -17%;
    height: 110%;
    width: 100%;
    background-color: #0a0a0a;
    z-index: -1;
    border-radius: 50px 50px 0 0;
}

.news-letter .container {
    padding: 40px 40px;
    position: relative;
    z-index: 2;
    background-color: #ab492e;
    box-shadow: 0px 3px 46px 0px rgba(93, 93, 93, 0.1);
    width: 70%;
    border-radius: 20px;
}

.ftr_top_btn a {
    background-color: #244065;
    color: #fff;
    padding: 15px 60px;
    font-family: 'Trajan';
    font-size: 17px;
}

.ftr_top_btn a:hover {
    border: 1px solid #244065;
    background-color: #fff;
    color: #244065;
}

.ftr_top_btn {
    text-align: end;
}

footer .container-fluid {
    margin: 0 3%;
    padding-bottom: 60px;
}

ul.contList li a {
    color: #767676;
    font-family: 'Montserrat';
}

ul.contList li a i {
    color: #b3b3b3;
    font-size: 16px;
    margin-right: 20px;
}

ul.contList {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 15px;
}

li.contListli a {
    display: flex;
    align-items: center;
    justify-content: start;
}

li.contListli i {
    color: #b3b3b3;
}

/* p.extrap {
    font-size: 14px;
    width: 70%;
    color: #767676;
} */

.box-text ul li i {
    font-size: 20px;
}


li.contListli {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
}

.ftr_top_text h2 {
    color: #fff;
    font-size: 65px;
}

.ftr_top_text {
    text-align: center;
}

.ftr_top_text p {
    color: #d7a89b;
    width: 60%;
    margin: 10px auto;
}

button.themebtn.ftr_btn {
    width: 370px;
}

span.themebtn_txt.ftr_btn {
    width: 200px;
}

.ftr_top_text form input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #c48270;
    border-radius: 30px;
    background-color: transparent;
    color: #fff;
}

.ftr_top_text form input::placeholder {
    color: #fff;
}

.ftr_top_text form {
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    gap: 15px;
}

.foot-bottom {
    border-top: 1px solid #404040;
    position: relative;
}

.foot-bottom p {
    color: #767676;
    
}

.foot-bottom .container-fluid {
    margin: 0 3%;
    padding-bottom: 0;
}



.arowbtn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    background-color: #a55850;
}

.arowbtn:hover {
    color: #a64632;
    background-color: #fff;
    border: 2px solid #a64632;
}

/* footer sec end  */




/*about start*/
section.about {
    padding: 100px 0px;
}
.abt-img {
    margin: 0 auto;
    display: block;
    width: 95%;
    position: relative;
}

.abt-img img {
    width: 100%;
    height: 590px;
    object-fit: cover;
}
a.btn-1 img {
    width: 30px;
    height: auto;
}
.abt-txt h4 {
  font-size: 42px;
  line-height: 51px;
  margin-bottom: 0;
  font-weight: 400;
  color: #1a1817;
}
.abt-txt p {
    font-size: 14px;
    color: #a6a6a6;
}
.abt-txt {
    position: absolute;
    bottom: 75px;
    right: 80px;
    width: 40%;
    background-color: #fff;
    padding: 35px 17px;
}

a.btn-1 {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #0a0a0a;
    border: 1px solid #a0574e;
    border-radius: 100px;
    width: fit-content;
    padding: 8px 14px;
    padding-right: 5px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #fff;
    font-family: "Montserrat", sans-serif;
}
/*about end*/
/*medidation start*/
section.why-meditation {
    padding: 0 3%;
}
.why-meditation-txt h3 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 200;
    color: #1a1817;
}

.why-meditation-txt h3 span {
    display: block;
}
.med-2-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.med-txt-bot {
    padding: 35px;
}

.med-txt-bot ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.med-txt-bot ul li h5 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1a1817;
}

.med-txt-bot ul li h4 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1a1817;
}
.mt-4 {
    margin-top: 1rem !important;
}
.why-meditation-txt p {
    font-size: 14px;
    color: #7f7e7d;
    width: 90%;
}
/*medidation end*/
/*work-shop start*/
section.work-shop {
    margin-bottom: 30px;
    background-image: url(../images/work-shop-bg.jpg);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 100px 0px;
    z-index: 1;
    background-attachment: fixed;
}

section.work-shop .container-fluid {
    padding: 0 3%;
}
.work-shop-txt-bx {
    text-align: center;
    background-color: #fff;
    padding: 40px;
}
.work-shop-txt-bx h3 {
    font-size: 39px;
    line-height: 54px;
    font-weight: 300;
    color: #1a1817;
    margin-bottom: 10px;
}

.work-shop-txt-bx h3 span {
    display: block;
}
section.work-shop::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    content: '';
    background-color: #a0574e;
    height: 100%;
    z-index: -1;
}
.work-shop-txt-bx p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #a6a6a6;
}

.work-shop-txt-bx a {
    margin: 0 auto;
}
.high-risk-bx {
    background-color: #a55850;
    width: 42%;
    border: 15px solid #f8f6f4;
    position: absolute;
    bottom: -53%;
    right: 9%;
    padding: 30px 23px;
}

.high-risk-bx h3 {
    font-size: 30px;
    line-height: 45px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 10px;
}

.high-risk-bx p {
    font-size: 14px;
    color: #fff;
}
.high-risk-bx h3 span {
    display: block;
}
.work-shop-bot-img img {
    width: 100%;
    height: 308px;
    object-fit: cover;
}

.work-shop-bot-img {
    width: 96%;
}

.work-shop-bot {
    padding-bottom: 100px;
}
.banner_text h1 {
    font-size: 48px;
    line-height: 60px;
    color: #a55850;
    background-color: #fff;
    padding: 6px 20px;
    border-left: 5px solid #a0574e;
    width: 100%;
    display: flex;
}
.banner_text p {
    color: #0a0a0a;
    font-size: 14px;
    line-height: 22px;
    width: 80%;
    margin-bottom: 30px;
}

/*work-shop end*/

/* category-sec */

.category-sec {
    padding: 100px 0px;
}

.category-box-1 {
    height: 600px;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

.category-box-1-img {
    width: 100%;
    height: 282px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.category-box-1-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-box-1-text {
    bottom: 0;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.category-box-1-text h3 {
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.category-box-1-text p {
    max-width: 342px;
    margin: 0px auto;
    margin-bottom: 30px;
    font-size: 14px !important;
}

.category-box-1-text a.theme-btn-1 {
    width: 100%;
    max-width: 180px;
    margin: 20px auto 0px;
}

.category-box-1 {
    min-height: 100%;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.category-box-1:hover .category-box-1-img {
    height: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.category-box-1:hover .category-box-1-text {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    position: absolute;
    transition: ease-in;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition-duration: 0.5s;
    background-color: #9d534cde;
    border: 1px solid var(--themeColor);
}

.category-box-1:hover .category-box-1-text p,
.category-box-1:hover .category-box-1-text h3 {
    color: #fff;
    font-size: 27px;
}
.category-box-1-text h3 span {
    display: block;
}
section.featured {
    padding: 0 3% 100px;
}
section.featured .slick-active {
    opacity: 1;
}
.featured-txt {
    text-align: center;
    margin-bottom: 30px;
}
.featured-txt h3 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 10px;
    font-weight: 300;
    color: #1a1817;
}
.featured-txt p {
    font-size: 14px;
    width: 62%;
    margin: 0 auto;
}
.fea-slid .slick-dots li button:before {

width: 8px;

height: 8px;

content: '';

text-align: center;

opacity: .25;

color: black;

-webkit-font-smoothing: antialiased;

-moz-osx-font-smoothing: grayscale;

background: #b1b0ae;

opacity: 1;

border-radius: 10px;
}

.fea-slid li.slick-active:after {
    content: "";
    position: absolute;
    border: 1px solid #a55850;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: -6px;
    left: -6px;
    animation: pulse-animation 2s infinite;
}

.fea-slid .slick-dots li {

    margin: 0 2px;

}

.fea-slid .slick-dots {
    bottom: -65px;
}

.fea-slid li.slick-active button:before {
    background: #a55850;
}

.fea-slid .slick-slide.slick-current.slick-active.slick-center .fea-slid-items-text {
    background-color: #d4141a;

}

.fea-slid .slick-slide.slick-current.slick-active.slick-center .fea-slid-items-text * {
    color: #fff;

}
/* category-sec */
/*scroll-down start*/
.scrolldown {
  --color: white;
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 10) solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}
section.main_slider {
    position: relative;
}
.main-scroll {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 120px;
    width: 120px;
    background-color: unset;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

/*testimonials start*/
section.testimonial {
    padding-bottom: 100px;
}
.test-top-txt {
    text-align: center;
    margin-bottom: 40px;
}
.test-top-txt h3 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #1a1817;
}
.test-top-txt p {
    font-size: 14px;
    color: #131212;
    width: 62%;
    margin: 0 auto;
}
.test-txt {
    padding: 50px;
    background-color: #fff;
    padding-left: 80px;
}
.test-txt h3 {
    font-size: 23px;
    font-weight: 300;
    margin-bottom: 0px;
}

.test-txt h4 {
    font-size: 14px;
    color: #a55850;
    margin-bottom: 10px;
}

.test-txt p {
    font-size: 14px;
    color: #bfbfbf;
    font-style: italic;
    width: 90%;
    line-height: 26px;
}
.test-txt ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: unset;
}

.test-txt ul li h5 {
    margin: unset;
    font-size: 16px;
    color: #121111;
}

.test-txt ul li a i {
    color: #fc9f25;
}
.test-slid-img .slick-slide {
    opacity: 1;
}

.test-slid-img .slick-slide {
    margin: 10px 0px;
}

.test-slid-img img {
  height: 210px;
  object-fit: cover;
}

a.btn-1:hover {
    transition: 2s;
    box-shadow: inset 300px 0 0px #a0574e;
    color: #fff;
    border: unset;
}
/*inner-banner start*/
section.main_slider.inn .carousel-inner {
    overflow: unset;
}

section.main_slider.inn .carousel-item {
    display: block;
}
section.main_slider.inn .banner_text h3 {
    margin: 0;
}

/*inner-banner end*/

.why-start {
    background-color: #fff;
    padding: 30px 20px;
    width: 85%;
    margin: 0 0px 0px auto;
    margin-top: -45px;
    position: relative;
}


section.about.inn .abt-txt {
    position: absolute;
    bottom: 44px;
    right: 80px;
    width: 45%;
    background-color: #fff;
    padding: 35px 17px;
}
.why-start h3 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 300;
    margin-bottom: 10px;
}

.why-start h3 span {
    display: block;
}

.why-start p {
    font-size: 14px;
    line-height: 27px;
    margin: 0;
}
.abt-bot-img img {
    width: 100%;
}
section.abt-bot {
    padding-bottom: 100px;
}

.abt-bot-txt {
    padding: 30px;
    text-align: center;
    background-color: #fff;
    width: 85%;
    margin: 0 auto;
    margin-top: -45px;
    position: relative;
}

.abt-bot-txt p {
    font-size: 14px;
    color: #000;
    line-height: 27px;
    margin-bottom: 20px !important;
    margin: 0 auto;
    width: 80%;
}

.abt-bot-txt h3 {
    font-size: 50px;
    line-height: 54px;
    font-weight: 300;
    margin-bottom: 10px;
}

.abt-bot-txt h3 span {
    display: block;
}


/* InnerPage Contact Us start */
.contact-pag-form form {
  position: relative;
}
.contact-pag-form .form-group {
  position: relative;
}
.contact-pag-form .form-group::after {
  content: "";
  height: 53px;
  width: 10px;
  position: absolute;
  left: 40px;
  top: 5px;
  background-size: 10px 50px;
  background-image: url(../images/aroow-forward.png);
  background-repeat: no-repeat;
}
.contact-pag-form .form-group1::after {
  content: "";
  height: 53px;
  width: 10px;
  position: absolute;
  right: 40px;
  top: 5px;
  left: unset;
  transform: rotate(180deg);
  background-size: 10px 50px;
  background-image: url(../images/aroow-forward.png);
  background-repeat: no-repeat;
}
.contact-pag-form form input.form-control {
  height: 60px;
  font-size: 15px;
  padding-left: 15px;
  border: 1px solid #bdbdbd;
  line-height: 0;
  box-shadow: none;
  color: black;
  font-weight: 400;
  background-color: transparent;
  margin-top: 26px;
  display: flex;
  border-radius: 5px;
}
.contact-pag-form form select.form-control {
  height: 60px;
  font-size: 15px;
  padding-left: 25px;
  border: 1px solid #bdbdbd;
  box-shadow: none;
  color: black;
  font-weight: 400;
  background-color: transparent;
  margin-top: 20px;
  display: flex;
  border-radius: 5px;
}
.contact-pag-form .form-group:before {
  content: "";
  position: absolute;
  background-image: url(../images/contact-line.png);
  width: 8px;
  height: 47px;
  background-repeat: no-repeat;
  left: 40px;
  top: 5px;
}
.contact-pag-form .form-group:before {
  content: "";
  position: absolute;
  background-image: url(../images/contact-line.png);
  width: 50px;
  height: 50px;
}
.contact-pag-form form input.form-control::placeholder {
  color: #909091;
}
.contact-main-sec .them-btn-1:hover {
  background-color: #00006d;
  transition: 0.3s all;
}
.contact-pag-form form textarea.form-control {
  font-size: 15px;
  padding-left: 15px;
  padding-top: 20px;
  border: 1px solid #c6c6c6;
  letter-spacing: 0;
  box-shadow: none;
  resize: unset;
  background-color: transparent;
  margin-top: 20px;
  color: #000000;
  border-radius: inherit;
  border-radius: 6px;
  height: 150px;
  scroll-behavior: unset;
  position: relative;
}
.contact-pag-form .detailss {
  position: relative;
}
.contact-pag-form .detailss i {
  position: absolute;
  top: 20px;
  color: #7e7e7e;
  left: 13px;
  font-size: 20px;
}
.contact-pag-form .email {
  padding: 0;
}
.contact-pag-form h4 {
  font-size: 62px;
  line-height: 70px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}
.contact-pag-form form textarea.form-control::placeholder {
  color: #909091;
}
.contact-pag-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #909091;
}
.contact-pag-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(18, 28, 42, 0.55);
}
.contact-pag-form :-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(18, 28, 42, 0.55);
}
.contact-pag-form :-moz-placeholder {
  /* Firefox 18- */
  color: rgba(18, 28, 42, 0.55);
}
.cicle-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border: transparent;
  height: 70px;
  width: 70px;
  border-radius: 50px;
  color: #a55850;
  background: #fff;
  border: 1px solid #bd5748;
}
.cicle-icon img {
  margin: 0 auto;
}
.contact-info {
  background: #a55850;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #c6c6c6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px;
  /* border-radius: 10px; */
}
.contact-main-sec h4 {
  font-size: 40px;
  color: #000000;
  font-weight: 400;
  line-height: 60px;
  /* font-family: 'AGENCYB'; */
  margin-bottom: 0px;
}
.contact-main-sec p span {
  display: block;
}
.contact-main-sec p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  font-family: "Oswald";
  text-transform: capitalize;
}
.contact-main-sec h2 {
  margin: 0;
  font-size: 20px;
  color: #fff;
  /* font-family: 'Brunson'; */
  text-transform: uppercase;
  font-weight: 400;
  line-height: 34px;
}
.contact_text p {
  font-size: 22px;
  line-height: 25px;
  color: #8b8b8b;
  padding-top: 0px;
  font-weight: 400;
  letter-spacing: 1px;
}
.contact_text p a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: 0.5s ease-in-out;
  display: block;
  font-family: 'Montserrat';
}
.mailt {
  padding-left: 30px;
}
.contact_text a:hover {
  color: #8b8b8b;
}
.contact_text p a.email-text:hover {
  color: #8b8b8b;
}
.contact-us {
  padding: 6% 0;
}
.contact-head {
  text-align: center;
}
.contact-head h2 {
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
}
.lg-btn {
  width: 100%;
}
.cp {
  font-size: 17px;
  line-height: 27px;
}
.contact_heading {
  margin-bottom: 30px;
}
.contact_heading h2 {
  font-size: 45px;
  color: #000000;
  font-weight: bolder;
}
.contact-side-bar {
  padding-top: 0;
  margin-left: 20px;
}
.contact-main-sec {
  padding: 100px 0;
}
.contact-pag-form .form-group i {
  position: absolute;
  top: 20px;
  color: #7e7e7e;
  left: 13px;
  font-size: 20px;
}
.contact-pag-form .form-group1 i {
  right: 13px;
  left: unset;
  color: #7f7f7f;
  pointer-events: none;
}
.contact-pag-form {
  margin-top: 0;
}
.contact-pag-form button {
  margin-top: 30px;
}
section.contact-main-sec button {display: flex;align-items: center;gap: 20px;justify-content: center;font-size: 12px;color: #fff;font-family: 'Montserrat';font-weight: 500;border: 1px solid #fff;width: fit-content;/* margin: 0 auto; */padding-left: 20px;background-color: #fff;text-transform: uppercase;color: #000;border: 2px solid #a0574e;border-radius: 100px;padding-right: 3px;padding-top: 4px;padding-bottom: 4px;}
section.contact-main-sec button span {
  /* width: 50px; */
  /* height: 58px; */
  /* border-radius: 0 5px 5px 0; */
}
.contact-pag-form .detailss::after {
  content: "";
  height: 53px;
  width: 10px;
  position: absolute;
  left: 40px;
  top: 5px;
  background-size: 10px 50px;
  background-image: url(../images/aroow-forward.png);
  background-repeat: no-repeat;
}
.cicle-icon {
  margin: 0 17px 0 0;
}
.contact-side-bar h4 {
  padding: 0 0 30px 0;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: 'Cammron';
}
/* InnerPage Contact Us end */



.lat-img {
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
    /* border-radius: 10px; */
    margin-bottom: 20px;
}



.lat-img .play-btn {

    top: 0px;

    left: 0;

    right: 0;

    bottom: 0;

    z-index: 1;

    margin: auto;

    display: flex;

    position: absolute;

    align-items: center;

    justify-content: center;

}



.lat-img .play-btn::before {

top: 0;

left: 0;

bottom: 0;

z-index: 1;

width: 100%;

content: '';

height: 100%;

opacity: 0.7;

position: absolute;

/* background-color: #000; */
}



.lat-img .play-btn i {

top: 0;

left: 0;

right: 0;

bottom: 0;

z-index: 1;

width: 65px;

margin: auto;

height: 65px;

color: #a55850;

display: flex;

font-size: 17px;

border-radius: 50%;

position: absolute;

align-items: center;

justify-content: center;

background-color: #ffffff;

animation: pulse 2s infinite;
}



@-webkit-keyframes pulse {

    0% {

        -webkit-box-shadow: 0 0 0 0 #ffffff7e;

    }



    70% {

        -webkit-box-shadow: 0 0 0 10px #ffffff7e;

    }



    100% {

        -webkit-box-shadow: 0 0 0 0 #ffffff7e;

    }

}



@keyframes pulse {

    0% {

        -moz-box-shadow: 0 0 0 0 #ffffff7e;

        box-shadow: 0 0 0 0 #ffffff7e;

    }



    70% {

        -moz-box-shadow: 0 0 0 10px #ffffff7e;

        box-shadow: 0 0 0 10px #ffffff7e;

    }



    100% {

        -moz-box-shadow: 0 0 0 0 #ffffff7e;

        box-shadow: 0 0 0 0 #ffffff7e;

    }

}



.lat-img .play-btn img {

    width: 105%;

    height: 100%;

    max-width: 105%;

    object-fit: cover;

    animation: moveLeftToRight 4s linear infinite;

}



.lat-img .vid {

    width: 100%;

    height: 100%;

}



.lat-img .vid video {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.lat-sm-img {

    width: 100%;

    height: 150px;

    overflow: hidden;

    border-radius: 10px;

}



.lat-sm-img a,
.lat-sm-img a img {
    width: 105%;
    height: 100%;
    max-width: 105%;
    object-fit: cover;
    animation: moveLeftToRight 4s linear infinite;
}

.podcast-txt {
    text-align: center;
    margin-bottom: 20px;
}

.podcast-txt h3 {
    font-size: 50px;
    font-weight: 200;
    line-height: 60px;
    margin-bottom: 10px;
}

.podcast-txt p {
    font-size: 13px;
    margin: 0 auto;
    width: 57%;
}

section.podcast {
    padding: 100px 3% 80px;
}

section.featured.inn {
    padding-top: 100px;
}

section.blog-det {
    padding: 100px 0px;
}

.blog-det-img img {
    width: 100%;
}

.blog-dt-txt h3 {
    font-size: 54px;
    line-height: 60px;
    color: #0c0c0c;
    font-weight: 300;
}

.blog-dt-txt h3 span {
    display: block;
}

.blog-dt-txt {
    padding:  20px;
    background-color: #fff;
    width: 80%;
    margin: 0 auto;
    margin-top: -100px;
    position: relative;
}

.blog-dt-txt p {
    font-size: 14px;
    color: #131212;
    line-height: 26px;
}
.blog-det-img {
    position: relative;
}

.date {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    padding: 13px 15px;
    width: fit-content;
    position: absolute;
    top: 15px;
    right: 15px;
}

.date p {
    font-size: 14px;
    color: #2d2d2d;
    margin: unset;
}

.date i {
    color: #a55850;
}

.blog-dt-txt ul li span {
    font-weight: 600;
    color: #131212;
}

.blog-dt-txt ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-dt-txt ul li h6 {
    color: #a55850;
    margin-bottom: 10px;
}


section.member-ship {
    padding: 100px 0px;
}

.member-ship-img img {
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.member-ship-img-2 img {
    width: 100%;
    margin-top: 20px;
}

.member-ship-txt {
    background-color: #fff;
    padding: 30px 15px;
    width: 100%;
}



.member-ship-txt h3 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 300;
    color: #1a1817;
    margin-bottom: 10px;
}

.member-ship-txt h3 span {
    display: block;
}

.member-ship-txt p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 14px;
}

.member-ship-txt ul li {
    display: flex;
    align-items: baseline;
    gap: 16px;
}
.member-ship-txt ul {margin: unset;}

.member-ship-txt h5 {
    font-size: 16px;
    color: #a55850;
    padding-left: 13%;
    position: relative;
}

.member-ship-txt h5::before {
    position: absolute;
    left: 0;
    width: 50px;
    height: 2px;
    content: '';
    background-color: #a0574e;
    top: 12px;
}

.pricing-area.pricing-area-style-three {
    position: relative;
    z-index: 1;
}

.pricing-area.pricing-area-style-three::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 439px;
    background-color: #f9faff;
    z-index: -1;
}

.pricing-area.pricing-area-style-three .single-pricing-box {
    background-color: #eff4fa;
}

.pricing-area.pricing-area-style-three .single-pricing-box .pricing-title {
    background-color: #f9faff;
    border-color: #f9faff;
}

.pricing-area.pricing-area-style-three .single-pricing-box .pricing-title h1 {
    transition: all ease 0.5s;
}

.pricing-area.pricing-area-style-three .single-pricing-box:hover .pricing-title {
    border-color: #62bd5e;
}

.pricing-area.pricing-area-style-three .single-pricing-box:hover .pricing-title h1 {
    color: #62bd5e;
}

.pricing-area.pricing-area-style-three .single-pricing-box:hover .pricing-title h1 sub {
    color: #333333;
}

.single-pricing-box {
    background-color: #f8f7f2;
    margin-bottom: 30px;
    border: 2px solid #222222;
    transition: 0.35s;
}

.pricing-head {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    transition: 0.5s;
}

.pricing-head p {
    color: #000;
    margin: 0;
}

.single-pricing-box .pricing-title {
    padding: 30px;
    /* border-bottom: 2px solid #ffffff; */
    /* transition: all ease 0.5s; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding-bottom: 0px;
    padding-top: 0;
}

.single-pricing-box h3 {
    font-size: 25px;
    display: block;
    margin-bottom: 15px;
    color: #000;
    font-weight: 300;
}

.single-pricing-box .pricing-title h1 {
    margin-bottom: 30px;
    line-height: 1;
    font-size: 48px;
    margin: 0;
    color: #000;
}

.single-pricing-box ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    line-height: 1;
    margin: 10px 0px 30px;
}

.single-pricing-box ul li {
    font-size: 15px;
    margin-bottom: 20px;
    color: #8d8d8d;
    position: relative;
    padding-left: 30px;
    line-height: 26px;
}

section.pricing-area {
    padding: 80px 0;
}

.pricing-title h6 {
    font-size: 20px;
    color: #171717;
    text-transform: uppercase;
    margin: 0;
}

.pricing-title h6 del {
    display: block;
}

.pricing-body {
    padding: 30px;
    /* padding-top: 0; */
    background-color: #fff;
}

.single-pricing-box ul li:before {
    position: absolute;
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    left: -2px;
    color: #8d8d8d;
}

.single-pricing-box:hover {
    border-color: #a55850;
}

.single-pricing-box:hover .pricing-head {
    background: #a55850;
}

.mem-ship-txt h3 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #1a1817;
}

.mem-ship-txt {
    text-align: center;
    margin-bottom: 30px;
}

.mem-ship-txt p {
    font-size: 14px;
    color: #131212;
    width: 62%;
    margin: 0 auto;
}







section.faqs {
    padding: 80px 0px;
}

.faq-txt h3 {
    text-align: center;
    font-size: 45px;
    line-height: 60px;
}

.faq-inn-mn .accordion-body {
    padding: 10px 10px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    border-color: #dee2e6 #dee2e6 #fff;
    border-radius: 0;
    background-color: unset !important;
    border: 0;
    text-decoration: underline;
    color: #fff;
}

.nav-tabs .nav-link {
    font-size: 22px;
    color: #fff;
}

li.nav-item {
    padding: 5px 56px;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    justify-content: center;
    background-color: #b47b3d;
    border-radius: 100px;
    width: 70%;
    text-align: center;
    margin: 0 auto 40px;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
    height: 70px;
    text-transform: uppercase;
    font-size: 20px;
    background-color: #a0574e;
}
.faq-inn-mn .accordion-body p {
    font-size: 14px;
    line-height: 27px;
}

.faq-inn-mn .accordion-body ul li {
    list-style: disc;
    font-size: 13px;
}

.faq-inn-mn .accordion-body ul {
    padding-left: 20px;
}

/*Faq's end*/
p.p-bold {
    font-weight: 700;
    color: #000;
}
.high-risk-bx ul li {
    color: #fff;
    font-size: 13px;
    line-height: 24px;
}

.high-risk-bx ul {
    column-count: 2;
}
section.mind {
    padding-bottom: 100px;
}
.mind-txt {
    padding: 20px;
    background-color: #a0574e;
    height: 250px;
    text-align: center;
    box-shadow: 0 0 10px #00000075;
}
.landing_page_mind .mind-txt{
    height:210px !important;
}
.mind-txt h4 {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 40px;
    color: #fff;
}

.mind-txt p {
    font-size: 14px;
    color: #fff;
    line-height: 26px;
}

.mind-txt a {
    text-decoration: underline;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
}
section.body {
    padding: 80px 0px;
}
.body-det-txt p {
    font-size: 14px;
    color: #000;
    line-height: 28px;
}
.body-det-txt {
    padding: 40px;
    box-shadow: 0 0 3px #0000008c;
    text-align: center;
    margin: 0 auto;
    width: 85%;
    border-radius: 20px;
}
.body-det-txt.chose ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    width: fit-content;
    padding-bottom: 20px;
}

.body-det-txt.chose ul li i {
    font-size: 13px;
    background-color: #a0574e;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.body-det-txt.chose ul li p {
    margin: unset;
}
.body-det-txt.chose h3 span {
    display: block;
}

.body-det-txt.chose h3 {
    margin-bottom: 10px;
    color: #000;
    line-height: 45px;
}

.body-det-txt.chose h4 {
    color: #000;
}
.body-det-txt.chose h5 {
    text-align: left;
    margin: 30px 0px 20px 0px;
    color: #000;
}
.body-det-txt.chose.res h4 {
    text-align: left;
}

.body-det-txt.chose.res p {
    text-align: left;
}
.body-det-txt.chose.res {
    width: 80%;
}

.body-det-txt.chose.res ul li p span {
    font-weight: 700;
    color: #000;
}
.member-ship-txt h3 {
    font-size: 30px;
    line-height: 40px;
}


.member-ship-txt ul.col {column-count: 2;margin-bottom: 0px;}

.member-ship-txt ul.col li {
    padding-bottom: 10px;
    color: #000;
}
.member-ship-txt h4 {
    font-size: 18px;
    line-height: 20px;
}
.member-ship-txt h6 {
    margin-bottom: 10px;
}
ul.check-i li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-pricing-box ul.check-i li:before {
    display: none;
}
ul.check-i li p {
    margin: unset;
}
.single-pricing-box ul li span {
    display: block;
}
.blog-txt h6 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

header.lan {
    border: unset !important;
}

header.lan .logo-img.lan {
    position: relative !important;
    margin: 0 auto;
    top: -15px;
}