/* --- Fonts Start --- */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-ExtraBold.woff2") format("woff2"),
    url("../fonts/Roboto-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Black.woff2") format("woff2"),
    url("../fonts/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2"),
    url("../fonts/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"),
    url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/DMSerifDisplay-Regular.woff2") format("woff2"),
    url("../fonts/DMSerifDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* --- Fonts End --- */

/* --- Common Styles Start --- */
:root {
  --color-accent-1: #113d48;
  --color-accent-2: #1ca8cb;
  --color-black: rgba(0, 0, 0, 0.9);
  --color-white: rgba(255, 255, 255, 0.9);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  position: relative;
  margin: 0;
  padding: 0;
  color: var(--color-black);
  overflow-x: hidden;
}

body.lock {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: "Roboto", sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  margin: 0;
  line-height: 1.5;
}

/* --- Slick Start --- */
.slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-accent-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.slick-arrow[aria-disabled="true"] {
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.slick-arrow svg {
  width: 20px;
  height: 20px;
}

.slick-arrow svg path {
  fill: var(--color-accent-2);
}

.slick-arrow[aria-disabled="true"] svg path {
  fill: #000;
  fill-opacity: 0.9;
}

.slick-prev {
  right: 50px;
}
/* --- Slick Global End --- */

/* --- Preloader Start --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-accent-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
}

.preloader-circles {
  width: 80px;
  height: 80px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-animation: displayCircles 4s;
  animation: displayCircles 4s;
}

@-webkit-keyframes displayCircles {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  25% {
    opacity: 1;
    visibility: visible;
  }

  90% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes displayCircles {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  25% {
    opacity: 1;
    visibility: visible;
  }

  90% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.preloader-circles div {
  -webkit-animation: circles 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: circles 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-transform-origin: 40px 40px;
  -ms-transform-origin: 40px 40px;
  transform-origin: 40px 40px;
  margin: -4px 0 0 -4px;
}

.preloader-circles div::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
}

.preloader-circles div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
  animation-delay: -0.036s;
}

.preloader-circles div:nth-child(1)::after {
  top: 63px;
  left: 63px;
}

.preloader-circles div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
  animation-delay: -0.072s;
}

.preloader-circles div:nth-child(2)::after {
  top: 68px;
  left: 56px;
}

.preloader-circles div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
  animation-delay: -0.108s;
}

.preloader-circles div:nth-child(3)::after {
  top: 71px;
  left: 48px;
}

.preloader-circles div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
  animation-delay: -0.144s;
}

.preloader-circles div:nth-child(4)::after {
  top: 72px;
  left: 40px;
}

.preloader-circles div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
  animation-delay: -0.18s;
}

.preloader-circles div:nth-child(5)::after {
  top: 71px;
  left: 32px;
}

.preloader-circles div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
  animation-delay: -0.216s;
}

.preloader-circles div:nth-child(6)::after {
  top: 68px;
  left: 24px;
}

.preloader-circles div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
  animation-delay: -0.252s;
}

.preloader-circles div:nth-child(7)::after {
  top: 63px;
  left: 17px;
}

.preloader-circles div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
  animation-delay: -0.288s;
}

.preloader-circles div:nth-child(8)::after {
  top: 56px;
  left: 12px;
}

@-webkit-keyframes circles {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes circles {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
}

.site-main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* --- Inner Margins Start */
.inner-margins {
  padding-top: 80px;
  margin-bottom: 80px;
}
/* --- Inner Margins End --- */

/* --- Buttons Start --- */
.button-v-1 {
  border-radius: 50px;
  background-color: var(--color-accent-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
}

.button-v-1::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-accent-1);
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.button-v-1:hover::before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.button-v-1 span {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--color-white);
  position: relative;
}

.button-v-1 img {
  position: relative;
}

.button-v-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  background-color: var(--color-accent-1);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.button-v-2::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-accent-2);
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.button-v-2:hover::before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.button-v-2 span {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--color-white);
  position: relative;
}

.button-v-2 img {
  position: relative;
}

.button-v-3 {
  width: 50px;
  height: 50px;
  background-color: var(--color-accent-2);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.button-v-3:hover {
  background-color: var(--color-accent-1);
}

.button-v-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
  border-radius: 50px;
  border: 1px solid var(--color-white);
  position: relative;
  overflow: hidden;
}

.button-v-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50px;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.button-v-4:hover::before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.button-v-4 span {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-white);
  position: relative;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.button-v-4:hover span {
  color: var(--color-black);
}

.button-v-4 svg {
  position: relative;
}

.button-v-4 svg path {
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.button-v-4:hover svg path {
  fill: var(--color-black);
}

.more-link {
  -ms-grid-column-align: end;
  justify-self: end;
  padding: 13px 23px;
  margin-bottom: 70px;
}

.more-link-v2 {
  border-color: rgba(0, 0, 0, 0.6);
}

.more-link-v2:hover {
  border-color: var(--color-accent-2);
}

.more-link-v2::before {
  background-color: var(--color-accent-2);
}

.more-link-v2 span {
  color: rgba(0, 0, 0, 0.6);
}

.more-link-v2:hover span {
  color: var(--color-white);
}

.more-link-v2 svg path {
  fill: #000;
  fill-opacity: 0.6;
}

.more-link-v2:hover svg path {
  fill: var(--color-white);
  fill-opacity: 1;
}
/* --- Buttons End --- */

/* --- Social Start --- */
.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.social li a:hover {
  background-color: rgba(28, 168, 203, 0.5);
}
/* --- Social End --- */

/* --- Haeding Start --- */
.site-heading {
  text-align: center;
  margin-bottom: 60px;
}

.heading-top-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.heading-title {
  margin-bottom: 15px;
  font-family: "DM Serif Display", serif;
  color: var(--color-accent-1);
  font-size: 48px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.04em;
}

.heading-title:last-child {
  margin-bottom: 0;
}

.heading-desc {
  margin: 0 auto;
  max-width: 500px;
  font-size: 20px;
  font-weight: 400;
}
/* --- Heading End --- */

/* --- Modal Start --- */
.modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(17, 61, 72, 0.9);
  z-index: 99999;
  overflow: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  overflow: auto;
}

