@charset "UTF-8";

:root {
  /* default */
  --white: #fff;
  --black: #000;

  /* new-var */
  --primary: #d5b163;
  --secondary: #2f2f2f;
  --dark: #00050d;

  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'DM Serif Display', sans-serif;
  --font-georgia: 'DM Serif Display', sans-serif;

  --h1: clamp(34px, 3.54vw, 68px);
  --h2: clamp(30px, 2.29vw, 44px);
  --h3: clamp(24px, 1.25vw, 24px);
  --h4: clamp(22px, 1.15vw, 22px);
  --h5: clamp(18px, 1.04vw, 20px);
  --h6: clamp(16px, 0.94vw, 18px);
  --title-40: clamp(28px, 2.08vw, 40px);

  --base: clamp(16px, 1.15vw, 22px);
  --text-md: clamp(17px, 1.41vw, 27px);

  --transition: all 0.3s ease-in-out;

  --size-120: clamp(40px, 6.25vw, 120px);
  --size-90: clamp(35px, 4.69vw, 90px);
  --size-80: clamp(35px, 4.17vw, 80px);
  --size-62: clamp(25px, 3.23vw, 62px);

  --brd-20: clamp(10px, 1.04vw, 20px);
  --brd-50: clamp(25px, 2.6vw, 50px);

}

/* CSS Document */

/*==============================================================
	Common Styles Initials
==============================================================*/

html {
  -webkit-text-size-adjust: none;
  /* Prevent font scaling in landscape */
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: inherit !important;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: var(--base);
  line-height: 1.666;
  color: var(--grey-900);
  font-weight: 400;
  background: var(--base);
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-color: var(--white) var(--primary);
  scrollbar-width: thin;
}

body.pause {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: var(--primary);
}

a {
  outline: none;
  text-decoration: none;
  color: var(--black);
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

.btn:focus {
  color: var(--black);
  box-shadow: none;
}

input,
textarea,
select {
  outline: none;
  resize: none;
}

a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: var(--grey-900);
  font-family: var(--font-secondary);
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

p+p {
  padding-top: 15px;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-dropdown input {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/*==============================================================
	Bootstrap Hack
==============================================================*/

.form-control::-webkit-input-placeholder {
  opacity: 1;
  color: var(--secondary);
}

.form-control:-moz-placeholder {
  opacity: 1;
  color: var(--secondary);
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: var(--secondary);
}

.form-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--secondary);
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

.row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
}

/*==============================================================
	Custom Style
==============================================================*/

.section {
  position: relative;
}

.container {
  max-width: 1470px;
  width: 100%;
  padding: 0 15px;
}

.h1 {
  font-size: var(--h1);
  line-height: 1.173;
}

.h2 {
  font-size: var(--h2);
  line-height: 1.277;
}

.h3 {
  font-size: var(--h3);
  line-height: 1.357;
}

.h4 {
  font-size: var(--h4);
  line-height: 1.416;
}

.h5 {
  font-size: var(--h5);
  line-height: 1.5;
}

.h6 {
  font-size: var(--h6);
  line-height: 1.55;
}

.text-base {
  font-size: var(--base);
  line-height: 1.625;
}

.text-md {
  font-size: var(--text-md);
  line-height: 1.555;
}

/* space */

.pt-120 {
  padding-top: var(--size-120);
}

.pb-120 {
  padding-bottom: var(--size-120);
}

.pt-90 {
  padding-top: var(--size-90);
}

.pb-90 {
  padding-bottom: var(--size-90);
}

.pt-80 {
  padding-top: var(--size-80);
}

.pb-80 {
  padding-bottom: var(--size-80);
}

.pt-62 {
  padding-top: var(--size-62);
}

.pb-62 {
  padding-bottom: var(--size-62);
}

.brd-20 {
  border-radius: var(--brd-20);
}

.brd-50 {
  border-radius: var(--brd-50);
}

.row-gap-30 {
  row-gap: 30px;
}

/* space */

:is(.img-cover, .img-contain) {
  position: relative;
  padding-bottom: 100%;
}

:is(.img-cover, .img-contain) :is(img, video, iframe) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain :is(img, video, iframe) {
  object-fit: contain;
}

.bullet>ul li {
  padding-left: 25px;
  position: relative;
}

.bullet>ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 100%;
  left: 5px;
  top: 10px;
  background: var(--primary);
}

.bullet>ol {
  counter-reset: item 0;
}

