@charset "utf-8";
/* Variables */
:root {
  --brand-clr1: #d0b074;
  --brand-clr2: #183a47;
  --brand-clr3: #213f48;
  --body-clr1: #6f6f6f;
  --body-clr2: #202020;
  --body-clr3: #161616;
  --white-clr: #ffffff;
  --black-clr: #000000;
  --gray-clr1: #f5f5f5;
  --gray-clr2: #e7e7e7;
  --family-josefin:'Josefin Sans', sans-serif;
  --family-mrs:'Mrs Saint Delafield', cursive;
  --family-hollanda:'Hollanda';
  --transition: all ease .4s;
  --shadow1: 3px 3px 3px rgba(0, 14, 79, 0.25);
}
/* Normal CSS */
html {
  overflow-x: hidden;
}
body {
  font-size: 16px;
  color: var(--body-clr1);
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  line-height: 1.42857143;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
*, *:focus {
  outline: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover, a:focus {
  color: var(--brand-clr1);
}
a:focus {
  outline: none;
  outline-offset: 0;
}
p, .p {
  font-size: 16px;
  padding-bottom: 10px;
  margin-bottom: 0;
  line-height: 1.6;
}
ol, ul {
  padding-left: 0;
}
img {
  max-width: 100%;
  object-fit: cover;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  padding-bottom: 10px;
  margin-bottom: 0;
  line-height: 1.3;
  font-weight: 700;
}
h1 strong, .h1 strong, h2 strong, .h2 strong, h3 strong, .h3 strong, h4 strong, .h4 strong, h5 strong, .h5 strong, h6 strong, .h6 strong {
  color: var(--brand-clr2);
}
svg * {
  fill: none;
  stroke: #4D6C85;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
video {
  width: 100%;
  height: auto;
  border: none;
}
section {
  display: flex;
  padding: 100px 0;
  align-items: center;
}
::selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-webkit-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-moz-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-o-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
::-ms-selection {
  background: var(--brand-clr1);
  color: var(--white-clr);
}
.title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.title-wrap h2 + p {
  padding-top: 18px;
}
.title-wrap p {
  line-height: 1.8;
}
.title-wrap p + p {
  padding-top: 17px;
}
.title-wrap p strong {
  font-weight: 500;
}
/* Reseted CSS */
b, strong {
  font-weight: bold;
}
.row {
  margin: 0 -10px;
}
[class*="col-"] {
  padding: 0 10px;
}
figure {
  margin: 0;
}
/* fonts CSS */
@font-face {
  font-family: 'Hollanda';
  src: url('../fonts/Hollanda.eot');
  src: url('../fonts/Hollanda.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Hollanda.woff2') format('woff2'),
      url('../fonts/Hollanda.woff') format('woff'),
      url('../fonts/Hollanda.ttf') format('truetype'),
      url('../fonts/Hollanda.svg#Hollanda') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Form CSS  */
label {
  cursor: pointer;
}
textarea {
  resize: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  border: none;
  border-radius: 0;
}
.form-control:focus {
  color: var(--orange-clr);
  box-shadow: none;
}
.form-control::placeholder {
  color: var(--body-clr1);
}
/* Button CSS */
.btn {
  font-size: 16px;
  padding: 12px 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: var(--transition);
  transition-property: border;
  line-height: normal;
  z-index: 0;
  min-width: 180px;
}
.btn img {
  margin-right: 10px;
}

header .btn-golden {
  color: #1a1a1a;
  background: var(--brand-clr1);
  transition: var(--transition);   
}
header .btn-golden:hover, header .btn-golden:focus {
  color: var(--brand-clr1);
  background: #f1e7d5;   
}
.hero-caption .btn-golden {
  color: var(--black-clr);
}
.btn-golden {
  color: var(--white-clr);
  background: var(--brand-clr1);
  transition: var(--transition);   
}
.btn-golden:hover, .btn-golden:focus {
  background: var(--black-clr);
  color: var(--brand-clr1);
}
.btn-black {
  color: var(--brand-clr1);
  background: var(--black-clr);
  transition: var(--transition);
}
.btn-black:hover, .btn-black:focus {
  color: var(--white-clr);
  background: var(--brand-clr1);
}
.btn-border:hover img, .btn-border:focus img {
  -webkit-filter: brightness(10);
  filter: brightness(10);
  transition: var(--transition);
}
.btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}
/* Section Title CSS */
.section-title {
  position: relative;
  z-index: 0;
  max-width: 526px;
}
.section-title h2 {
  font-size: 45px;
  padding-bottom: 20px;
  line-height: 50px;
  position: relative;
  font-family: var(--family-josefin);
  font-weight: 400;
  margin-top: -15px;
  color: var(--black-clr);
}
.section-title h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: var(--black-clr);
  content: "";
}
.section-title p {
  padding-top: 35px;
  padding-bottom: 0;
}
.container {
  max-width: 1199px;
}
/* Header CSS */
header {
  background: var(--black-clr);
  position: relative;
  z-index: 111;
}
header ul {
  list-style: none;
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
}
header .header-brand, .top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-header .social img {
  transition: var(--transition);
}
.top-header .social img:hover, .top-header .social img:focus {
  filter: brightness(10);
}
.sticky {
  background: #000;
}
.header-right {
  display: flex;
  align-items: center;
}
nav {
  margin-right: 35px;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white-clr);
}
.navigation .header-right {
    display: none;
  }
.top-header ul li + li {
  margin-left: 20px;
}
.top-header {
  color: #7e7e7e;
}
.top-header a:hover,.top-header a:focus {
  color: var(--white-clr);
}
.top-header {
  border-bottom: 1px solid rgba(26, 26, 26, 10)
}
.top-header ul li {
  padding: 10px 0;
}
.header-brand {
  padding: 16px 0;
}
nav > ul > li:not(:first-child) {
  margin-left: 50px;
}
nav > ul > li a  {
  padding: 28px 0;
  display: block;
  position: relative;
}
nav > ul > li > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 53px;
  height: 2px;
  background: var(--brand-clr1);
  content: "";
  visibility: hidden;
}
nav li:hover a::after {
  visibility: visible;
}

