@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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

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-weight: 500;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  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: 600;
  padding: 15px 28px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid #59865C;
  text-transform: uppercase;
  background: #59865C;
  border-radius: 4px;
  font-family: 'Open Sans';
}

.theme-btn:hover {
  background-color: #1b1d21;
  color: #fff;
  border-color: #1b1d21;
}

.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: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #1b1d21;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', 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: 24px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
}

.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;
    color: #1a1b1e;
    padding: 10px 17px;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: unset;
  right: 0;
  width: 2px;
  height: 3px;
  background-color: #55BB53;
  width: 87%;
  margin: 0 auto;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.9s;
}
.menuSec ul li:hover a:after {
    opacity: 1;
}
.menuSec ul li:last-child a {
  padding-right: 17px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #55BB53;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.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 */




.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 {}
.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: #0000008c;
}
.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_sec {
  padding: 5% 0;
}
/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}
/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}
/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}
.tabcontent.active {
  display: block;
}
/*slick slider in tabs css start*/

.nav-item {padding: 10px;}
a.header-logo {
    font-size: 22px;
    font-family: 'Open Sans';
    font-weight: 700;
    color: #1b1d21;
}

.menuSec .row {
    align-items: center;
}
.rt-btn {
    text-align: center;
}

.menuSec.sticky {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 24px 0px;
    animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    z-index: 9999;
}
@-webkit-keyframes stickySlideUp {
  from {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes stickySlideUp {
  from {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}



/*banner Css Start*/

.banner_text h3 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #55BB53;
    background: #fff;
    width: fit-content;
    padding: 0px 15px;
    border-left: 3px solid #55BB53;
    border-radius: 4px;
    line-height: 32px;
}

.banner_text h1 {
    font-size: 45px;
    font-family: 'Open Sans';
    font-weight: 700;
}

.banner_text p {
    font-size: 18px;
    font-family: 'Open Sans';
    line-height: 35px;
    padding: 23px 0px;
}
.banner_text {
    margin-top: -140px;
}
.banner-btn ul li i {
    background: #fff;
    color: #5d865d;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}

.banner-btn ul li {
    font-family: 'Open Sans';
    font-size: 14px;
    font-weight: 500;
}

.banner-btn ul li span a {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.banner-btn ul li span {
    display: block;
}

.banner-btn ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: unset;
}

.banner-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-btn a.theme-btn {
    margin: unset !important;
}
/*Banner Css End*/


/*Section ABout Us Start*/

.img-about-us img {
    width: 100%;
    border-radius: 6px;
}

.text-aboutus h3 {
    font-family: 'Open Sans';
    font-size: 14px;
    margin-bottom: 2px;
    padding-left: 60px;
    position: relative;
    color: #95A2AC;
    text-transform: uppercase;
}

.text-aboutus h2 {
    font-family: 'Open Sans';
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #1b1d21;
    margin-bottom: 20px;
}

.text-aboutus p {
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #5f5f5f;
    margin-bottom: 30px;
}

.text-aboutus h3::before {
    position: absolute;
    content: '';
    background: #95A2AC;
    width: 50px;
    height: 2px;
    left: 0;
    top: 16px;
}

.about-main-sec .row {
    margin: 0px 60px;
}

.about-main-sec {
    padding: 100px 0px 50px;
}


/*Section About Us End*/


/*Section Sewrvices Start*/
.services-main-sec {
    background-image: url(../images/service-back.jpg);
    width: 100%;
    height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}


.header-services h2 {
    font-family: 'Open Sans';
    font-size: 36px;
    color: #fff;
    font-weight: 700;
}

.header-services p {
    font-size: 16px;
    font-family: 'Open Sans';
    font-weight: 500;
    color: #AFC1CE;
}


.service-img img {
    width: 100%;
    border-radius: 6px;
}

.service-img {
    position: relative;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.9s ease;
}
.service-main-txt a:hover {
    gap: 5px;
}
.service-img-text {
    position: absolute;
    bottom: 0px;
    padding: 35px 40px 14px;
}

.service-img-text span {
    color: #fff;
    font-size: 24px;
    font-family: 'Open Sans';
    font-weight: 500;
}

.service-img-text h3 {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
    line-height: 40px;
}


.service-main-txt {
    padding: 70px 59px;
    background: #12344D;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: rotateY(-180deg);
    backface-visibility: hidden;
    transition: transform 0.9s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.service-main-txt p {
    font-family: 'Open Sans';
    font-size: 16px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    line-height: 30px;
}

.service-main-txt a {
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #59865c;
    margin-top: 20px;
    text-transform: uppercase;
}

.service-box {
    position: relative;
    z-index: 1;
    perspective: 1200px;
    transform-style: preserve-3d;
}


.service-box:hover .service-img {
    transform: rotateY(180deg);
}

.service-box:hover .service-main-txt {
    transform: rotateY(0deg);
}
.service-btm-btn {
    text-align: center;
    margin-top: 70px;
}
/*Section Services End*/


/*Section Faqs Start*/
.accordion-button {
    background-color: #5f7f5f !important;
    color: #fff !important;
    font-weight: 500 !important;
    font-size: 16px;
    font-family: 'Open Sans';
    padding: 11px 21px;
    border-radius: 6px;
    box-shadow: unset !important;
    line-height: 28px;
}

.accordion-button.collapsed {
    background-color: #e9ecef !important;
    color: #000 !important;
    font-size: 16px;
    font-family: 'Open Sans';
    line-height: 29px;
}

.accordion-button::after {
    display: none;
}

.accordion-button:not(.collapsed)::after {
    display: none;
}
.accordion-item {
    border: 0;
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-body {
    background: #f8f9fa;
}


.accordion-item {
    border: 0;
    margin-bottom: 16px;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-body {
    background: #fff;
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    padding: 17px 37px;
}
.faqs-main-txt h3::before {
    position: absolute;
    content: '';
    background: #95A2AC;
    width: 50px;
    height: 2px;
    left: 0;
    top: 16px;
}

.faqs-main-txt h3 {
    font-family: 'Open Sans';
    font-size: 14px;
    margin-bottom: 2px;
    padding-left: 60px;
    position: relative;
    color: #95A2AC;
    text-transform: uppercase;
}

.faqs-main-txt h2 {
    font-family: 'Open Sans';
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #1b1d21;
    margin-bottom: 31px;
}
.faqs-main-img img {
    width: 100%;
}

h2.accordion-header {
    margin-bottom: unset;
}

.faqs-main-txt {
    padding-right: 70px;
}

.faqs-main-sec .row {
    margin: 0px 40px;
}
.faqs-main-sec {
    padding: 100px 0px 60px;
}


.arrow-icon {
    transition: transform 0.3s ease;
}

.accordion-button.collapsed .arrow-icon {
    transform: rotate(90deg);  
}

.accordion-button:not(.collapsed) .arrow-icon {
    transform: rotate(0deg); 
}
/*Section faqs End*/


/*Section counter Start*/
.counter span {
    font-family: 'Open Sans';
    font-size: 46px;
    font-weight: 700;
    color: #fff;
}
.counter {
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Open Sans';
    font-size: 46px;
    font-weight: 700;
    color: #fff;
}

.counter-box h4 {
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 0px;
}
.counter-sec .row {
    background: #5d865d;
    padding: 45px 0px 38px;
    border-radius: 8px;
}

.counter-box {
    position: relative;
}
.forth-counter.award-win .counter-box:before {
    display: none;
}
.counter-sec {
    margin-top: 60px;
}

.counter-icon svg {
    fill: #fff;
    width: 64px;
    margin: 0 auto;
    height: 69px;
}

.counter-icon {
    text-align: center;
    margin-bottom: 26px;
}

/*Section Counter End*/


/*Section home Contact Start*/


.hm-contact-box h3::before {
    position: absolute;
    content: '';
    background: #95A2AC;
    width: 50px;
    height: 2px;
    left: 0;
    top: 16px;
}

.hm-contact-box h3 {
    font-family: 'Open Sans';
    font-size: 14px;
    margin-bottom: 2px;
    padding-left: 60px;
    position: relative;
    color: #95A2AC;
    text-transform: uppercase;
}

.hm-contact-box h2 {
    font-family: 'Open Sans';
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #1b1d21;
    margin-bottom: 31px;
}

.hm-contact-box p {
    font-weight: 500;
    font-family: 'Open Sans';
    font-size: 14px;
    color: #5F5F5F;
    margin-bottom: 32px;
}

.hm-contact-field input {
    border: 1px solid #00000021;
    width: 100%;
    padding: 13px 17px;
    border-radius: 3px;
}

.hm-contact-field {
    margin-bottom: 13px;
}

.hm-contact-field textarea {
    border: 1px solid #00000021;
    width: 100%;
    padding: 10px 17px;
    border-radius: 4px;
    height: 170px;
}

.hm-contact-field textarea::placeholder {
    font-family: 'Open Sans';
    font-size: 14px;
}

.hm-contact-field input::placeholder {
    font-family: 'Open Sans';
    font-size: 14px;
}

.hm-contact-box {
    background: #fff;
    padding: 13px 60px 0px;
    margin-left: -80px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    margin-top: 40px;
    border-radius: 6px;
}

.img-contact img {
    border-radius: 7px;
}

.hm-contact-main {
    padding: 90px 0px;
}
.hm-contact-btn .theme-btn {
    margin: unset !important;
}

.hm-contact-btn {
    padding-bottom: 10px;
}
/*Section Home Contact End*/


/*Section build Start*/

.text-build h2 {
    font-size: 40px;
    font-family: 'Open Sans';
    font-weight: 700;
    line-height: 47px;
    margin-bottom: 10px;
    width: 90%;
    color: #fff;
}

.text-build p {
    font-size: 15px;
    font-family: 'Open Sans';
    line-height: 31px;
    color: #fff;
    margin-bottom: 0px;
}

.build-main-sec {
    background-image: url(../images/build-back.jpg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 82px 0px 80px 0px;
    background-position: center center;
}

.btn-build a.theme-btn {
    margin: unset;
    padding: 15px 23px;
    float: inline-end;
}

.build-main-sec .row {
    align-items: center;
}
.build-main-sec .row {
    justify-content: center;
}
/*Section build End*/

/*Section testimonial Start*/

.txt-testi p {
    font-size: 22px;
    font-family: 'Open Sans';
    color: #5F5F5F;
    font-weight: 300;
    line-height: 36px;
    padding-bottom: 17px;
    width: 90%;
    margin: 0 auto;
}

.txt-testi h3 {
    font-size: 22px;
    font-family: 'Open Sans';
    color: #000;
    font-weight: 600;
    margin-bottom: 0px;
}

.txt-testi h3 span {
    display: block;
    font-size: 14px;
    color: #5d865d;
    text-transform: uppercase;
}

.testi-profile {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.testi-profile i {
    border: 1px solid #5d865d;
    background: #5d865d;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -14px;
    margin: 0 auto;
    right: -91px;
}

.txt-testi {
    text-align: center;
}

.testimonial-main-sec .row {
    justify-content: center;
}

.testimonial-main-sec {
    padding: 90px 0px;
    background-image: url(../images/testi-back.jpg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 117px 0px 71px 0px;
}
.heading-testi h3 {
    font-family: 'Open Sans';
    font-size: 14px;
    margin-bottom: 2px;

    position: relative;
    color: #95A2AC;
    text-transform: uppercase;
}

.heading-testi h2 {
    font-family: 'Open Sans';
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #1b1d21;
    margin-bottom: 13px;
}
.heading-testi {
    text-align: center;
    margin-bottom: 60px;
}
.testi-profile img {
    width: 90px;
    margin: 0 auto;
}

.slick-slide {
    margin: 20px 0px;
}
.slick-prev:before {
    content: "\f060";
    font-family: 'FontAwesome';
    padding: 16px 14px;
    background: #dcdbdb80;
    font-size: 17px;
}

.slick-next:before {
    content: "\f061";
    font-family: 'FontAwesome';
    padding: 16px 14px;
    background: #dcdbdb80;
    font-size: 17px;
}

.slick-next {
    right: -55px;
}

.slick-prev {
    left: -55px;
}
/*Section testimonial End*/

/*Section Newsletter Start*/
.newsletter-txt h2 {
    font-family: 'Open Sans';
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.newsletter-field input {
    border: 1px solid #ffffffad;
    width: 38%;
    padding: 10px 10px;
    height: 57px;
    background: transparent;
    color: #fff;
    border-radius: 4px;
}

.newsletter-field {
    display: flex;
    gap: 10px;
}

.newsleter-sec .row {
    background: #59865C;
    justify-content: center;
    align-items: center;
    padding: 60px 0px;
}

.newsleter-sec {
    margin-bottom: -83px;
    position: relative;
}

.newsletter-field button.theme-btn {
    color: #000;
    background: #fff;
    margin: unset;
}
.newsletter-field input::placeholder {
    font-family: 'Open Sans';
    font-size: 14px;
    color: #fff;
}

/*Section Newsletter End*/


/*Footer Start*/

.ft-logo-main a {
    font-size: 32px;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    line-height: 40px;
}

.ft-logo-main p {
    font-family: 'Open Sans';
    font-size: 16px;
    width: 80%;
    color: #AFC1CE;
    margin-top: 30px;
    line-height: 30px;
}

footer {
    background: #061E2F;
    padding-top: 120px;
}

.ft-links h2 {
    font-family: 'Open Sans';
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: unset;
}

.ft-links  ul li a {
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 400;
    color: #C0C1C2;
}

.ft-links ul li {
    margin-bottom: 14px;
}

.ft-contact h2 {
    font-family: 'Open Sans';
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: unset;
}

.ft-contact ul li {
    font-family: 'Open Sans';
    font-size: 16px;
    color: #C0C1C2;
    line-height: 30px;
}

.ft-contact ul {
    display: flex;
    align-items: start;
    gap: 15px;
}

.ft-contact ul li span {
    display: block;
}

.ft-contact ul li a {
    display: block;
    color: #fff;
}

.ft-contact ul li i {
    color: #61865e;
    font-size: 22px;
    margin-top: 8px;
}

.ft-btm p {
    text-align: center;
    color: #879DAD;
    padding: 21px 0px;
    border-top: 1px solid #879DAD;
    margin-bottom: 0px;
    font-size: 15px;
    font-family: 'Open Sans';
    margin-top: 80px;
}

.ft-contact {
    margin-left: 50px;
}

footer .row {
    justify-content: center;
}

.ft-links {
    margin: 0px 80px;
}

ul.ft-social li {
    background: #18374e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.ft-social li a {
    font-size: 15px;
}

ul.ft-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

ul.ft-social li:hover {
    background: #4B83FC;
    transition: 0.7s;
}
/*Footer End*/


/*inner Banner Start*/

.inner-ban-rt-txt p {
    font-family: 'Open Sans';
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
    margin-bottom: unset;
    text-transform: uppercase;
}

.inner-ban-rt-txt p i {
    font-size: 11px;
}

.inner-ban-rt-txt p a {
    color: #ffffffad;
}

.inner-banner .banner_text {
    margin-top: unset;
}

.inner-banner .row {
    align-items: center;
}

.inner-banner .banner_text h1 {
    margin-bottom: unset;
}

.inner-banner .carousel-caption {
    background: unset;
}
section.inner-about-sec {
    padding-bottom: 60px;
}
section.inner-about-sec .text-aboutus p {
    font-size: 15px;
}
/*inner Banner End*/


/*testimonials Page Start*/

.inner-testi-box p {
    font-size: 18px;
    font-family: 'Open Sans';
    font-weight: 400;
    line-height: 36px;
    padding: 31px 36px 20px;
    color: #5F5F5F;
}

.inner-testi-box .testi-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 1px solid #0000004f;
    padding: 25px 30px;
}

.inner-testi-box .testi-profile h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: 'Open Sans';
    text-align: left;
}

.inner-testi-box .testi-profile h3 span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: #5d865d;
}

.inner-testi-box .testi-profile img {
    margin: unset;
}

.inner-testi-box .testi-profile i {
    margin: unset;
    left: 90px;
    top: 10px;
}

.inner-testi-box {
    box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
}
.inner-testi .row {
    margin: 0px 70px;
}

.inner-testi {
    padding: 90px 0px;
}
.testi-heading {
    text-align: center;
    margin-bottom: 30px;
}

.testi-heading h2 {
    font-family: 'Open Sans';
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #1b1d21;
    margin-bottom: 18px;
}

.testi-heading p {
    font-family: 'Open Sans';
    font-size: 16px;
    color: #5F5F5F;
}
/*testimonials Page End*/



/*Service Detail Page STart*/

.package-price-section{
  padding:80px 0;
  background:#f7f9f8;
}

.package-price-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  padding:0 15px;
}

.package-price-card{
  background:#fff;
  border-radius:14px;
  padding:40px 30px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.package-price-title{
  font-size:22px;
  font-weight:600;
  margin-bottom:25px;
}

.package-price-pill{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  background:#5f855a;
  color:#fff;
  border-radius:40px;
  padding:14px 20px;
  margin-bottom:30px;
}

.package-price-pill.white{
  background:#fff;
  color:#000;
}

.package-price-currency{
  font-size:16px;
  line-height: unset;
  margin-top: -12px;
}

.package-price-amount{
  font-size:36px;
  font-weight:700;
}

.package-price-duration{
  font-size:14px;
  margin-top: 13px;
}

.package-price-features{
  list-style:none;
  padding:0;
  margin:0 0 35px;
}

.package-price-features li{
  font-size:15px;
  padding:8px 0;
  color:#555;
}

.package-price-btn{
  display:inline-block;
  padding:12px 30px;
  border:2px solid #e1e1e1;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  color:#000;
  text-decoration:none;
}

.package-price-active{
  background:#5f855a;
  color:#fff;
  /* transform:translateY(-20px); */
}

.package-price-active .package-price-title,
.package-price-active .package-price-features li{
  color:#fff;
}

.package-price-btn.white-btn{
  background:#fff;
  color:#000;
  border:none;
}


.package-price-card:hover {
    background: #62855b;
}

.package-price-card:hover h3.package-price-title {
    color: #fff;
}

.package-price-card:hover .package-price-pill {
    background: #fff;
    color: #000;
}

.package-price-card:hover .package-price-features li {
    color: #fff;
}

.package-price-card:hover a.package-price-btn {
    background: #fff;
}

.pakage-heading h2 {
    font-family: 'Open Sans';
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #1b1d21;
    margin-bottom: 20px;
}
.pakage-heading p {
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #5f5f5f;
    margin-bottom: 30px;
}
.pakage-heading {
    text-align: center;
    margin-bottom: 70px;
}
/*Service Detail Page End*/

/*team Page Start*/


.team-img img {
    width: 100%;
}

.team-txt h3 {
    font-size: 22px;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #1b1d21;
    margin-bottom: 5px;
}

.team-txt p {
    text-transform: uppercase;
    font-family: 'Open Sans';
    font-size: 13px;
    color: #5d865d;
    font-weight: 500;
    margin-bottom: 0px;
}

.team-txt {
    text-align: center;
}

.team-txt {
    padding: 27px 0px;
}

.team-main-box {
    box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    margin-bottom: 30px;
}

.team-main-box:hover {
    background: #262832;
    transition: 0.7s;
}

.team-main-box:hover h3 {
    color: #fff;
    transition: 0.6s;
}

.team-main-sec {
    padding: 90px 0px;
}

.team-main-sec .row {
    margin: 0px 70px;
}
.social-fab{
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.social-toggle{
  width: 43px;
  height: 43px;
  border-radius: 5px;
  border:none;
  background: #fff;
  color: #000;
  font-size:20px;
  cursor:pointer;
  z-index:2;
}

.social-list{
  list-style:none;
  padding:0;
  margin:0;
  position:absolute;
  bottom:60px;
  right:0;
}

.social-list li{
  margin-bottom:10px;
  transform:translateY(20px);
  opacity:0;
  transition:.35s ease;
}

.social-list a{
  width: 41px;
  height: 41px;
  background:#1f2933;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  text-decoration:none;
  font-size: 15px;
}

.social-fab.active .social-list li{
  transform:translateY(0);
  opacity:1;
}
.team-img {
    position: relative;
}
.social-fab.active .social-list li:nth-child(1){transition-delay:.05s}
.social-fab.active .social-list li:nth-child(2){transition-delay:.1s}
.social-fab.active .social-list li:nth-child(3){transition-delay:.15s}
.social-fab.active .social-list li:nth-child(4){transition-delay:.2s}

.team-main-sec .pakage-heading h3 {
    font-family: 'Open Sans';
    font-size: 14px;
    margin-bottom: 2px;
    padding-left: 60px;
    position: relative;
    color: #95A2AC;
    text-transform: uppercase;
}

/*team Page End*/


/*Book page Start*/

section.appointment-sec {
    padding: 100px 0;
}

.appointment-form input {
    width: 100%;
    height: 60px;
    margin: 0 0 20px;
    border: 1px solid #00000038;
    padding: 0 20px;
    color: #000;
    font-size: 14px;
}

.appointment-form input::placeholder {
    text-transform: uppercase;
    font-size: 14px;
}

.appointment-form select {
    width: 100%;
    height: 60px;
    margin: 0 0 20px;
    border: 1px solid #00000038;
    padding: 0 20px;
    color: #000000ab;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-appearance: auto;
}

.appointment-form textarea {
    width: 100%;
    height: 210px;
    margin: 0 0 0px;
    border: 1px solid #00000038;
    padding: 20px;
    color: #000;
    font-size: 14px;
}

.appointment-form textarea::placeholder {
    text-transform: uppercase;
}

.appointment-btn {
    /* text-align: center; */
}

section.appointment-sec .pakage-heading {
    margin-bottom: 40px;
}
.appointment-btn .theme-btn {
    text-transform: capitalize;
}
/*Book Page End*/



.contact-main-text ul li {
    font-family: 'Open Sans';
    font-size: 16px;
    color: #1b1d21;
    line-height: 30px;
    font-weight: 500;
    color: #000;
}

.contact-main-text ul {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-main-text ul li span {
    display: block;
}

.contact-main-text ul li a {
    display: block;
    color: #5F5F5F;
    font-weight: 400;
}

.contact-main-text ul li i {
    color: #61865e;
    /* margin-top: 7px; */
    background: #eff8ee;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}
.contact-main-text h2 {
    font-family: 'Open Sans';
    font-size: 36px;
    font-weight: 700;
    color: #1b1d21;
    margin-bottom: 10px;
}

.contact-main-text h3 {
    font-family: 'Open Sans';
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #5d865d;
}

.contact-main-text p {
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-img {
    margin-left: -180px;
}

.contact-main-sec .row {
    justify-content: center;
}
.appointment-form h3 {
    font-family: 'Open Sans';
    font-size: 30px;
    font-weight: 700;
    color: #1b1d21;
    margin-bottom: 30px;
}

.contact-field-main {
    margin-top: -310px;
    position: relative;
    z-index: 2;
}

.contact-field-main .appointment-form textarea {
    height: 189px;
}

.contact-main-sec {
    padding-top: 100px;
}

.contact-field-main .appointment-form {
    padding: 60px 60px 40px 60px;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    background: #fff;
}
.contact-map iframe {
    width: 100%;
    height: 520px;
}

.contact-map {
    margin-top: -70px;
}
.contact-field-main .appointment-btn .theme-btn {
    text-transform: uppercase;
}