.bullet>ol li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.bullet>ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item 1;
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  color: var(--primary);
}

.bullet>ol li ol {
  margin-top: 12px;
}

.bullet>ol li ol li {
  padding-left: 0;
}

.bullet>ol li ol li:before {
  position: relative;
  display: inline;
}

.bullet>ol li ol ol {
  padding-left: 20px;
}

/*==============================================================
	Button Style
==============================================================*/
.btn {
  font-size: 24px;
  line-height: 1.042;
  font-weight: 700;
  color: var(--black);
  display: inline-flex;
  background: var(--primary);
  border-radius: 1000px;
  padding: 18px 71px;
  transition: var(--transition);
  box-shadow: none;
  outline: none;
  text-transform: capitalize;
  border: 2px solid transparent;
}

.btn:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--secondary);
}

.btn.btn-secondary {
  color: var(--primary);
  border-color: var(--dark);
  background: var(--dark);
}

.btn.btn-secondary:is(:hover, :focus, :active) {
  color: var(--dark);
  border-color: var(--primary);
  background: var(--primary);
}


.circle-shape {
  display: inline-flex;
  color: var(--primary);
}

.circle-shape.size-334 .icon {
  width: clamp(120px, 17.4vw, 334px);
  height: clamp(120px, 17.4vw, 334px);
}

.circle-shape.size-363 .icon {
  width: clamp(140px, 18.91vw, 363px);
  height: clamp(140px, 18.91vw, 363px);
}

.circle-shape.size-383 .icon {
  width: clamp(160px, 19.95vw, 383px);
  height: clamp(160px, 19.95vw, 383px);
}

.circle-shape.size-460 .icon {
  width: clamp(180px, 23.96vw, 460px);
  height: clamp(180px, 23.96vw, 460px);
}

.circle-shape.size-586 .icon {
  width: clamp(200px, 30.52vw, 586px);
  height: clamp(200px, 30.52vw, 586px);
}

.circle-shape.size-731 .icon {
  width: clamp(220px, 38.07vw, 731px);
  height: clamp(220px, 38.07vw, 731px);
}

/*==============================================================
	Common Css 
==============================================================*/

/* === HEADER === */
.header-wrap {
  position: relative;
  z-index: 9999;
}

.header-wrap header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 28px 0 20px;
  border-bottom: 1px solid rgb(213, 177, 99, 0.4);
  /* transition: var(--transition); */
}

.header-wrap header .container {
  display: flex;
  align-items: center;
}

.header-wrap header .logo {
  display: inline-flex;
}

.header-wrap header .logo a {
  width: 135px;
  display: inline-flex;
  transition: var(--transition);
}

.header-wrap header .logo a img {
  width: 100%;
  height: auto;
}

header .header-menu .top-link {
  transition: var(--transition);
}

header .header-menu .top-link ul {
  display: inline-flex;
  align-items: center;
  column-gap: 50px;
}

header .header-menu .top-link ul li {
  display: inline-flex;
  position: relative;
}

header .header-menu .top-link ul li a {
  display: inline-flex;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);
  transition: var(--transition);
}

header .header-menu .top-link ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -30px;
  width: 1px;
  height: 16px;
  background: var(--white);
}

header .header-menu .menu li:is(.urrent-page-ancestor, .current-menu-item, .current-menu-parent, .current-menu-ancestor, .current-page-parent, .current_page_parent, .current_page_ancestor, :hover) a {
  color: var(--white);
}


.header-wrap.sticky header {
  padding: 15px 0;
  background: var(--white);
}

.header-wrap.sticky .header-menu .top-link {
  display: none;
}

.header-wrap.sticky .header-menu .menu>ul>li>a {
  font-size: 18px;
}

@media(min-width:1025px) {
  header .menu-toggle {
    display: none;
  }

  .header-wrap header .header-menu {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 25px;
  }

  .header-wrap.sticky header .logo a {
    width: 80px;
  }

  header .header-menu .menu {
    display: inline-flex;
    margin-left: auto;
  }

  header .header-menu .menu>ul {
    display: inline-flex;
    align-items: center;
    column-gap: 47px;
  }

  header .header-menu .menu>ul>li {
    display: inline-flex;
  }

  header .header-menu .menu>ul>li>a {
    display: inline-flex;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
  }

  .sticky header .header-menu .menu li:is(.urrent-page-ancestor, .current-menu-item, .current-menu-parent, .current-menu-ancestor, .current-page-parent, .current_page_parent, .current_page_ancestor, :hover) a {
    color: var(--secondary);
  }
}