.modal.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.modal-body {
  padding: 60px;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.modal-close {
  margin-bottom: 10px;
  position: absolute;
  top: 40px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal-close svg path {
  -webkit-transition: fill-opacity 0.2s linear;
  -o-transition: fill-opacity 0.2s linear;
  transition: fill-opacity 0.2s linear;
}

.modal-close:hover svg path {
  fill-opacity: 0.6;
}

.modal-search {
  padding: 5px 0;
  width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--color-white);
  color: var(--color-white);
  border-radius: 2px;
}

.modal-search input {
  padding: 5px 0;
  width: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.modal-search input::-webkit-input-placeholder {
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.modal-search input::-moz-placeholder {
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.modal-search input:-ms-input-placeholder {
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.modal-search input::-ms-input-placeholder {
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.modal-search input::placeholder {
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.modal-search-button img {
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.modal-search-button img:hover {
  opacity: 0.6;
}
/* --- Modal End --- */

/* --- Global Styles End --- */

/* --- Header Start --- */
.site-header {
  color: var(--color-white);
  -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  position: relative;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: var(--color-accent-1);
}

.header-body {
  min-height: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

.header-logo {
  position: relative;
  z-index: 3;
}

.header-menu-wrap {
  margin-left: auto;
}

.header-menu {
  position: relative;
  z-index: 3;
}

.header-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.header-menu ul li {
  position: relative;
  height: 100%;
}

.header-menu ul li a {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  height: 100%;
  display: inline-block;
  width: 100%;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  cursor: pointer;
}

.header-menu ul li:hover > a {
  color: rgba(255, 255, 255, 0.3);
}

.header-menu ul li.current-menu-item > a {
  color: rgba(255, 255, 255, 0.5);
}

.menu-item-has-children > a::after {
  content: "";
  background: url("../images/icons/arrow-up-icon.svg") center no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 5px;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  -webkit-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  transition: all 0.35s linear;
}

.header-menu ul.sub-menu {
  position: absolute;
  top: 100%;
  left: -15px;
  display: block;
  z-index: 2;
  background-color: var(--color-accent-1);
  min-width: 220px;
  height: auto;
  white-space: nowrap;
  padding: 10px 0;
  -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  display: none;
}

.menu-item-has-children.active .header-menu ul.sub-menu {
  display: block;
}

.menu-item-has-children.active > a::after {
  -webkit-transform: rotate(-180deg) translateY(-3px);
  -ms-transform: rotate(-180deg) translateY(-3px);
  transform: rotate(-180deg) translateY(-3px);
}

.header-menu ul.sub-menu li {
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}

.header-menu ul.sub-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-burger {
  display: none;
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.header-search {
  position: relative;
  z-index: 3;
}

.header-search img {
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.header-search img:hover {
  opacity: 0.6;
}

.header-link {
  padding: 13px 20px;
  position: relative;
  z-index: 3;
}
/* --- Header End --- */

/* --- Header Inner Start --- */
.header-inner {
  min-height: 150px;
  background-color: var(--color-accent-1);
  margin-top: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-inner .breadcrumbs {
  padding: 5px 0;
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.04em;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.header-inner .breadcrumbs li a {
  color: inherit;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.header-inner .breadcrumbs li a:hover {
  color: rgba(255, 255, 255, 0.3);
}

.header-inner .breadcrumbs li.current {
  color: rgba(255, 255, 255, 0.5);
}

.header-inner .breadcrumbs li:not(.current) {
  position: relative;
  padding-right: 20px;
}

.header-inner .breadcrumbs li:not(.current)::before {
  content: "/";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
/* --- Header Inner End --- */

/* --- Banner Start --- */
.site-banner {
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.site-banner::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-body {
  max-width: 800px;
  min-height: 80vh;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  position: relative;
  padding: 50px 0;
}

.banner-top-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.banner-title {
  margin-bottom: 38px;
  font-family: "DM Serif Display", serif;
  font-size: 75px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: capitalize;
}

.banner-text {
  margin-bottom: 38px;
  max-width: 670px;
  font-size: 20px;
  font-weight: 400;
}

.banner-link {
  padding: 18px 40px;
}
/* --- Banner End --- */

/* --- Numbers Start --- */
.site-numbers {
  color: #fff;
  position: relative;
  z-index: 2;
}

.numbers-body {
  background-color: var(--color-accent-1);
  max-width: 1100px;
  margin: -100px auto 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0;
  row-gap: 10px;
  border-radius: 20px;
}

.numbers-item {
  padding: 30px 0;
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.numbers-item:nth-last-child(n + 2) {
  border-right: 1px solid var(--color-white);
}

.numbers-count {
  font-size: 40px;
  font-weight: 700;
}

.numbers-title {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
}
/* --- Numbers End --- */

/* --- About Start --- */
.about {
  padding-top: 100px;
  margin-bottom: 80px;
}

.about-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 40px;
}

.about-gallery {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  row-gap: 30px;
}

.about-item:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.about-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  padding-left: 15px;
}

.about-item:first-child .about-image {
  height: 380px;
}

.about-image {
  height: 200px;
  border-radius: 40px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-filter 0.5s ease, -webkit-transform 0.5s ease;
  transition: -webkit-filter 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: filter 0.5s ease, transform 0.5s ease;
  transition: filter 0.5s ease, transform 0.5s ease;
  transition: filter 0.5s ease, transform 0.5s ease, -webkit-filter 0.5s ease,
    -webkit-transform 0.5s ease;
  will-change: transform;
}

.about-image:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(1.2) saturate(1.2);
  filter: brightness(1.2) saturate(1.2);
}

.site-about .site-heading {
  text-align: left;
  margin-bottom: 20px;
}

.about-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.about-desc {
  margin-bottom: 35px;
}

.about-list:not(:last-child) {
  margin-bottom: 40px;
}

.about-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.about-list-item:not(:last-child) {
  margin-bottom: 30px;
}

.about-list-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-accent-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.about-list-icon:hover {
  background-color: var(--color-accent-2);
}

.about-list-icon img {
  width: 35px;
  height: 35px;
}

.about-list-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-accent-1);
  text-transform: capitalize;
}

.about-link {
  padding: 18px 40px;
}

/* --- About End --- */

/* --- About Inner Start --- */
.about-team {
  margin-bottom: 100px;
}

.about-more-info {
  padding-top: 50px;
}

.about-more-info p:not(:last-child) {
  margin-bottom: 10px;
}
/* --- About Inner End --- */

/* --- Marquee Start --- */
.marquee {
  position: relative;
  height: 100px;
}

.marquee-title {
  width: 100%;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.marquee-title span {
  display: inline-block;
  font-family: "DM Serif Display", serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-1);
  -webkit-animation: animateTitle 20s linear infinite;
  animation: animateTitle 20s linear infinite;
  padding-left: 100%;
}

@-webkit-keyframes animateTitle {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes animateTitle {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* --- Marquee End --- */

/* --- Destinations Start --- */
.site-destinations {
  padding-top: 100px;
}

.destinations-wrap {
  position: relative;
}

.destinations-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: -1;
}

.destinations-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.destinations-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.destinations-content {
  padding-top: 80px;
}

.destinations-slider {
  padding-bottom: 70px;
  margin-left: -30px;
}

.destinations-item {
  padding-left: 30px;
  width: 380px;
}

.destinations-box {
  height: 530px;
  overflow: hidden;
  position: relative;
}

.destinations-thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 63px;
}

.destinations-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.destinations-title {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 40px;
  margin-top: 50px;
  color: var(--color-white);
}

.destinations-title a {
  border-radius: 6px;
  background-color: var(--color-accent-1);
  padding: 8px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.destinations-title a:hover {
  background-color: var(--color-accent-2);
}

.destinations-title a span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.destinations-link {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 40px;
  margin-bottom: 40px;
}
/* --- Destinations End --- */

/* --- Destinations Inner Start --- */
.destinations-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -30px;
  row-gap: 30px;
}

.destinations-body:not(:last-child) {
  margin-bottom: 70px;
}

.destinations-body .destinations-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  width: 100%;
}

/* --- Destinations Inner End --- */

/* --- Destinations Single Start --- */
.destinations-single {
  margin-bottom: 70px;
}

.destinations-single-top {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 30px;
}

.destinations-single-gallery {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -20px;
  row-gap: 20px;
}

.destinations-single .site-heading {
  margin-bottom: 25px;
  text-align: left;
}

.destinations-single .heading-desc {
  margin: 0;
}

.destinations-single-item {
  padding-left: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

.destinations-single-item:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.destinations-single-item:first-child .destinations-single-image {
  height: 280px;
}

.destinations-single-image {
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
}

.destinations-single-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-filter 0.5s ease, -webkit-transform 0.5s ease;
  transition: -webkit-filter 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: filter 0.5s ease, transform 0.5s ease;
  transition: filter 0.5s ease, transform 0.5s ease;
  transition: filter 0.5s ease, transform 0.5s ease, -webkit-filter 0.5s ease,
    -webkit-transform 0.5s ease;
  will-change: transform;
}

.destinations-single-image:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(1.2) saturate(1.2);
  filter: brightness(1.2) saturate(1.2);
}

.destinations-single-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
}

.destinations-single-info-list {
  margin-bottom: 45px;
}

.destinations-single-info-list li:not(:last-child) {
  margin-bottom: 10px;
}

.destinations-single-info-list li {
  font-size: 20px;
  font-weight: 400;
}

.destinations-single-info-list li span {
  color: var(--color-accent-1);
  font-weight: 700;
}

.destinations-single-info-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 13px 24px;
}

.destinations-single-desc-heading {
  margin-bottom: 50px;
  font-family: "DM Serif Display", serif;
  background-color: rgba(165, 183, 188, 0.2);
  padding: 25px;
  border-radius: 10px;
}

.destinations-single-desc-heading span {
  font-size: 35px;
  font-weight: 400;
  color: var(--color-accent-1);
  letter-spacing: 0.04em;
}

.destinations-single-block:not(:last-child) {
  margin-bottom: 30px;
}

.destinations-single-block-title {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: var(--color-accent-1);
}

.destinations-single-block-text p:not(:last-child) {
  margin-bottom: 10px;
}

.destinations-single-block-table {
  width: 500px;
}

.block-table-row:not(:last-child) {
  margin-bottom: 20px;
}

.block-table-row {
  padding-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.block-table-label,
.block-table-value {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.block-table-label {
  font-weight: 700;
  text-transform: capitalize;
}

.destinations-single-block-list li {
  padding-left: 26px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  position: relative;
}

.destinations-single-block-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/icons/done-icon.svg") center no-repeat;
}

.destinations-single-block-list li:not(:last-child) {
  margin-bottom: 10px;
}

.destinations-popular {
  margin-bottom: 80px;
}

.destinations-popular .site-heading {
  text-align: left;
}
/* --- Destinations Single End --- */

/* --- Features Start --- */
.site-features {
  padding-top: 100px;
}

.features-body {
  position: relative;
}

.features-bg {
  width: 900px;
  height: 480px;
  position: absolute;
  top: 0;
  left: 0;
}

.features-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.features-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.features-list-wrap {
  padding: 30px 25px;
  min-height: 580px;
  max-width: 800px;
  margin: 0 auto;
}

.features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 25px;
  margin-left: -25px;
}

.features-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding-left: 25px;
}

.features-box {
  height: 100%;
  padding: 45px 70px 45px 45px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 63px;
  border: 1px solid var(--color-accent-2);
  z-index: 1;
}

.features-name {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-accent-1);
}

.features-number {
  width: 70px;
  height: 70px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-accent-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: -1;
}

.features-number span {
  font-size: 30px;
  font-weight: 400;
  color: var(--color-white);
}
/* --- Features End --- */

/* --- Services Start --- */
.site-services {
  padding-top: 100px;
  position: relative;
}

.site-services::after {
  content: "";
  width: 100%;
  height: 300px;
  background-color: var(--color-accent-1);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.services-more-link {
  border-color: var(--color-black);
}

.services-slider {
  padding-bottom: 70px;
  margin-left: -27px;
}

.services-slider .slick-arrow[aria-disabled="true"] {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.services-slider .slick-arrow[aria-disabled="true"] svg path {
  fill: #fff;
  fill-opacity: 0.9;
}

.services-item {
  padding-left: 27px;
  width: 380px;
}

.services-box {
  height: 100%;
  padding: 50px 40px;
  background-color: #fff;
  border: 1px solid var(--color-accent-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 63px;
}

.services-title {
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent-1);
  text-transform: uppercase;
}

.services-title a {
  color: inherit;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.services-title:hover a {
  color: var(--color-accent-2);
}

.services-desc p:not(:last-child) {
  margin-bottom: 10px;
}

.services-desc {
  margin-bottom: 40px;
}

.services-link {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
/* --- Services End --- */

/* --- Services Inner Start --- */
.services-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -30px;
  row-gap: 30px;
}

.services-body:not(:last-child) {
  margin-bottom: 70px;
}

.services-body .services-item {
  padding-left: 30px;
  width: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
}
/* --- Services Inner End --- */

/* --- Services Single Start --- */
.services-single-thumb {
  margin-bottom: 40px;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
}

.services-single-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.services-single-box:not(:last-child) {
  margin-bottom: 30px;
}

.services-single-title {
  margin-bottom: 15px;
  font-size: 25px;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--color-accent-1);
  text-transform: capitalize;
}

.services-single-text:not(:last-child) {
  margin-bottom: 30px;
}

.services-single-text p:not(:last-child) {
  margin-bottom: 10px;
}

.services-single-text.bg {
  border-radius: 10px;
  padding: 30px;
  background-color: rgba(165, 183, 188, 0.2);
}

.services-single-list {
  margin-bottom: 30px;
}

.services-single-list li:not(:last-child) {
  margin-bottom: 8px;
}

.services-single-list li {
  padding-left: 26px;
  text-transform: capitalize;
  position: relative;
}

.services-single-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../images/icons/done-icon.svg") center no-repeat;
}

.services-single-gallery {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.services-single-item {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.services-single-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-filter 0.5s ease, -webkit-transform 0.5s ease;
  transition: -webkit-filter 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: filter 0.5s ease, transform 0.5s ease;
  transition: filter 0.5s ease, transform 0.5s ease;
  transition: filter 0.5s ease, transform 0.5s ease, -webkit-filter 0.5s ease,
    -webkit-transform 0.5s ease;
  will-change: transform;
}

.services-single-item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(1.2) saturate(1.2);
  filter: brightness(1.2) saturate(1.2);
}

/* --- Services Single End --- */

/* --- Team Start --- */
.site-team {
  padding-top: 100px;
  margin-bottom: 50px;
  position: relative;
}

.site-team::after {
  content: "";
  width: 100%;
  height: 600px;
  background-color: var(--color-accent-1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.site-team.team-inner::after,
.site-team.about-team::after {
  display: none;
}

.site-team:not(.team-inner) .site-heading,
.site-team:not(.team-inner) .heading-title {
  color: var(--color-white);
}

.team-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -30px;
  row-gap: 30px;
}

.team-body:not(:last-child) {
  margin-bottom: 70px;
}

.team-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  padding-left: 30px;
}

.team-item:nth-child(2),
.team-item:nth-child(5),
.team-item:nth-child(8),
.team-item:nth-child(11) {
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
}

.team-box {
  height: 495px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.team-thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.team-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-info {
  padding: 20px 30px;
  position: absolute;
  background-color: var(--color-accent-1);
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--color-white);
}

.team-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.team-title a {
  color: inherit;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.team-title:hover a {
  color: var(--color-accent-2);
}

.team-title:not(:last-child) {
  margin-bottom: 13px;
}

.team-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: border 0.2s linear;
  -o-transition: border 0.2s linear;
  transition: border 0.2s linear;
}

.team-link:hover {
  border: 1px solid var(--color-accent-2);
}

.team-link svg {
  width: 20px;
  height: 20px;
}

.team-link svg path {
  fill: var(--color-white);
  -webkit-transition: fill 0.2s linear;
  -o-transition: fill 0.2s linear;
  transition: fill 0.2s linear;
}

.team-link:hover svg path {
  fill: var(--color-accent-2);
}

.team-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.team-social {
  gap: 5px;
}

.team-social li a {
  width: 30px;
  height: 30px;
}

/* --- Team End --- */

/* --- Team Inner Start --- */
.team-inner {
  margin-bottom: 100px;
}
/* --- Team Inner End --- */

/* --- Team Single Start --- */
.team-single-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.team-single-left {
  width: 40%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 600px;
}

.team-single-thumb {
  width: 100%;
  height: 100%;
}

.team-single-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-single-info {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent-1);
  width: 100%;
  padding: 40px;
}

.team-single .team-title {
  font-size: 25px;
}

.team-single-right {
  width: 50%;
}

.team-single-box {
  margin-bottom: 15px;
}

.team-single-desc:not(:last-child) {
  margin-bottom: 15px;
}

.team-single-heading {
  font-family: "DM Serif Display", serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--color-accent-1);
  letter-spacing: 0.04em;
}

.team-single-title {
  margin-bottom: 15px;
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-accent-1);
  text-transform: capitalize;
}

.team-single-item {
  padding-left: 30px;
  position: relative;
}

.team-single-item::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/icons/done-icon.svg") center center no-repeat;
  position: absolute;
  left: 0;
}

.team-single-item:not(:last-child) {
  margin-bottom: 5px;
}

.team-single .team-social li a {
  background-color: var(--color-accent-1);
}
/* --- Team Single End --- */

/* --- Questions Start --- */
.site-questions {
  padding-top: 100px;
  margin-bottom: 100px;
}

.questions-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.questions-info {
  width: 50%;
}

.questions-item:not(:last-child) {
  margin-bottom: 30px;
}

.questions-label {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-accent-1);
  padding: 10px 0;
  padding-right: 30px;
  position: relative;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.questions-label:hover {
  color: var(--color-accent-2);
}

.questions-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--color-accent-2) url("../images/icons/plus-icon.svg") center
    center no-repeat;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.questions-label.active {
  border-bottom: none;
}

.questions-label.active::after {
  background: var(--color-accent-2) url("../images/icons/minus-icon.svg") center
    center no-repeat;
}

.questions-answer {
  max-width: 540px;
  display: none;
}

.questions-answer.active {
  display: block;
}

.questions-image {
  width: 43%;
  height: 786px;
  overflow: hidden;
  border-radius: 63px;
}

.questions-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
  -o-transition: transform 0.5s ease, filter 0.5s ease;
  transition: transform 0.5s ease, filter 0.5s ease;
  transition: transform 0.5s ease, filter 0.5s ease, -webkit-transform 0.5s ease,
    -webkit-filter 0.5s ease;
}

.questions-image:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(1.2) saturate(1.2);
  filter: brightness(1.2) saturate(1.2);
}
/* --- Questions End --- */

