:root {
  --font-primary: 'Fira Sans', sans-serif;
  --font-secondary: 'Crimson Pro' ,sans-serif;
  --color-primary: #c7b299;
  --color-primary-light: #f9f5ed;
  --color-secondary: #000000;
  --color-secondary-light: #222222;
  --color-white: #ffffff;
  --color-grey: #515151;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
}

a {
  text-decoration: none;
}

.btn {
  font-size: 16px;
}

.list-group .list-group-item {
  font-size: 14px;
  color: #6c6c6c;
}

.list-group .list-group-item.active {
  color: #fff;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgb(199 178 153 / 49%);
}

.list-group-item.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 10px 20px;
  align-items: center;
}

.title:after, .title:before {
  content: " ";
  display: block;
  border-bottom: 2px solid var(--color-primary);
  border-top: 2px solid var(--color-primary);
  height: 8px;
  background-color: transparent;
}

/*Navbar*/
nav.navbar {
  background-color: #ffffffd9;
  border-bottom: 2px solid #fff;
  box-shadow: 0px 2px 10px #0003;
}

.btnNav {
  border: 1px solid var(--color-secondary) !important;
  color: var(--color-secondary) !important;
}

.btnNav.nav-link:hover {
  color: var(--color-white) !important;
}

.dropdown .dropdown-menu {
  border-radius: 0px;
  background: var(--color-primary-light);
}

@media screen and (min-width: 801px) {
.dropdown:hover>.dropdown-menu {
  display: block;
}
}

section.hero {
  background-image: url('images/slide.01.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  background-attachment: fixed;
}

section.hero h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  text-shadow: 3px 4px 3px rgb(0 0 0 / 40%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

section.hero .contentWrapper {
  background: #ffffffd9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 10px #0000003b;
}
/*Navbar*/

/*About - Home Page*/
section.about .wrapper {
  background: #f3f3f3;
  border-radius: 10px;
  border-bottom: 5px solid var(--color-primary);
  box-shadow: 0px 5px 10px #ccc6;
}

section.about .wrapper img {
  position: absolute;
  bottom: 0px;
}

@media screen and (max-width: 1024px) {
section.about .col-md-10.wrapper {
  width: 100%;
}
}
/*About - Home Page*/

/*Services - Home Page*/
section.services {
  background-image: url('images/services.bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%; 
  position: relative;
  background-attachment: fixed;
}

section.services .wrapper {
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  border-top: 6px solid var(--color-primary);
  border-bottom: 6px solid var(--color-primary);
  box-shadow: 0px 3px 10px #00000087;
  margin-bottom: 25px;
}

@media screen and (max-width: 1024px) {
section.services .col-md-8.serRWrapper {
  width: 100%;
}
}
/*Services - Home Page*/

/*Why Chose Us - Home Page*/
section.whyUs {
  background: #ecebe9;
}

section.whyUs img {
  width: 300px;
  opacity: 0.3;
  position: absolute;
  top: -90px;
  right: 50px;
}

section.whyUs .imgBg {
  z-index: 2;
  position: relative;
}

section.whyUs .wrapper {
  background: #fff;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}

section.whyUs .wrapper:hover {
  box-shadow: 4px 5px 6px #7c7a7a8c;
  z-index: 2;
}

section.whyUs .wrapper:first-child {
  border-bottom: 1px solid var(--color-secondary);
  border-right: 1px solid var(--color-secondary);
}

section.whyUs .wrapper:nth-of-type(2) {
  border-bottom: 1px solid var(--color-secondary);
  border-left: 1px solid var(--color-secondary);
}

section.whyUs .wrapper:nth-of-type(3) {
  border-top: 1px solid var(--color-secondary);
  border-right: 1px solid var(--color-secondary);
}

section.whyUs .wrapper:last-child {
  border-top: 1px solid var(--color-secondary);
  border-left: 1px solid var(--color-secondary);
}
/*Why Chose Us - Home Page*/

/*Case Studies - Home Page*/
section.caseStudies .wrapper {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

section.caseStudies .wrapper .caseImg {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

section.caseStudies .wrapper .caseImg img {
  transition: 0.5s;
}

section.caseStudies .wrapper .postTitle {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

section.caseStudies .wrapper p {
  margin: 15px 0 0 0;
}

section.caseStudies .wrapper .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
  color: var(--color-primary)
}

section.caseStudies .wrapper .readmore span {
  margin-right: 5px;
}

section.caseStudies .wrapper:hover .postTitle {
  color: var(--color-primary);
}

section.caseStudies .wrapper:hover .caseImg img {
  transform: scale(1.1);
}
/*Case Studies - Home Page*/

/*Testimonials - Home Page*/
section.testimonials {
  background-image: url('images/testimonials.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%; 
  position: relative;
  background-attachment: fixed;
}

section.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-secondary-dark-rgb), 0.8);
}

section.testimonials .section-header {
  margin-bottom: 40px;
}

section.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}

section.testimonials .testimonial-item {
  text-align: center;
  color: var(--color-white);
}

section.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid #ffffff6e;
  margin: 0 auto;
}

section.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-white);
}

section.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

section.testimonials .testimonial-item p span {
  font-size: 30px;
}

section.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

section.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  opacity: 0.5;
}

section.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

@media (min-width: 992px) {
section.testimonials .testimonial-item p {
  width: 80%;
}
}
/*Testimonials - Home Page*/

/*Footer*/
footer .footer-content {
  background: var(--color-secondary-light);
  padding: 30px 0px 20px;
}