.activo_header {
  position: relative;
  color: var(--brand-clr1) !important;
}

.activo_header::after{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 53px;
  height: 2px;
  background: var(--brand-clr1);
  content: "";
  visibility: visible;
}

.navigation {
  border: solid rgba(26, 26, 26, 10);
  border-width: 1px 0 1px 0;
}
.has-dropdown li a {
  padding: 12px 0;
  font-size: 15px;
}
.main-menu ul li a {
  color: #888888;
}
.main-menu ul li a:hover, .main-menu ul li a:focus {
  color: var(--white-clr);
}
.header-right .btn {
  font-size: 16px;
}
.header-right .social {
  margin-left: 28px;
}
.header-right .social li + li {
  margin-left: 22px;
}
.header-right .social img {
  -webkit-filter: brightness(10);
  filter: brightness(10);
  transition: var(--transition);
}
.header-right .social li a:hover img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
.main-menu li {
  position: relative;
}
.main-menu ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  width: 210px;
  padding: 30px;
  background: rgb(0, 0, 0) none repeat scroll 0% 0%;
  color: rgb(0, 38, 120);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
  transform: translateY(15px);
  box-shadow: rgba(22, 33, 52, 0.07) 0px 0px 0.5rem;
  z-index: 2;
}
.has-dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Common CSS */
.welcome-2 {
  font-family: var(--family-mrs);
  font-size: 225px;
  line-height: 0;
  color: #f1e7d5;
  margin-left: 20px;
}
/* Banner CSS */
.hero {
  padding: 0;
}

.hero .swiper-slide {
  position: relative;
  z-index: 0;
  height: auto !important;
}
.hero-slider img {
  width: 100%;
}