/* --- Blog Start --- */
.site-blog {
  background-color: rgba(17, 61, 72, 0.15);
  padding: 100px 0;
}

.blog-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -30px;
  row-gap: 30px;
}

.blog-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  padding-left: 30px;
}

.blog-item p {
  margin-bottom: 25px;
}

.blog-thumb {
  margin-bottom: 15px;
  height: 250px;
  border-radius: 63px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-details {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.blog-details li:not(:last-child) {
  position: relative;
  padding-right: 15px;
}

.blog-details li:not(:last-child):after {
  content: "|";
  position: absolute;
  right: 0;
  height: 100%;
}

.blog-date,
.blog-author {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-title {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent-1);
}

.blog-title a {
  color: inherit;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.blog-title:hover a {
  color: var(--color-accent-2);
}

.blog-excerpt {
  margin-bottom: 20px;
  padding-right: 30px;
}

.blog-excerpt p:not(:last-child) {
  margin-bottom: 5px;
}

.blog-link {
  padding: 13px 20px;
}
/* --- Blog End --- */

/* --- Blog Inner Start --- */
.blog-inner-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 50px;
}

.blog-inner .blog-item {
  padding: 0;
}

.blog-inner-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 55%;
  flex: 1 1 55%;
}

.blog-inner-body .blog-thumb {
  border-radius: 10px;
  height: 450px;
}

.blog-inner .blog-item:not(:last-child) {
  margin-bottom: 45px;
}

.blog-inner .blog-title {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 700;
  color: var(--color-accent-1);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.page-numbers {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.page-numbers:hover {
  border-color: var(--color-accent-2);
  color: var(--color-accent-2);
}

.page-numbers.current {
  background-color: var(--color-accent-2);
  color: var(--color-white);
  border-color: var(--color-accent-2);
}

.page-numbers.prev,
.page-numbers.next {
  border-color: var(--color-accent-2);
  position: relative;
}

.page-numbers.prev::after,
.page-numbers.next::after {
  content: "";
  width: 12px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-numbers.next::after {
  background: url("../images/icons/arrow-paginate-right.svg") center center
    no-repeat;
}

.page-numbers.prev::after {
  background: url("../images/icons/arrow-paginate-left.svg") center center
    no-repeat;
}

.widget-area {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 35%;
  flex: 1 1 35%;
  margin-left: 80px;
  height: 100%;
  width: 100%;
}

.widget:not(:last-child) {
  margin-bottom: 30px;
}

.widget_block:not(.widget-search) {
  padding: 25px 40px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.widget-title {
  font-family: "DM Serif Display", serif;
  font-size: 25px;
  margin-bottom: 25px;
  position: relative;
  color: var(--color-accent-1);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.widget-search form {
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  padding: 12px 14px 12px 0;
}

.widget-search input {
  border: none;
  padding: 14px 14px 14px 40px;
  font-size: 14px;
  outline: none;
  font-family: var(--font);
  width: 100%;
  background-color: transparent;
}

.widget-search button {
  background-color: var(--color-accent-1);
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  display: block;
  cursor: pointer;
  padding: 0 12px;
  -webkit-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
  font-weight: 400;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.widget-search button:hover {
  background-color: var(--color-accent-2);
}

.widget-search button svg path {
  fill: var(--color-white);
}

.categories-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 30px;
  position: relative;
  padding-bottom: 20px;
  gap: 5px;
}

.categories-list li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: url("../images/icons/done-icon.svg") center center no-repeat;
  position: absolute;
  left: 0;
  top: -2px;
}

.categories-list li:not(:last-child) {
  margin-bottom: 25px;
}

.categories-list li {
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.categories-list li:hover {
  color: var(--color-accent-2);
}

.tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-list li a {
  background-color: #a5b7bc;
  padding: 2px 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.tags-list li a:hover {
  background-color: var(--color-accent-1);
}

.blog-sidebar-widget .blog-body {
  margin-left: 0;
}

.blog-sidebar-widget .blog-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-sidebar-widget .blog-thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-height: 100px;
  border-radius: 0;
  margin-bottom: 0;
  margin-right: 20px;
}

.blog-sidebar-widget .blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-sidebar-widget .blog-wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
}

.blog-sidebar-widget .blog-item {
  padding-left: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
}

.blog-sidebar-widget .blog-item:not(:last-child) {
  margin-bottom: 20px;
}

.blog-sidebar-widget .blog-date {
  font-size: 14px;
}

.blog-sidebar-widget .blog-title {
  margin-bottom: 0;
  font-size: 16px;
}
/* --- Blog Inner End --- */

/* --- Blog Single Start --- */

.blog-single blockquote {
  background-color: rgba(165, 183, 188, 0.2);
  padding: 30px 45px;
  margin: 0 0 30px 0;
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  position: relative;
}

.blog-single blockquote::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/icons/quote.svg") center no-repeat;
  width: 40px;
  height: 40px;
  top: -20px;
  left: 40px;
}

.blog-single blockquote cite {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent-1);
}

.blog-single-box {
  margin-bottom: 30px;
}

.blog-single-title {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 700;
  color: var(--color-accent-1);
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.blog-single-img {
  margin-bottom: 30px;
  width: 100%;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-single-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-filter 0.5s ease, -webkit-transform 0.5s ease;
  transition: -webkit-filter 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: filter 0.5s ease, transform 0.5s ease;
  transition: filter 0.5s ease, transform 0.5s ease;
  transition: filter 0.5s ease, transform 0.5s ease, -webkit-filter 0.5s ease,
    -webkit-transform 0.5s ease;
  will-change: transform;
}

.blog-single-img:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(1.2) saturate(1.2);
  filter: brightness(1.2) saturate(1.2);
}

.comment-title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent-1);
  margin-bottom: 40px;
}

.comment-list .comment {
  margin-bottom: 20px;
}

.comment-list .children {
  list-style-type: none;
  padding-left: 120px;
  margin-top: 20px;
}

.comment-list .comment-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.comment-author {
  margin-right: 15px;
  min-width: 90px;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
}
.comment-author img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.comment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  -webkit-column-gap: 2px;
  -moz-column-gap: 2px;
  column-gap: 2px;
}