@media(max-width:1279px) {
  .header-wrap header {
    padding: 15px 0;
  }

  .header-wrap header .logo a {
    width: 110px;
  }

  header .header-menu .menu>ul>li>a {
    font-size: 18px;
  }

  header .header-menu .menu>ul {
    column-gap: 30px;
  }

  header .header-menu .top-link ul li a {
    font-size: 16px;
  }

  header .header-menu .top-link ul {
    column-gap: 30px;
  }

  header .header-menu .top-link ul li:not(:last-child)::after {
    right: -15px;
  }
}

@media(max-width:1024px) {

  .header-wrap .menu-toggle {
    margin-left: auto;
  }

  .header-wrap .menu-toggle button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--primary);
  }

  .header-wrap header .logo a {
    width: 70px;
  }

  header .header-menu .top-link {
    display: none;
  }

  header .header-menu {
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--primary);
    width: 320px;
    padding: 70px 15px 20px;
    z-index: 2;
    transition: var(--transition);
  }

  header .header-menu .menu {
    height: 100%;
    overflow: auto;
  }

  header .header-menu:not(.menu-open) {
    right: -320px;
  }

  header .header-menu .menu-toggle button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 15px 10px;
    justify-content: flex-end;
    color: var(--black) !important;
  }

  header .header-menu .menu-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  header .header-menu .menu li {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  header .header-menu .menu li>a {
    display: block;
    font-size: 16px;
    line-height: 1;
    padding: 17px 0;
  }

  header .header-menu .menu .sub-menu {
    padding: 0 8px;
    display: none;
  }

  header .header-menu .menu-arrow .icon {
    transition: var(--transition);
  }

  header .header-menu .menu-arrow.active .icon {
    transform: rotate(180deg);
  }

  header .overlay {
    position: fixed;
    inset: 0;
    background: var(--black);
    opacity: 0.7;
    z-index: 1;
    transition: var(--transition);
  }

  header .overlay:not(.active) {
    opacity: 0;
    visibility: hidden;
  }
}

/* === HEADER === */

/* === FOOTER === */
.footer-wrap {
  position: relative;
  background: no-repeat center / cover;
}

.footer-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0.9;
}

.footer-wrap footer {
  position: relative;
  z-index: 1;
}

.footer-wrap footer .logo {
  display: inline-flex;
  margin: 0 auto;
}

.footer-wrap footer .logo a {
  width: clamp(120px, 14.79vw, 284px);
  display: inline-flex;
  transition: var(--transition);
}

.footer-wrap footer .logo a img {
  width: 100%;
  height: auto;
}

.footer-wrap footer a {
  display: inline-flex;
  font-size: var(--base);
  line-height: 1;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

.footer-wrap .footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 10px;
  column-gap: 48px;
}

.footer-wrap .footer-menu ul li {
  display: inline-block;
}

.footer-wrap .footer-menu ul li a {
  color: var(--primary);
}

.footer-wrap .footer-menu ul li a:hover {
  color: var(--white);
}

.footer-wrap .contact-info {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-wrap .contact-info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 56px;
  row-gap: 15px;
}

.footer-wrap .contact-info ul li {
  display: inline-flex;
}

.footer-wrap .contact-info ul li a {
  display: inline-flex;
  align-items: center;
  column-gap: 12px;
}

.footer-wrap .bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(187, 179, 187, 0.2);
}

.footer-wrap .bottom .container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 30px;
  justify-content: space-between;
}

.footer-wrap footer .bottom :is(a, span, p, .design-by) {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
}

.footer-wrap footer .bottom a {
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
}

.footer-wrap footer .bottom a:hover {
  color: var(--primary);
}

.footer-wrap footer .bottom .copyright span {
  display: inline-block;
}

.footer-wrap footer .bottom .copyright span:not(:last-child)::after {
  content: "|";
  margin: 0 13px;
}

.footer-wrap footer .bottom .design-by a {
  color: var(--primary);
}

.footer-wrap footer .bottom .design-by a:hover {
  color: var(--white);
}

/* === FOOTER === */

/* === BANNER === */
.banner {
  position: relative;
  background: no-repeat center / cover;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0.71;
}

.banner .circle-shape {
  position: absolute;
  color: var(--primary);
  opacity: 0.28;
  z-index: 1;
}