.hero-slider picture {
  width: 100%;
}
/*.hero .swiper-slide::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}*/
.hero-caption {
  text-align: center;
  color: var(--white-clr);
  max-width: 610px;
}
.hero-caption > img {
  margin-bottom: 30px;
}
.hero-caption .banner-title {
  font-size: 99px;
  line-height: .9;
  text-align: left;
  padding-bottom: 0;
  color: var(--brand-clr1);
  font-family: var(--family-josefin);
  font-weight: bold;
}
.hero-caption .banner-title span {
  font-size: 120px;
}
.hero-caption h2 {
  color: var(--white-clr);
  font-size: 58px;
  margin-top: -29px;
  font-family: var(--family-hollanda);
}
.hero-caption .btn {
  font-size: 30px;
  font-weight: 300;
  margin-top: 20px;
}
.hero .container {
  position: absolute;
  z-index: 11;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;  
  padding-bottom: 10px;
}
.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #878583;
  opacity: 1;
}
.swiper-pagination-bullet {
  position: relative;
}
.swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
  background: var(--black-clr);
  border: 2px solid var(--white-clr);
  background: transparent;
  position: relative;
}
.swiper-pagination-bullet-active:after {
  height: 6px;
  width: 6px;
  background: var(--black-clr);
  left: 50%;
  top: 50%;
  content: "";
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%) translateX(-50%);
}
.testimonials .swiper-pagination-bullet {
  background: #b8a98f;
}
.testimonials .swiper-slide {
  padding-right: 60px;
}
.testimonials .swipper-btn div:hover {
  opacity: 0.5;
}
.testimonials .swiper-pagination-bullet-active:after {
  background: #fff;
}
.swiper-button-prev {
  right: 0;
  left: auto;
  top: 26%;
}
.swiper-button-next {
  top: 12%;
  right: 0;
}
.swiper-button-prev:after, .swiper-button-next:after {
  font-size: 38px;
  color: var(--black-clr);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  color: #b8a98f;
}
.testimonials .swiper-container-horizontal > .swiper-pagination-bullets {
  justify-content: flex-start;
  margin-top: 25px;
  position: static;
  padding-bottom: 0;
}
.hero .swiper-pagination-bullet-active:after {
  background: var(--white-clr);
}
.services .swiper-pagination-bullet-active {
  border-color: var(--black-clr);
}
.testimonials .swiper-pagination-bullet-active {
  background: none;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 36px;
}

/* Innovate CSS */
.innovate {
  padding: 135px 0;
}
.innovate p {
  line-height: 30px;
}
.innovate .section-title {
  padding-bottom: 10px;
}
.innovate .section-title:before {
  display: none;
}
.innovate .img-wrap {
  text-align: right;
  position: relative;
  padding-bottom: 110px;
}
.overlap, .overlap-two {
  position: absolute;
  left: -6%;
  bottom: 0;
}
.overlap-two {
  left: auto;
  right: -45px;
  bottom: 0;
}
.innovate .welcome {
  padding-left: 15px;
}
.innovate .btn {
  margin-top: 35px;
}

/* Services CSS */
.services {
  background: url(../images/services2.jpg) no-repeat 50% 50% / cover;
  height: 100%;
  align-items: unset;
  text-align: center;
  justify-content: center;
  position: relative;
  padding-bottom: 70px;
}
.services:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  background: url(../images/services.jpg) no-repeat 50% 50% / cover; 
  height: 535px;
  z-index: 1;
}
.services-section-title {
  padding-bottom: 76px;
}
.services h2 {
  font-size: 45px;
  line-height: 50px;
  font-family: var(--family-josefin);
  font-weight: 400;
  color: var(--white-clr);
}
.services p {
  font-size: 26px;
  line-height: 36px;
  font-family: var(--family-josefin);
  color: var(--white-clr);
}

.services_title{
  color: #000000 !important;
}

.services_subtitle{
  color: var(--brand-clr1) !important;
}