.comment-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comment-meta cite {
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent-1);
}

.comment-meta cite::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
  margin-top: -2px;
  margin-left: 5px;
}

.comment-meta time {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
}

.comment-reply-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1px;
  -moz-column-gap: 1px;
  column-gap: 1px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent-1);
  z-index: 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

.comment-reply-link:hover {
  -webkit-filter: brightness(2);
  filter: brightness(2);
}

.comment-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.comment-form .form-label input,
.comment-form .form-label textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  color: var(--color-black);
  outline: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
}

.comment-form .form-label input:focus,
.comment-form .form-label textarea:focus {
  border-color: var(--color-accent-1);
}

.comment-form .form-label textarea {
  resize: vertical;
}

.comment-form .form-label input::-webkit-input-placeholder,
.comment-form .form-label textarea::-webkit-input-placeholder {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.comment-form .form-label input::-moz-placeholder,
.comment-form .form-label textarea::-moz-placeholder {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.comment-form .form-label input:-ms-input-placeholder,
.comment-form .form-label textarea:-ms-input-placeholder {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.comment-form .form-label input::-ms-input-placeholder,
.comment-form .form-label textarea::-ms-input-placeholder {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.comment-form .form-label input::placeholder,
.comment-form .form-label textarea::placeholder {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.form-agree-label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin-bottom: 25px;
}

.form-agree-label input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
  margin: 0;
  -webkit-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}
.form-agree-label input:checked {
  background-color: var(--color-accent-1);
  border-color: var(--color-accent-1);
  background-image: url("../images/icons/check-white.svg");
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: center center;
}

.form-agree-label span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
}

.form-button {
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}
/* --- Blog Single End --- */

/* --- Testimonials Start --- */
.site-testimonials {
  padding-top: 100px;
  margin-bottom: 100px;
}

.testimonials-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.testimonials-image {
  width: 40%;
  height: 620px;
  border-radius: 63px;
  overflow: hidden;
}

.testimonials-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-filter 0.5s ease, -webkit-transform 0.5s ease;
  transition: -webkit-filter 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: filter 0.5s ease, transform 0.5s ease;
  transition: filter 0.5s ease, transform 0.5s ease;
  transition: filter 0.5s ease, transform 0.5s ease, -webkit-filter 0.5s ease,
    -webkit-transform 0.5s ease;
  will-change: transform;
}

.testimonials-image:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(1.2) saturate(1.2);
  filter: brightness(1.2) saturate(1.2);
}