.banner .banner-info {
  text-align: left;
  max-width: 1102px;
  position: relative;
  z-index: 1;
  color: var(--white);
}

.banner .banner-info h1 {
  color: var(--white);
  padding-bottom: 12px;
}

.banner .banner-info h1 span {
  color: var(--primary);
}

.banner .banner-info p {
  max-width: 880px;
}

.banner.hero-banner {
  padding: clamp(170px, 19.11vw, 367px) 0 clamp(70px, 9.38vw, 180px);
}

.banner.hero-banner .btn-wrap {
  column-gap: 20px;
  row-gap: 10px;
}

.banner.hero-banner .circle-shape {
  bottom: clamp(20px, 2.29vw, 40px);
  right: clamp(20px, 2.29vw, 40px);
}

.banner.hero-banner .shape .icon {
  width: clamp(170px, 16.25vw, 460px);
}

.banner.inner-banner {
  padding: clamp(170px, 16.25vw, 312px) 0 clamp(70px, 10.78vw, 207px);
}

.banner.inner-banner .circle-shape {
  bottom: clamp(20px, 1.82vw, 35px);
  right: clamp(15px, 1.56vw, 30px);
}

.banner.inner-banner .banner-info {
  text-align: center;
  max-width: 100%;
}

.banner.inner-banner .banner-info h1 {
  padding-bottom: 10px;
}

.banner.inner-banner .breadcrumb {
  margin: 0;
  justify-content: center;
}

.banner.inner-banner .breadcrumb ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* column-gap: 36px; */
}

.banner.inner-banner .breadcrumb ul li {
  position: relative;
  display: inline-flex;
  font-size: var(--text-md);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
}

.banner.inner-banner .breadcrumb ul li:not(:last-child)::after {
  content: "|";
  margin: 0 var(--h6);
}

.banner.inner-banner .breadcrumb ul li a {
  display: inline-flex;
  color: currentColor;
  transition: var(--transition);
}

.banner.inner-banner .breadcrumb ul li a:hover {
  color: var(--primary);
}

/* === BANNER === */

/* === HOME === */
.content-img {
  overflow: hidden;
  position: relative;
  padding: var(--size-120) 0;
}

.content-img>.inner+.inner {
  padding-top: var(--size-120);
}

.content-img>.inner.reverse .row {
  flex-direction: row-reverse;
}

.content-img .content-box h2 {
  font-size: var(--h2);
  padding-bottom: clamp(18px, 1.04vw, 20px);
}

.content-img .content-box p span {
  color: var(--primary);
}

.content-img .content-box :is(ul, ol) {
  display: flex;
  flex-direction: column;
  row-gap: clamp(10px, 0.94vw, 18px);
  padding: clamp(20px, 1.41vw, 27px) 0 clamp(18px, 1.35vw, 26px);
}

.content-img .content-box :is(ul, ol):last-child {
  padding-bottom: 0;
}

.content-img .content-box :is(ul, ol):first-child {
  padding-top: 0;
}

.content-img .content-box ul li {
  padding-left: clamp(30px, 2.08vw, 40px);
  position: relative;
}

.content-img .content-box ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: clamp(18px, 1.3vw, 25px);
  height: clamp(18px, 1.3vw, 25px);
  border-radius: 100%;
  border: 4px solid var(--primary);
  background: transparent;
}

.content-img .reverse .img-box {
  color: #e5e5e5;
  margin-left: auto;
}

.content-img .img-box {
  flex-shrink: 0;
  display: inline-flex;
  position: relative;
  color: #f3e9d4;
  width: 100%;
  width: 564px;
  height: 564px;
  border-radius: 100%;
  border: 39px solid currentColor;
}

.content-img .img-box::after {
  content: "";
  position: absolute;
  width: 564px;
  height: 564px;
  border-radius: 100%;
  top: -64px;
  left: -64px;
  border: 6px solid currentColor;
  z-index: -2;
}

.content-img .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.content-img .circle-shape {
  position: absolute;
  opacity: 28%;
}

.content-img .circle-shape.shape-left {
  left: -16vw;
  bottom: 30%;
}

.content-img .circle-shape.shape-right {
  right: -14vw;
  top: 18%;
}

/* our-service */
.service-box {
  font-size: 16px;
  line-height: 1.875;
  color: var(--white);
  height: 100%;
  padding: 36px 42px 70px;
  background: rgba(255, 255, 255, 0.05);
}

.service-box .icon-box {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  position: relative;
  color: var(--white);
}