.services-box {
  max-width: 1640px;
  margin: 0 auto;
  z-index: 2;
}
.services-box figure {
  background: var(--white-clr);
  margin-bottom: 20px;
  position: relative;
}
.services-box figure > img {
  width: 100%;
}
.services-box figure figcaption img {
  width: auto;
}
.services-box figcaption {
  padding: 37px 42px;  
  box-shadow: 1px 2px 15px 10px rgba(0, 0, 0, 0.03);
}
.services-item p {
  font-size: 16px;
  line-height: 24px;
  color: var(--body-clr1);
  font-family: var(--sans-serif);
}
.services-item h3 {
  font-size: 30px;
  line-height: 50px;
  padding-bottom: 5px;
  margin-top: 10px;
  font-family: var(--family-josefin);
  font-weight: 400;
  color: var(--black-clr);
}
.services-icon {
  height: 65px;
  width: 65px;
  border-radius: 100%;
  display: block;
  background: var(--black-clr);
  text-align: center;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-top: -72px;
}
.services-icon:hover,.services-icon:focus {
  background-color: var(--brand-clr1);
}
.services-icon img {
  transition: var(--transition);
  border-radius: 50%;
}
.services-icon:hover img,.services-icon:focus img {
  filter: brightness(0);
}
.services-item .btn {
  margin-top: 15px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 180px;
  bottom: 9px;
}
.services .swiper-pagination {
  position: static;
  margin-top: 40px;
}


/* Testimonials CSS */
.testimonials {
  background: url(../images/testimonial2.jpg) no-repeat 50% 50% / cover ;
  padding: 0 0 80px;
}
.testimonials .container {
  display: flex;
  justify-content: flex-end;
}
.testimonials .container > div {
  max-width: 600px;
}
.testimonials .welcome-2 {
  color: var(--white-clr);
  margin-left: -40px;
}
.testimonials .inner-content p {
  color: var(--black-clr);
}
.client-profile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 30px;
}
.client-profile div {
  padding-left: 20px;
}
.client-profile h4 {
  font-size: 22px;
  line-height: 32px;
  padding-bottom: 0;
  font-weight: 400;
  font-family: var(--family-josefin);
}
.client-profile h5 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--body-clr1);
}
.client-profile img {
  border-radius: 100%;
  width: auto;
}
.testimonials p {
  line-height: 30px;
}
.testimonials .inner-content {
  max-width: 545px;
}

 /* Our Services CSS */ 
.hero-two {
  background: url(../images/hero-two1.jpg) no-repeat 50% 50% / cover;
  height: 185px;
  position: relative;
  text-align: center;
}
.hero-title h1 {
  font-size: 75px;
  padding-top: 17px;
  letter-spacing: - 25px;
  padding-bottom: 0;
  /* color: var(--white-clr); */
  color: var(--black-clr) !important;
  font-weight: 400;
  font-family: var(--family-josefin);
}
.services-two:after {
  background: var(--white-clr);
  height: 705px;
}
.section-title-two  {
  max-width: 1065px;
  margin: 0 auto;
  padding-bottom: 75px;
}
.section-title-two h2 {
  font-size: 45px;
  padding-bottom: 20px;
  line-height: 50px;
  position: relative;
  font-family: var(--family-josefin);
  font-weight: 400;
  margin-top: -15px;
  color: var(--black-clr);
  margin-top: -37px;
  text-transform: uppercase;
}
.section-title-two h2:after {
  left: 50%;
  transform: translateX(-50%);
}
.section-title-two p {
  color: var(--body-clr1);
  font-size: 16px;
  line-height: 30px;
  font-family: 'Open Sans', sans-serif;
}

/* About CSS */
.about-us {
  height: 270px;
}
.about-us h1 {
  padding-top: 0;
  padding-bottom: 72px;
  text-transform: uppercase;
}
.whitebox {
  border: 20px solid var(--white-clr);
  box-shadow: 0 0 12px rgba(0, 0, 0, .1);
}
.about {
  padding: 0 0 50px;
  margin-top: -110px;
  position: relative;
  z-index: 11;
  padding-bottom: 20px;
}
.services-item h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.services-item2 {
  box-shadow: 0 0 24px rgba(0, 0, 0, .1);
  padding: 50px 45px 35px;
}
.services-item2 figcaption {
  padding: 0;
  margin-top: 0;
}
.services-item2 h3 {
  padding-top: 24px;
}
.services-item2 .btn {
  margin-top: 35px;
}
.services-three:after {
  height: 760px;
}
.services-three .welcome-2 {
  margin-left: 0;
}
.services-three figcaption {
  box-shadow: none;
}