footer .footer-content h4 {
  color: #fff;
}

footer .footer-content a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}

footer .footer-legal {
  background: var(--color-secondary);
  color: #fff;
  font-size: 14px;
  padding: 5px 0px;
}
/*Footer*/

/*Hero - About Us*/
section.aboutHero {
  background-image: url('images/slide.01.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  background-attachment: fixed;
}
/*Hero - About Us*/

/*Our Mission - About Us*/
section.ourMission .colOne {
  background: var(--color-primary);
}

section.ourMission .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}

section.ourMission .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}

section.ourMission .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}
/*Our Mission - About Us*/

/*Hero - Contact Us*/
section.contactHero {
  background-image: url('images/slide.01.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  background-attachment: fixed;
}
/*Hero - Contact Us*/

/*Contact Info - Contact Us*/
section.contactInfo .details {
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  min-height: 215px 
}

section.contactInfo .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}

section.contactInfo .details h3 {
  color: var(--color-secondary);
  font-weight: 700;
  margin: 10px 0 5px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

section.contactInfo .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

section.contactInfo .details:hover h3 {
  color: var(--color-primary);
}

section.contactInfo .details:hover .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}

section.contactInfo .details:hover .icon svg {
  fill: var(--color-primary);
}
/*Contact Info - Contact Us*/

/*Contact Form - Contact Us*/
section.contactForm {
  background-image: url('images/testimonials.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%; 
  position: relative;
  background-attachment: fixed;
}
/*Contact Form - Contact Us*/

/*Hero - Case Studies*/
section.cStudiesHero {
  background-image: url('images/slide.01.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  background-attachment: fixed;
}
section.cStudies .item .img {
  border-radius: 8px;
  overflow: hidden;
}

section.cStudies .item .img img {
  transition: 0.6s;
}

section.cStudies .item .details {
  padding: 20px 20px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  margin: -100px 30px 0 30px;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  min-height: 260px 
}

section.cStudies .item .details h3 {
  color: var(--color-secondary);
  font-weight: 700;
  margin: 10px 0 5px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

section.cStudies .item .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

section.cStudies .item .details p.cat {
  color: #878787;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}

section.cStudies .item:hover .details h3 {
  color: var(--color-primary);
}

section.cStudies .item:hover .img img {
  transform: scale(1.2);
}
/*Hero - Case Studies*/

/*Hero - Why Choose Us*/
section.wcUsHero {
  background-image: url('images/slide.01.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  background-attachment: fixed;
}
/*Hero - Why Choose Us*/

/*Hero - Service detail*/
section.servicesHero {
  background-image: url('images/slide.01.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  background-attachment: fixed;
}
section.sectionOne .colOne {
  background: var(--color-primary);
}

section.sectionOne .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}

section.sectionOne .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}

section.sectionOne .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}
/*Hero - Service detail*/
.consultation .consultationItem {
  padding: 60px 40px 0px;
  box-shadow: 0 3px 20px -2px #cccccc;
  background: var(--color-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 4px solid var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.consultation .consultationHeader{
    background-image: linear-gradient(60deg, #818080 25%, #22776600 25.05%, transparent 0), linear-gradient(350deg, #a4a4a4 20%, #40D2B300 20.05%, transparent 0), linear-gradient(125deg, transparent 69%, #39C1A500 70%, #919090 70%), linear-gradient(125deg, #919090 45%, #2D9D8700 45.01%, transparent 0), linear-gradient(125deg, #9b9b9b 70%, #35BEA200 70.05%, transparent 0) !important;
    background-size: cover;
    text-align: center;
    padding: 40px;
    margin: -60px -40px 0;
}

.consultation h3 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 36px;
  color: var(--color-white);
}

.consultation h4 {
  font-size: 48px;
  color: var(--color-white);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 0;
}

.consultation h4 sup {
  font-size: 28px;
}
.consultation .consultationItem.active .consultationHeader {
  background-image: linear-gradient(60deg, #9d8e7c 25%, #22776600 25.05%, transparent 0), linear-gradient(350deg, #d6bfa5 20%, #40D2B300 20.05%, transparent 0), linear-gradient(125deg, transparent 69%, #39C1A500 70%, #c1ac94 70%), linear-gradient(125deg, #b19f89 45%, #2D9D8700 45.01%, transparent 0), linear-gradient(125deg, #c7b299 70%, #35BEA200 70.05%, transparent 0) !important;
} 
.consultation .consultationItem.active {
  border-color: var(--color-primary);
}
.stripe-form {
  color: white;
}

.stripe-form select, .stripe-form input {
  /* color: grey !important;
  height: 40px;
  margin-bottom: 10px;
  border-top: transparent;
  border-left: transparent;
  border-right: transparent;
  background: transparent;
  background-color: transparent !important; */
}

.stripe-form select:focus, .stripe-form input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.stripe-form select option {
  background: rgba(0, 0, 0, 0.3) !important;
  color: #fff !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.form-control, .form-select {
  font-size: 14px;
  color: grey;
  position: relative;
  z-index: 0;
}

.form-input-group .form-control:first-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.form-input-group .form-control:last-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: -1px;
}

.form-input-group .form-control:focus {
  position: relative;
  z-index: 2;
}

.hint {
  color: #a09b9b;
  margin-left: 20px;
}

@media screen and (max-width:575px) {
.hint {
  width: 100%;
  display: block;
  margin-left: 0;
}
}