.service-box .icon-box::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 15px;
  width: 72px;
  height: 72px;
  background: var(--primary);
  opacity: 0.3;
  border-radius: 100%;
}

.service-box .icon-box svg {
  fill: currentColor;
  position: relative;
  z-index: 1;

}

.service-box h3 {
  font-size: var(--title-40);
  padding-top: 34px;
  color: var(--primary);
}

.service-box ul {
  display: flex;
  flex-direction: column;
  row-gap: 13px;
  padding: 26px 0 24px;
}

.service-box ul li {
  position: relative;
  padding-left: 51px;
  font-size: clamp(17px, 1.04vw, 20px);
  color: var(--white);
  background: url(../images/checkmark.svg) no-repeat top -3px left -2px;
  background-size: 36px;
}

.our-service {
  /* overflow: hidden; */
  position: relative;
}

.our-service .circle-shape {
  display: inline-flex;
  position: absolute;
  right: 0;
  bottom: -11.98vw;
  opacity: 28%;
  overflow: hidden;
}

.our-service .circle-shape .icon {
  position: relative;
  right: -11.98vw;
}

.our-service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0.87;
}

.our-service .container {
  position: relative;
  z-index: 1;
}

.our-service .title-wrap {
  color: var(--white);
}

.our-service .title-wrap h2 {
  color: var(--primary);
}

.our-service .title-wrap p span {
  display: block;
  color: var(--primary);
}

/* meet-team */
.team-box {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.team-box .team-img {
  flex-shrink: 0;
  display: inline-flex;
  position: relative;
  color: #f3e9d4;
  width: 100%;
  width: 350px;
  height: 350px;
  border-radius: 100%;
  border: 25px solid currentColor;
  margin: 0 auto;
}

.team-box .team-img::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 100%;
  top: -41px;
  left: -41px;
  border: 4px solid currentColor;
  z-index: -2;
}

.team-box .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.team-box h3 {
  font-size: var(--title-40);
  line-height: 1.2;
  color: var(--primary);
  padding: clamp(20px, 1.61vw, 31px) 0 7px;
}

.team-box p {
  line-height: 1.727;
  color: var(--secondary);
}

.meet-team .title-wrap .sub-text {
  color: var(--primary);
}

.meet-team .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 10px;
}

/* banner-cta */
.banner-cta-wrap .banner-cta {
  overflow: hidden;
  position: relative;
  text-align: center;
  color: var(--secondary);
  background: var(--primary);
  padding-left: 20px;
  padding-right: 20px;
}

.banner-cta-wrap .banner-cta .circle-shape {
  color: var(--white);
  opacity: 0.22;
}

.banner-cta-wrap .banner-cta .circle-shape.top-left {
  position: absolute;
  top: -14%;
  left: -10%;
}

.banner-cta-wrap .banner-cta .circle-shape.bottom-right {
  position: absolute;
  bottom: -15%;
  right: -8%;
}

.banner-cta-wrap .banner-cta .content-box {
  position: relative;
  z-index: 1;
  max-width: 1179px;
  margin: 0 auto;
  text-align: center;
  color: var(--secondary);
  font-weight: 500;
  line-height: 1.727;
}

.banner-cta-wrap .banner-cta .content-box h2 {
  padding-bottom: 12px;
}