/* Contact CSS  */
#map {
  height: 430px;
}
.contact-us-section {
  padding-bottom: 20px;
}
.contact-us-section .section-title {
  text-align: center;
  padding-bottom: 40px;
}
.contact-infos ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  list-style-type: none;
  text-align: center;
}
.contact-infos ul li {
  margin-bottom: 10px;
}
.contact-infos ul li a {
  font-size: 18px;
  color: #6f6f6f;
}
.contact-infos ul li.tel a {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
}
.contact-infos ul li.mail a {
  color: #d0b074;
}

/* Form Section CSS */
.form-section {
  padding-top: 0;
}
.form-section h3 {
  font-size: 35px;
  color: #000000;
  text-transform: uppercase;
  font-family: var(--family-josefin);
  font-weight: 400;
}
.gray-box {
  background: #f8f8f8;
  padding: 40px 50px;
}
.form-section .form-control {
  border-bottom: 1px solid #c6c6c6;
  background: transparent;
  height: 60px;
  padding: 5px 0;
  color: #000;
}
.form-section form .row {
  margin: 0 -17px;
}
.form-section form [class*="col-"] {
  padding: 0 17px 15px;
}
.form-section textarea.form-control {
  height: 80px;
}
.form-section form .btn {
  margin-top: 35px;
  width: 100%;
}

/* About Detail CSS */
.about-detail {
  margin-top: 0;
  padding: 80px 0 0;
}
.about-detail .white-box {
  padding: 32px 27px;
  box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.05);
}
.about-detail .section-title-two {
  padding-top: 75px;
  padding-bottom: 25px;
}
.about-detail .section-title-two h2:after {
  left: 0;
  transform: none;
}
.about-detail .section-title-two p {
  padding-top: 15px;
  font-size: 18px;
  color: #6f6f6f;
}
.about-detail .row [class*="col-"]:last-child {
  padding-left: 40px;
}

/* Personal Experience CSS */
.personal-experience {
  padding: 80px 0 50px;
}
.personal-experience h4 {
  font-size: 30px;
  color: #000;
  text-transform: uppercase;
  font-family: var(--family-josefin);
  font-weight: 400;
  padding-bottom: 30px;
}
.personal-experience p {
  padding-bottom: 40px;
}