.testimonials-info {
  max-width: 55%;
}

.site-testimonials .site-heading {
  margin-bottom: 25px;
  text-align: left;
}

.testimonials-text {
  margin-bottom: 30px;
  max-width: 460px;
}

.testimonials-name {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent-1);
}

.testimonials-slider {
  padding-bottom: 50px;
}

/* --- Testimonials End --- */

/* --- Contact Start --- */
.contact-wrap {
  position: relative;
}

.contact-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-form {
  margin-right: 100px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-box {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 28px;
  outline: none;
  width: 100%;
  border: none;
  background-color: var(--color-accent-1);
  color: rgba(255, 255, 255, 0.8);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  border-radius: 2px;
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 25px;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.contact-form input::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}
.form-button {
  padding: 14px 37px;
}

.contact-hours {
  margin-bottom: 30px;
}

.contact-hours-title {
  margin-bottom: 15px;
  font-size: 30px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}

.contact-hours-item:not(:last-child) {
  margin-bottom: 10px;
}

.contact-hours-day {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.contact-hours-time {
  font-size: 18px;
}

.contact-info {
  width: 30%;
}

.contact-item:not(:last-child) {
  margin-bottom: 10px;
}

.contact-item a {
  width: 100%;
}

.contact-box {
  padding: 10px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  background-color: var(--color-accent-1);
  border-radius: 2px;
  color: var(--color-white);
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* Contact End */

/* --- Gallery Start --- */
.gallery-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -30px;
  row-gap: 30px;
}

.gallery-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  padding-left: 30px;
}

.gallery-box {
  position: relative;
  overflow: hidden;
}

.gallery-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.gallery-box::after {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("../images/icons/loop-icon.svg") center center no-repeat;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.gallery-box:hover::before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.gallery-box:hover::after {
  opacity: 1;
  visibility: visible;
}

.gallery-img {
  height: 400px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
/* --- Gallery End --- */

/* --- Error Start --- */
.error-content {
  max-width: 530px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.error-title {
  font-family: "DM Serif Display", serif;
  color: var(--color-accent-1);
  font-size: 150px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.error-subtitle {
  margin-bottom: 25px;
  font-size: 35px;
  font-weight: 400;
  text-transform: capitalize;
}

.error-text {
  margin-bottom: 35px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}

.error-link {
  padding: 18px 35px;
}
/* --- Error End --- */

/* --- Newsletter Start --- */
.site-newsletter {
  padding: 60px 0;
  background-color: var(--color-accent-1);
  margin-bottom: 40px;
}

.newsletter-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.newsletter-title {
  font-family: "DM Serif Display", serif;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-transform: capitalize;
}

.newsletter-form {
  padding: 10px;
  width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

.newsletter-input {
  font-family: inherit;
  width: 80%;
  background-color: transparent;
  border: 0;
  outline: none;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  display: block;
}

.newsletter-input::-webkit-input-placeholder {
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.newsletter-input::-moz-placeholder {
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.newsletter-input:-ms-input-placeholder {
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.newsletter-input::-ms-input-placeholder {
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.newsletter-input::placeholder {
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.newsletter-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.newsletter-button:hover {
  border: 1px solid var(--color-white);
  background-color: transparent;
}
/* --- Newsletter End --- */

/* --- Footer Start --- */
.site-footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-top: 100px;
  background-color: var(--color-accent-1);
  color: var(--color-white);
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 70px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-text {
  margin-bottom: 30px;
}

.footer-box {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 330px;
}

.footer-social {
  gap: 8px;
}

.footer-social li a {
  width: 40px;
  height: 40px;
}

.footer-title {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
}

.footer-menu li {
  padding-left: 15px;
  position: relative;
}

.footer-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer-menu li:not(:last-child) {
  margin-bottom: 8px;
}

.footer-menu li a {
  text-transform: capitalize;
  color: inherit;
  border-bottom: 1px solid transparent;
}

.footer-menu li:hover a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.footer-contacts li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.footer-contacts li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-contacts li a {
  color: inherit;
  border-bottom: 1px solid transparent;
}

.footer-contacts li:hover a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.footer-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-icon img {
  width: auto;
  height: auto;
}

.footer-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-left: -10px;
}

.footer-gallery a {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  padding-left: 10px;
  height: 90px;
}

.footer-gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer-copyrights {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  padding: 26px 0;
  text-align: center;
}
/* --- Footer End --- */

/* --- Scroll Up Start --- */
.scroll-up {
  position: fixed;
  right: 40px;
  bottom: 20px;
  z-index: 99;
  -webkit-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
  -webkit-transition: -webkit-transform 0.4s linear;
  transition: -webkit-transform 0.4s linear;
  -o-transition: transform 0.4s linear;
  transition: transform 0.4s linear;
  transition: transform 0.4s linear, -webkit-transform 0.4s linear;
}

.scroll-up.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.scroll-up-button {
  width: 45px;
  height: 45px;
  border: 3px solid var(--color-accent-2);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* --- Scroll Up End --- */

/* --- Responsive Start --- */
@media (max-width: 1120px) {
  /* --- Header --- */
  .header-body,
  .header-right {
    gap: 10px;
  }

  .header-menu ul li a {
    font-size: 16px;
  }

  .header-link span {
    font-size: 16px;
  }

  /* --- About --- */
  .site-about .site-heading {
    margin-bottom: 20px;
  }

  .site-about .heading-top-title {
    font-size: 18px;
  }

  .site-about .heading-title {
    font-size: 38px;
  }

  /* --- Services --- */
  .services-body,
  .services-slider {
    margin-left: -20px;
    row-gap: 20px;
  }

  .services-body .services-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .services-item {
    padding-left: 20px;
  }

  .services-box {
    padding: 40px 30px;
  }

  /* --- Destinations --- */
  .destinations-bg {
    height: 500px;
  }

  .destinations-body,
  .destinations-slider {
    margin-left: -20px;
    row-gap: 20px;
  }

  .destinations-item {
    padding-left: 20px;
  }

  .destinations-box {
    height: 450px;
  }

  /* --- Team --- */
  .team-body {
    margin-left: -20px;
    row-gap: 30px;
  }

  .team-item {
    padding-left: 20px;
  }

  /* --- Blog --- */
  .blog-body {
    margin-left: -20px;
    row-gap: 40px;
  }

  .blog-item {
    padding-left: 20px;
  }

  /* --- Gallery --- */
  .gallery-body {
    margin-left: -20px;
  }

  .gallery-item {
    padding-left: 20px;
  }

  /* --- Footer --- */
  .footer-gallery {
    margin-left: -8px;
    row-gap: 8px;
  }

  .footer-gallery a {
    padding-left: 8px;
    height: 75px;
  }
}

@media (max-width: 992px) {
  /* --- Hompage Margins --- */
  .about,
  .site-destinations,
  .site-features,
  .site-services,
  .site-team,
  .site-questions,
  .site-blog,
  .site-testimonials {
    padding-top: 80px;
  }

  .site-team {
    margin-bottom: 0;
  }

  .site-questions,
  .site-testimonials {
    margin-bottom: 80px;
  }

  .site-blog {
    padding-bottom: 80px;
  }

  /* --- Headings --- */
  .site-testimonials .site-heading,
  .site-questions .site-heading,
  .destinations-single .site-heading {
    margin-bottom: 20px;
  }

  .site-testimonials .heading-top-title,
  .site-questions .heading-top-title,
  .destinations-single .heading-top-title {
    font-size: 18px;
  }

  .site-testimonials .heading-title,
  .site-questions .heading-title,
  .destinations-single .heading-title {
    font-size: 38px;
  }

  /* --- Header --- */
  .header-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 120px 0 100px;
    background-color: var(--color-accent-1);
    -webkit-transition: top 0.3s linear;
    -o-transition: top 0.3s linear;
    transition: top 0.3s linear;
    overflow: auto;
    z-index: 2;
  }

  .header-menu.active {
    top: 0;
  }

  .header-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 0;
    position: relative;
    z-index: 3;
  }

  .header-menu ul li {
    border-bottom: 1px solid var(--color-white);
    width: 100%;
  }

  .header-menu ul li:first-child:not(.sub-menu li) {
    border-top: 1px solid var(--color-white);
  }

  .header-menu ul li a {
    font-size: 20px;
  }

  .header-menu ul li a:not(.sub-menu li a) {
    padding: 20px;
  }

  .header-menu ul.sub-menu {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    display: block;
    background-color: var(--color-accent-1);
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    white-space: nowrap;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 0;
    display: none;
    border-top: 1px solid var(--color-white);
  }

  .header-menu ul.sub-menu li {
    padding-top: 5px;
    padding-left: 50px;
    padding-right: 0;
    padding-bottom: 5px;
    list-style: inside;
  }

  .header-menu ul.sub-menu li a {
    width: 100%;
  }

  .header-menu ul.sub-menu li:last-child {
    border-bottom: none;
  }

  .header-burger {
    display: block;
    width: 30px;
    height: 10px;
    cursor: pointer;
    position: relative;
    z-index: 3;
  }

  .header-burger::before,
  .header-burger::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fdfdfd;
    position: absolute;
    left: 0;
    z-index: 5;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .header-burger::before {
    top: 0;
  }

  .header-burger::after {
    bottom: 0;
  }

  .header-burger.active::before {
    top: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .header-burger.active::after {
    top: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /* --- Banner --- */
  .banner-title {
    margin-bottom: 30px;
    font-size: 60px;
  }

  /* --- Numbers --- */
  .numbers-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .numbers-item:nth-last-child(n + 2) {
    border-right: 0;
  }

  .numbers-item:nth-last-child(even) {
    border-right: 1px solid var(--color-white);
  }

  /* --- Features --- */
  .features-bg {
    width: 100%;
  }

  /* --- About --- */
  .about-team {
    margin-bottom: 80px;
  }

  /* --- Team --- */
  .team-body {
    margin-left: -20px;
    row-gap: 30px;
  }

  .team-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding-left: 20px;
  }

  .team-item:nth-child(2),
  .team-item:nth-child(5),
  .team-item:nth-child(8),
  .team-item:nth-child(11) {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  /* --- Services --- */
  .services-single {
    padding-top: 60px;
    margin-bottom: 60px;
  }

  .services-single-thumb {
    height: 300px;
  }

  .services-single-gallery {
    gap: 20px;
  }

  /* --- Team --- */
  .team-single-heading {
    font-size: 38px;
  }

  .team-single-left {
    width: 45%;
  }

  /* --- Blog --- */
  .blog-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  /* --- Gallery --- */
  .gallery-img {
    height: 330px;
  }

  /* --- Error --- */
  .error-title {
    font-size: 120px;
  }

  /* --- Contact --- */
  .contact-form {
    margin-right: 50px;
  }

  .contact-info {
    width: 45%;
  }

  /* --- Footer --- */
  .site-footer {
    padding-top: 80px;
  }

  .footer-top {
    padding-bottom: 60px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-box {
    max-width: 420px;
  }

  .footer-gallery {
    margin-left: -10px;
    row-gap: 10px;
  }

  .footer-gallery a {
    height: 100px;
    padding-left: 10px;
  }

  /* --- Scroll Up --- */
  .scroll-up {
    right: 8px;
    bottom: 8px;
  }
}

@media (max-width: 950px) {
  /* --- Destinations --- */
  .destinations-body .destinations-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  /* --- Blog --- */
  .blog-inner-body {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .comment-form {
    max-width: 500px;
  }

  .widget-area {
    margin-left: 0;
  }

  .widget_block:not(.widget-search) {
    padding: 25px 30px;
  }

  .blog-sidebar-widget .blog-wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
  }

  .blog-sidebar-widget .blog-thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    margin-right: 10px;
  }
}

@media (max-width: 850px) {
  /* --- About --- */
  .about-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .about-gallery {
    row-gap: 15px;
  }

  /* --- Questions --- */
  .site-questions .site-heading {
    margin-bottom: 20px;
    text-align: left;
  }

  .site-questions .heading-top-title {
    font-size: 18px;
  }

  .site-questions .heading-title {
    font-size: 38px;
  }

  .site-questions .heading-desc {
    margin: 0;
  }

  .questions-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    row-gap: 30px;
  }

  .questions-info {
    width: 100%;
  }

  .questions-image {
    width: 70%;
    height: 300px;
  }

  /* --- Testimonials --- */
  .testimonials-image {
    height: 500px;
  }

  /* --- Destinations --- */
  .destinations-single-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  /* --- Team --- */
  .team-single-left {
    width: 60%;
  }

  .team-single-right {
    width: 100%;
  }

  .team-single-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    row-gap: 40px;
  }

  /* --- Gallery --- */
  .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 750px) {
  /* --- Headings --- */
  .site-heading {
    margin-bottom: 60px;
  }

  .heading-top-title {
    font-size: 18px;
  }

  .heading-title {
    margin-bottom: 10px;
    font-size: 38px;
  }

  .heading-desc {
    font-size: 18px;
  }

  .site-testimonials .heading-title,
  .site-questions .heading-title,
  .site-about .heading-title,
  .destinations-single .heading-title,
  .team-single-heading {
    font-size: 30px;
  }

  /* --- Features --- */
  .features-bg {
    height: 600px;
  }

  .features-list-wrap {
    padding: 30px 10px;
  }

  .features-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
  }

  /* --- Header Inner --- */
  .header-inner .breadcrumbs {
    font-size: 26px;
  }

  /* --- Destinations --- */
  .destinations-single-desc-heading {
    margin-bottom: 30px;
  }

  .destinations-single-desc-heading span {
    font-size: 28px;
  }

  /* --- Services --- */
  .services-body .services-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .services-single-gallery {
    gap: 10px;
  }

  .services-single-item {
    height: 200px;
  }

  /* --- Team --- */

  .team-single-left {
    width: 70%;
  }

  /* --- Error --- */
  .error-title {
    font-size: 96px;
  }

  .error-subtitle {
    margin-bottom: 20px;
    font-size: 28px;
  }

  /* --- Newsletter --- */
  .newsletter-title {
    font-size: 28px;
  }

  /* --- Footer --- */
  .footer-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-box {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  /* --- Modal --- */
  .modal-body {
    padding: 20px;
  }

  .modal-search {
    width: 100%;
  }
}

@media (max-width: 650px) {
  /* --- Banner --- */
  .banner-top-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .banner-title {
    font-size: 48px;
  }

  .banner-text {
    margin-bottom: 38px;
    max-width: 670px;
    font-size: 18px;
  }

  /* --- About --- */
  .about-item:first-child .about-image {
    height: 300px;
  }

  .about-image {
    height: 150px;
  }

  /* --- Questions --- */
  .questions-image {
    width: 90%;
  }

  /* --- Testimonials --- */
  .testimonials-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    row-gap: 40px;
  }

  .testimonials-image {
    width: 90%;
    height: 300px;
  }

  .testimonials-info {
    max-width: 100%;
  }

  /* --- Destinations --- */
  .destinations-body .destinations-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  /* --- Team --- */
  .team-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  /* --- Blog --- */
  .blog-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  /* --- Contact --- */
  .contact-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 40px;
  }

  .contact-form {
    width: 100%;
  }

  .contact-info {
    width: 70%;
  }

  /* --- Footer --- */
  .site-footer {
    padding-top: 60px;
  }

  .footer-top {
    padding-bottom: 60px;
  }
}

@media (max-width: 570px) {
  /* --- Inner Margins --- */
  .inner-margins {
    padding-top: 60px;
    margin-bottom: 60px;
  }

  /* --- About --- */
  .about-team {
    margin-bottom: 60px;
  }

  /* --- Destinations Single --- */
  .destinations-single-block-table {
    width: 100%;
  }

  /* --- Team --- */
  .team-single-left {
    width: 90%;
    height: 500px;
  }

  /* --- Blog --- */
  .blog-inner .blog-title {
    font-size: 20px;
  }

  .blog-sidebar-widget .blog-title {
    font-size: 16px;
  }

  .blog-inner-body .blog-thumb {
    height: 350px;
  }

  .blog-single-title {
    font-size: 20px;
  }

  .blog-single-img {
    height: 350px;
  }

  .comment-list .children {
    padding-left: 40px;
  }

  .comment-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .comment-meta cite::after {
    display: none;
  }

  /* --- Gallery --- */
  .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  /* --- Newsletter --- */
  .newsletter-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 30px;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 500px) {
  /* --- Numbers --- */
  .numbers-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .numbers-item:nth-last-child(even) {
    border-right: 0;
  }

  /* --- Destinations --- */
  .destinations-single-gallery {
    margin-left: -15px;
    row-gap: 15px;
  }

  .destinations-single-item {
    padding-left: 15px;
  }

  .destinations-single-item:first-child .destinations-single-image {
    height: 200px;
  }

  .destinations-single-image {
    height: 100px;
  }
}

@media (max-width: 450px) {
  /* --- Header --- */
  .header-link svg {
    display: none;
  }

  /* --- Features --- */
  .features-number {
    width: 60px;
    height: 60px;
  }

  .features-number span {
    font-size: 25px;
  }

  .features-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .features-box {
    padding: 35px 50px 35px 35px;
  }

  /* --- Questions --- */
  .questions-image {
    width: 100%;
  }

  /* --- Testimonials --- */
  .testimonials-image {
    width: 100%;
  }

  /* --- Services --- */
  .services-single-item {
    height: 100px;
  }

  /* --- Team --- */
  .team-single-left {
    width: 100%;
    height: 450px;
  }

  /* --- Blog --- */
  .blog-inner-body .blog-thumb {
    height: 300px;
  }

  .blog-single-img {
    height: 300px;
  }

  .blog-single blockquote {
    padding: 30px;
  }

  .blog-single blockquote::before {
    left: 30px;
  }

  /* --- Gallery --- */
  .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  /* --- Contact --- */
  .contact-info {
    width: 100%;
  }

  /* --- Modal --- */
  .modal-body {
    padding: 0;
  }
}

@media (max-width: 400px) {
  /* --- Header --- */
  .header-link {
    display: none;
  }

  /* --- Blog --- */
  .comment-list .children {
    padding-left: 20px;
  }
}

@media (max-width: 330px) {
  /* --- Blog --- */
  .comment-list .children {
    padding-left: 10px;
  }
}
/* --- Responsive End --- */