.banner-cta-wrap .banner-cta .content-box p {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-cta-wrap .banner-cta .content-box p a {
  font-family: var(--font-secondary);
  font-size: clamp(20px, 1.56vw, 30px);
}

.banner-cta-wrap .banner-cta .content-box+.content-box {
  padding-top: 20px;
}

/* calculator-wrap */
.calculator-wrap .title-wrap {
  max-width: 1213px;
  margin: 0 auto;
  font-weight: 500;
}

.calculator-wrap .title-wrap .sub-text {
  color: var(--primary);
  max-width: 657px;
  margin: 0 auto;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 600;
  line-height: 1.3846;
}

/* === HOME === */

/* === SERVICE === */
.servic-wrap .service-box {
  background: var(--dark);
}

/* === SERVICE === */
/* === CONTACT === */
.contact-wrap .map.img-cover {
  padding-bottom: clamp(300px, 28.33vw, 544px);
}

.contact-wrap .contact-form {
  background: var(--dark);
  padding: clamp(25px, 2.5vw, 48px) clamp(20px, 2.6vw, 50px);
  border-radius: clamp(10px, 1.56vw, 30px);
}

.contact-wrap .contact-form h3 {
  font-size: clamp(20px, 1.56vw, 30px);
  line-height: 1;
  color: var(--primary);
}

.contact-wrap .contact-form .sub-text {
  font-size: 16px;
  line-height: 1.625;
  color: var(--primary);
}

.contact-wrap .contact-form .form-wrap .form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.contact-wrap .contact-form .form-wrap .form-row>div {
  padding: 0 15px;
}

.contact-form .form-wrap .form-control {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: var(--white);
  border: 0;
  background: transparent;

  border-radius: 0;
  border-bottom: 1px solid rgba(183, 185, 187, 0.5);
  padding: 16px 10px;
  outline: none;
  box-shadow: none;
}

.contact-form .form-wrap textarea.form-control {
  height: 140px;
}

.contact-form .form-wrap .form-control::-webkit-input-placeholder {
  opacity: 1;
  color: var(--white);
}

.contact-form .form-wrap .form-control:-moz-placeholder {
  opacity: 1;
  color: var(--white);
}

.contact-form .form-wrap .form-control::-moz-placeholder {
  opacity: 1;
  color: var(--white);
}

.contact-form .form-wrap .form-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--white);
}

.wpcf7-not-valid-tip {
  font-size: 16px !important;
  padding-top: 5px;
}

.wpcf7-response-output {
  display: none;
}

.contact-wrap .contact-info ul {
  display: flex;
  flex-direction: column;
}

.contact-wrap .contact-info ul li {
  padding: 10px;
}

.contact-wrap .contact-info ul li+li {
  border-top: 1px solid rgba(183, 185, 187, 0.5);
}

.contact-wrap .contact-info ul li h3 {
  color: var(--primary);
  padding-bottom: 10px;
}

.contact-wrap .contact-info ul li a {
  display: inline-flex;
  align-items: center;
  column-gap: 28px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--dark);
}

.contact-wrap .contact-info ul li a .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--dark);
  padding: 5px;
}

.contact-wrap .contact-info ul li a .icon-box .icon {
  max-width: 100%;
  height: auto;
}

/* === CONTACT === */

/* === our team === */
.content-img.our-team .reverse .img-box {
  color: #f3e9d4;
}

.content-img.our-team .content-box h2 {
  color: var(--primary);
  padding-bottom: 5px;
}

.content-img.our-team .content-box .position {
  color: var(--secondary);
  padding-bottom: 10px;
}

/* === our team === */

/* === order-wrap === */
.order-wrap .order-form {
  max-width: 992px;
  background: var(--white);
  padding: 40px 52px;
  margin: 0 auto;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.06);
}

.order-wrap .form-wrap .row {
  flex-direction: column;
  row-gap: 18px;
}

.order-wrap .form-wrap .col {
  flex: 0;
  width: 100%;
}

.order-wrap .form-wrap label {
  font-size: var(--h5);
  font-weight: 600;
  color: var(--dark);
  padding-bottom: 10px;
}

.order-wrap .form-wrap .form-control {
  height: 60px;
  padding: 10px 16px;
  border-radius: 3px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  outline: none;
  box-shadow: none;
}

.order-wrap .form-wrap .form-control+.form-control {
  margin-top: 20px;
}

/* === order-wrap === */

/* === 404 === */
.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: white;
  background: var(--secondary);
}

.flex-container .text-center {
  text-align: center;
}

.flex-container .text-center h1,
.flex-container .text-center h3 {
  margin: 10px;
  cursor: default;
}

.flex-container .text-center h1 .fade-in,
.flex-container .text-center h3 .fade-in {
  animation: fadeIn 2s ease infinite;
}

.flex-container .text-center h1 {
  font-size: 8em;
  transition: font-size 200ms ease-in-out;
  border-bottom: 1px dashed white;
}

.flex-container .text-center h1 span#digit1 {
  animation-delay: 200ms;
}

.flex-container .text-center h1 span#digit2 {
  animation-delay: 300ms;
}

.flex-container .text-center h1 span#digit3 {
  animation-delay: 400ms;
}

.flex-container .text-center .btn-404 {
  display: inline-flex;
  border: 1px solid white;
  background: transparent;
  outline: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  transition: background-color 200ms ease-in;
  margin: 20px 0;
}

.flex-container .text-center .btn-404:hover {
  background-color: var(--primary);
  color: var(--secondary);
  cursor: pointer;
  border-color: var(--primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* === 404 === */