.details-info-section [class*="col-"]:first-child {
  padding-right: 33px;
}
.details-info-section .swiper-container img {
  width: 100%;
}
.details-info-section .swiper-pagination {
  bottom: 15px;
}
.details-info-section .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #fff;
}
.details-info-section .swiper-pagination-bullet-active {
  border-color: #d0b074;
  background: #d0b074;
}
.details-info-section .right-block .white-box {
  padding: 0 35px 60px;
  background: #fff;
  box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.05);
}
.details-info-section .right-block .white-box .section-title {
  padding-bottom: 0;
  padding-top: 50px;
}
.details-info-section .right-block .white-box .section-title-two h2 {
  font-size: 35px;
}
.details-info-section .right-block .white-box .welcome-2 {
  padding-left: 85px;
}
.details-info-section .right-block .white-box .section-title h2:after {
  left: 0;
  transform: none;
}
.details-info-section .swiper-pagination-bullet-active::after {
  display: none;
}
.details-info-section h4 {
  font-size: 35px;
  color: #000000;
  text-transform: uppercase;
  font-family: var(--family-josefin);
  font-weight: 400;
  padding-bottom: 30px;
}
.details-info-section ul {
  list-style-type: none;
}
.details-info-section ul li {
  margin-bottom: 25px;
}
.details-info-section ul li a {
  font-size: 18px;
  color: #000000;
}
.details-info-section ul li a:hover {
  font-weight: 800;
  color: #d0b074;
}
.ad-block {
  padding: 35px 0 20px;
}
.ad-block img {
  width: 100%;
}
.small-whitebox {
  padding: 35px;
  background: #fff;
  box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-align: center;
  line-height: 22px;
}
.small-whitebox a {
  color: #d0b074;
}
.small-whitebox a:hover {
  color: #000;
}
.accordion-body {
  padding: 0;
}
.accordion-header {
  padding-bottom: 0;
}
.accordion-item {
  border: none;
}
.accordion-button {
  box-shadow: none !important;
  outline: none !important;
  font-size: 30px;
  font-family: var(--family-josefin);
  font-weight: 400;
  padding: 1.3rem 1.25rem;
  text-transform: uppercase;
  border-bottom: 1px solid #d0d0d0 !important;
  transition: var(--transition);
}
.accordion-button:not(.collapsed) {
  background: none;
  color: #fff;
  background: #d0b074;
  padding: 1rem 2rem 0.7rem;
  border: none !important;
}
.content-box {
  padding: 40px 35px;
  background: #f8f8f8;
}
.content-box h5 {
  font-size: 14px;
  color: #000000;
  font-weight: bold;
  line-height: 25px;
  padding-bottom: 40px;
}
.content-box p {
  padding-bottom: 30px;
}
.content-box ul li, .section-description ul li {
  font-size: 18px;
  color: #000;
  margin-bottom: 15px !important;
  position: relative;
  padding-left: 26px;
}
.content-box ul li:before, .section-description ul li:before {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: #d0b074;
  border-radius: 100%;
  content: "";
}
.accordion-button::after {
  background: url(../images/plus-icon.png) no-repeat 0 0;
  width: 27px;
  height: 27px;
  position: absolute;
  right: 30px;
}
.accordion-button:not(.collapsed)::after {
  background: url(../images/minus-icon.png) no-repeat 0 13px;
}
.accordion {
  margin-top: 50px;
}

/* Footer CSS */
footer {
  background: url(../images/footer.jpg) no-repeat 50% 50% / cover;
  padding: 70px 0 0;
}
footer ul {
  list-style: none;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  color: #a0a5a4;
  padding: 45px 0 29px ;
}
footer ul li {
  color: var(--white-clr);
}
footer > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 98px;
}
footer ul li + li:before {
  content: "|";
  margin: 0 18px;
  color: #4f4f4f;
  width: 2px;
}
footer form {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 695px;
  width: 100%;
  margin-top: 45px;
}
footer form .form-group {
  display: flex;
  align-items: center;
  width: 100%;
}
footer .form-group .form-control {
  padding: 16px 30px;
  background: var(--white-clr);
  width: 100%;
}
footer .form-group button {
  padding: 16px 30px;
  font-size: 17px;
  background: #ccad72;
  border: none;
  transition: .4s;
  color: #121212;
  max-width: 195px;
  width: 100%;
  height: 56px;
}
footer .form-group button:hover, footer .form-group button:focus {
  background: #f1e7d5;
  color: var(--brand-clr1);
}
footer .form-group input[type="email"] {
  color: var(--brand-clr1);
}
.social-media a {
  display: inline-flex;
  height: 65px;
  width: 65px;
  background-color: #1d1d1d;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-image: url("../images/socials.png");
  background-position: 25px 21px;
  background-repeat: no-repeat;
}
.social-media a:not(:last-child) {
  margin-right: 16px;
}
.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-media a:hover {
  background-color: #ccad72;
  background-position: 25px -70px;
}
.social-media a.insta {
  background-position: -55px 21px;
}
.social-media a.insta:hover {
  background-position: -55px -70px;
}
.social-media a.youtube {
  background-position: -135px 21px;
}
.social-media a.youtube:hover {
  background-position: -135px -70px;
}
.copyright {
  background: #000;
  padding: 50px 0;
}
.copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright span {
  display: inline-block;
  text-transform: capitalize;
  padding: 5px 0;
  color: #898989;
}
.copyright .inject {
  padding-left: 0;
  padding-right: 2px;
}
.copyright .beauty {
  margin-left: 15px;
}
.copyright .copy {
  color: var(--brand-clr1);
}
.swiper-container {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .has-dropdown > ul {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }
  .services-box .row {
    margin: 0 -20px;
  }
  .services-box [class*="col-"] {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1099px) {
  .testimonials .container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
  }
  .testimonials .section-title {
    padding: 170px 0 30px;
  }
}

@media screen and (max-width: 1650px) {
  .services-box {
    max-width: 100%;
    padding: 0 10px;
  }
}

@media screen and (max-width: 1499px) {
  .services-box figcaption {
    padding: 27px 22px;
  }
  .services-item h3 {
    font-size: 26px;
    line-height: 33px;
  }
  .services-item2 {
    padding: 50px 25px 35px;
  }
  .services-box .services-item2 figcaption {
    padding: 0;
  }
  .personal-experience {
    padding-top: 50px;
  }
  .accordion-button {
    font-size: 24px;
  }
}

@media screen and (max-width: 1299px) {
  .hero .swiper-slide {
    height: 450px;
  }
}

@media screen and (max-width: 1199px) {
  .services-item h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .hero .swiper-slide {
    height: 450px;
  }
}
@media screen and (max-width: 991px) {
  .hero .swiper-slide {
    background-position: 64% 0 !important;
  }
  header .container {
    position: relative;
  }
  .toggle-icon {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--brand-clr1);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toggle-icon span {
    position: relative;
    width: 100%;
    height: 3px;
    background: #fff;
  }
  .toggle-icon span::before, .toggle-icon span::after {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    content: "";
    z-index: 1;
    top: -10px;
  }
  .toggle-icon span::after {
    top: 10px;
  }
  .navigation {
    display: none;
  }
  .open .navigation {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 20px;
    background: #000;
    display: block;
  }
  nav {
    margin-right: 0;
  }
  nav > ul {
    flex-direction: column;
    align-items: flex-start;
  }
  nav > ul > li {
  margin: 10px 0;
  }
  nav > ul > li:not(:first-child) {
    margin-left: 0;
  }
  nav > ul > li a {
    padding: 5px 0;
  }
  .navigation .header-right {
    display: block;
  }
  .header-right .btn {
    margin-top: 10px;
  }
  .main-menu ul {
    padding-left: 0;
    padding-top: 10px;
  }
  .header-brand .header-right {
    display: none;
  }
  .about-us h1, .hero-title h1 {
    font-size: 60px;
  }
  .hero-caption .banner-title {
    font-size: 75px;
  }
  .hero-caption .banner-title span {
    font-size: 65px;
  }
  .hero-caption h2 {
    font-size: 45px;
  }
  .hero-caption .btn {
    font-size: 22px;
  }
  .section-title {
    max-width: 100%;
  }
  .overlap, .overlap-two {
    left: 25%;
  }
  .innovate {
    padding: 100px 0;
  }
  .innovate .section-title {
    padding-bottom: 30px;
  }
  .testimonials {
    background: #e7d2b5;
    padding-top: 100px;
  }
  .testimonials .container > div {
    max-width: 100%;
  }
  .testimonials .welcome-2 {
    margin-left: 0;
  }
  .services-section-title {
    padding-bottom: 25px;
  }
  .services-box {
    max-width: 100%;
  }
  .services.services-two [class*="col-"] {
    padding-bottom: 25px;
  }
  .details-info-section .right-block .white-box .welcome-2 {
    padding-left: 0;
    font-size: 145px;
  }
  footer > .container {
    padding-bottom: 50px;
  }
  footer ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 0;
    justify-content: center;
  }
  footer ul li {
    margin-bottom: 20px;
  }
  .copyright {
    padding: 20px 0;
  }
  .hero .swiper-slide {
    height: 300px;
  }
}


@media screen and (max-width: 800px) {
  .overlap, .overlap-two {
    left: 5%;
  }
}

@media screen and (max-width: 767px) {
  .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
  }
  .hero .swiper-slide {
    height: 200px;
  }
  .hero-caption {
    text-align: left;
  }
  .hero-caption .banner-title {
    font-size: 55px;
  }
  .hero-caption .banner-title span {
    font-size: 45px;
  }
  .hero-caption h2 {
    font-size: 25px;
    margin-top: 0;
  }
  .hero-caption .btn {
    font-size: 20px;
  }
  .welcome-2 {
    font-size: 125px;
  }
  .section-title h2 {
    font-size: 33px;
    line-height: 38px;
  }
  .innovate .section-title {
    padding-bottom: 50px;
  }
  .overlap {
    display: none;
  }
  .innovate .img-wrap {
    padding-bottom: 0;
  }
  .innovate, .services {
    padding: 50px 0;
  }
  .services h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .testimonials .swipper-btn, .top-header {
    display: none;
  }
  .testimonials .inner-content {
    max-width: 100%;
  }
  .testimonials .swiper-slide {
    padding-right: 0;
  }
  #map {
    height: 300px;
  }
  .gray-box {
    padding: 25px;
  }
  section  {
    padding: 50px 0;
  }
  .about-us h1, .hero-title h1 {
    font-size: 40px;
  }
  .services-box .services-item2 img {
    width: 50%;
  }
  .services-box .services-item2 h3 {
    font-size: 20px;
  }
  .about-detail {
    padding-top: 40px;
  }
  .about-detail .white-box {
    padding: 20px 15px;
  }
  .about-detail .row [class*="col-"]:last-child {
    padding-left: 15px;
  }
  .personal-experience p {
    padding-bottom: 12px;
  }
  .details-info-section .row {
    flex-direction: column-reverse;
  }
  .accordion {
    margin-bottom: 50px;
  }
  .btn {
    min-width: auto;
    padding: 12px 20px;
    position: static !important;
  }

  .services_area .btn{
    margin-top: 20px !important;
  }

  footer .form-group button {
    font-size: 15px;
  }
  footer .form-group .form-control {
    width: auto;
  }
  footer form .form-group {
    justify-content: center;
  }
  .copyright .container, footer ul {
    flex-direction: column;
  }
  footer ul li + li:before {
    display: none;
  }
  .services-box figure > img {
    width: 100%;
  }
  .whitebox {
    border-width: 10px;
  }
  .about.about-detail img {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .services.services-two.services-three [class*="col-"] {
    padding-bottom: 25px;
  }
  .services.services-two.services-three {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 479px) {
  nav ul {
    font-size: 16px;
  }
  .form-section h3 {
    font-size: 26px;
  }
  .form-section form .btn {
    margin-top: 25px;
  }
  .accordion-button {
    font-size: 20px;
  }
  .accordion-button::after, .accordion-button:not(.collapsed)::after {
    background-size: 20px auto;
    right: 10px;
  }
  .small-whitebox {
    padding: 20px;
  }
  .details-info-section .right-block .white-box {
    padding: 0 15px 30px;
  }
  footer form .form-group {
    flex-direction: column;
  }
  footer .form-group button {
    margin-top: 15px;
    width: 100%;
    max-width: 100%;
  }
  footer .form-group .form-control {
    width: 100%;
  }
}

@media screen and (max-width: 399px) {

  .welcome-2 {
    font-size: 75px;
  }
  .testimonials {
    padding-top: 50px;
  }
  .brand img {
    max-width: 180px;
  }
  .toggle-icon {
    top: 15px;
  }
  .details-info-section h4 {
    font-size: 30px;
  }
}

@media screen and (min-width:320px) and (max-width:767px) and (orientation:portrait){
  .hero .swiper-slide {
    height: 120px;
  }  
 }


.contact_phone{
  font-size: 20px;
  color: #000000;
  font-weight: bold;
}

.contact_upd{
  color: #d0b074;
}

.contact_text{
  text-align: center;
  list-style: none;
}

@media(max-width:768px){
  .contact_phone{
    font-size: 16px;
  }
}

.list-of-services figcaption{
  box-shadow: none;
}

.list-of-services figure{
  box-shadow: 0 7px 16px 5px rgb(0 0 0 / 13%);
}

.services_area{
  box-shadow: 0 7px 16px 5px rgb(0 0 0 / 13%);
}

.services_area figcaption{
  box-shadow: none;
}