@charset "UTF-8";

:root {
  /* default Colors */
  --white: #fff;
  --black: #000;

  --primary: #C2A572;
  --secondary: #095753;

  --gray-100: #C1C1C1;
  --gray-200: #909090;
  --gray-300: #A2A2A2;
  --gray-400: #727272;
  --gray-500: #6F6F6F;
  --gray-600: #6A6A6A;
  --gray-700: #626262;
  --gray-800: #373737;
  --gray-900: #2C2B2B;

  --bg-color: var(--gray-900);

  --font-base: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-inter: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-inknut-antiqua: "Inknut Antiqua", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-space-grotesk: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --transition: all 0.3s ease-in-out;
}

/*==============================================================
	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: auto !important;
  scrollbar-color: var(--primary) var(--white);
  scrollbar-width: thin;
  overscroll-behavior: none;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.56;
  color: var(--blue-dark);
  font-weight: 400;
  background: var(--bg-color);
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-color: var(--primary) var(--white);
  scrollbar-width: thin;
}

body.pause {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--primary);
}

::-moz-selection {
  color: var(--white);
  background: var(--primary);
}

::-webkit-selection {
  color: var(--white);
  background: var(--primary);
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}

::-webkit-scrollbar-track {
  background: var(--white);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--primary);
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  color: var(--primary);
}

.btn:focus {
  box-shadow: none;
}

input[type='submit']:not(.btn) {
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

input,
textarea,
select {
  outline: none;
  resize: none;
}

a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-inknut-antiqua);
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

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

p {
  margin: 0;
  padding: 0;
}

p+p {
  margin: 15px 0 0 0;
  padding: 0;
}

.slick-slide {
  outline: none !important;
}

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: #17181a;
}

.form-control:-moz-placeholder {
  opacity: 1;
  color: #17181a;
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: #17181a;
}

.form-control:-ms-input-placeholder {
  opacity: 1;
  color: #17181a;
}

input::-webkit-input-placeholder {
  opacity: 1;
  color: #17181a;
}

input:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

/*==============================================================
	Custom Style
==============================================================*/
.section {
  z-index: 1;
  position: relative;
  background: var(--bg-color);
}

.container {
  max-width: 1142px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.container.container-wide {
  max-width: calc((100vw - var(--scrollbar-width, 0px) - 1142px)/2 + 1142px);
}

.h1 {
  font-size: clamp(40px, 5.33vw, 80px);
}

.rotate-text {
  font-size: clamp(20px, 5.33vw, 24px);
  line-height: 1.666;
  color: var(--primary);
  font-weight: 400;
}

/*==============================================================
	healper
==============================================================*/

.inline-flex {
  display: inline-flex;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.bullet ul>li {
  padding-left: 16px;
  position: relative;
}

.bullet ul>li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: var(--blue-dark);
}

.bullet ol {
  counter-reset: count;
}

.bullet ol>li::before {
  counter-increment: count;
  content: counters(count, ".") ". ";
}

.bullet ol ul {
  padding: 5px 0 5px 16px;
}

.bullet ul ol {
  padding: 5px 0 5px 0;
}

.bullet :is(ol, ul)+ :is(ol, ul) {
  padding-top: 10px;
}

:is(.img-cover, .img-contain) {
  display: block;
  width: 100%;
  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;
}

.swiper-arrow {
  box-shadow: none;
  outline: none;
  cursor: pointer;
  width: clamp(42px, 5.93vw, 89px);
  height: clamp(42px, 5.93vw, 89px);
  display: grid;
  place-items: center;
  border-radius: 100%;
  color: var(--primary);
  background: var(--bg-color);
  border: 1px solid var(--white);
  transition: var(--transition);
}

.swiper-arrow:hover {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

.swiper-arrow .icon {
  width: clamp(10px, 1.53vw, 23px);
  height: auto;
}

.swiper-arrow.prev .icon {
  transform: rotate(180deg);
}

/*==============================================================
	All Button
==============================================================*/

.btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 30px 17px 41px;
  border-radius: 100px;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 500;
  font-family: var(--font-inter);
  color: var(--white);
  column-gap: clamp(15px, 1.47vw, 22px);
  border: 1px solid transparent;
  background: var(--secondary);
  transition: var(--transition);
}

.btn .icon {
  width: 28px;
  height: auto;
}


.btn:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--primary);
}

.btn.outline-white {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.btn.outline-white:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.form-wrap .gform-theme.gform-theme--framework.gform_wrapper .button:where( :not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 17px 30px 17px 41px !important;
  border-radius: 100px !important;
  font-size: 20px !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
  font-family: var(--font-inter) !important;
  color: var(--white) !important;
  column-gap: clamp(15px, 1.47vw, 22px) !important;
  border: 1px solid transparent !important;
  background: var(--secondary) !important;
  transition: var(--transition) !important;
}

.form-wrap .gform-theme--foundation .gform_footer input[type="submit"]:hover {
  color: var(--white) !important;
  background: var(--primary) !important;
}

.btn-wrap>span {
  display: block;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  font-style: italic;
  text-align: center;
  color: var(--gray-300);
  padding-top: 12px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  color: var(--primary);
  column-gap: 16px;
  transition: var(--transition);
}

.btn-link .icon {
  margin-top: 3px;
  transition: var(--transition);
}

.btn-link:hover .icon {
  margin-left: -5px;
}



/* ===== HEADER START ===== */
.header-wrap header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.pause .header-wrap .header-top {
  background: var(--bg-color);
}

.header-wrap .header-top {
  position: relative;
  padding: clamp(22px, 2.6vw, 39px) 0;
  z-index: 2;
}

.header-wrap .header-top .container {
  display: flex;
  justify-content: space-between;
  max-width: 1458px;
}

.header-wrap .header-top .logo {
  display: inline-flex;
}

.header-wrap .header-top .logo a {
  width: clamp(108px, 15.13vw, 227px);
  display: inline-block;
  transition: var(--transition);
}

.header-wrap .header-top .logo a img {
  width: 100%;
  height: auto;
}

.header-wrap .header-top .head-call {
  padding-top: clamp(20px, 2.2vw, 33px);
}

.header-wrap .header-top .head-call a {
  display: inline-block;
  font-size: clamp(14px, 1.33vw, 20px);
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  transition: var(--transition);
}

.header-wrap .header-top .head-call a:hover {
  color: var(--primary);
}

.header-wrap .menu-toggle {
  position: fixed;
  top: clamp(20px, 2.5vw, 45px);
  left: 0;
  right: 0;
  width: 157px;
  margin: 0 auto;
  z-index: 2;
}

.header-wrap .menu-toggle button {
  cursor: pointer;
  background: var(--white);
  border-radius: 100px;
  width: 157px;
  height: 65px;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 9px;
  padding-top: 15px;
}

.header-wrap .menu-toggle button span {
  display: inline-flex;
  font-family: var(--font-inknut-antiqua);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
}

.header-wrap .menu-toggle button .icon {
  position: relative;
  width: 38px;
  height: 14px;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.header-wrap .menu-toggle button .icon::after,
.header-wrap .menu-toggle button .icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--gray-900);
  transition: var(--transition);
  border-radius: 4px;
  transform-origin: center;
  margin: 0 auto;
}

.header-wrap .menu-toggle button .icon::after {
  top: 0;
}

.header-wrap .menu-toggle button .icon::before {
  bottom: 0;
}

.header-wrap .menu-toggle button.active .icon::after {
  top: 5.5px;
  width: 25px;
  transform: rotate(45deg);
}

.header-wrap .menu-toggle button.active .icon::before {
  bottom: 5.5px;
  width: 25px;
  transform: rotate(-45deg);
}

.header-menu {
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  background-color: var(--gray-900);
  transition: height cubic-bezier(0.25, 1, 0.5, 1) .6s .6s;
  z-index: 800;
  z-index: 1;
}

.header-menu .container {
  height: 100%;
  max-width: 1458px;
}

.header-menu .inner {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 30px;
  padding: clamp(120px, 20vw, 300px) 0 clamp(100px, 4.8vw, 72px);
}

.header-menu .inner>.col {
  width: 100%;
  padding: 0 15px;
}

.header-menu .inner>.col.col-left {
  width: 48.2%;
}

.header-menu .inner>.col.col-right {
  width: 44%;
}

.header-menu .inner>.col.bottom {
  margin-top: auto;
}

.header-menu .inner .menu>ul {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 30px);
}

.header-menu .inner .menu>ul>li {
  display: inline-flex;
  overflow: hidden;
}

.header-menu .inner .menu>ul>li>a {
  display: inline-flex;
  font-family: var(--font-inknut-antiqua);
  font-size: clamp(40px, 5.33vw, 80px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}

.header-menu .inner .menu>ul>li:is(.urrent-page-ancestor, .current-menu-item, .current-menu-parent, .current-menu-ancestor, .current-page-parent, .current_page_parent, .current_page_ancestor)>a {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.header-menu .inner .menu>ul>li>a:hover {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.header-menu .inner .title {
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  overflow: hidden;
}


.header-menu :is(.service-wrap, .contact-wrap) {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 30px;
}

.header-menu :is(.service-wrap, .contact-wrap)>div {
  width: 100%;
  padding: 0 15px;
}

.header-menu :is(.service-wrap, .contact-wrap) ul {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.header-menu :is(.service-wrap, .contact-wrap) ul li {
  display: inline-flex;
}

.header-menu :is(.service-wrap, .contact-wrap) ul li a {
  display: inline-block;
  font-size: clamp(14px, 1.33vw, 20px);
  font-weight: 400;
  line-height: 100%;
  color: var(--gray-600);
  font-family: var(--font-inter);
  transition: var(--transition);
}

.header-menu :is(.service-wrap, .contact-wrap) ul li a:hover {
  color: var(--primary);
}

.header-menu .service-wrap {
  padding-top: 15px;
}

.header-menu .service-wrap .title {
  padding-bottom: clamp(12px, 3vw, 45px);
}

.header-menu .service-wrap>div {
  width: 50%;
}

.header-menu .contact-wrap .title {
  padding-bottom: clamp(12px, 1.47vw, 22px);
}

/* ===== HEADER END ===== */

/* === FOOTER START === */
.footer-wrap {
  background: var(--gray-800);
}

.footer-wrap .title {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: clamp(13px, 2.2vw, 33px);
}

.footer-wrap ul.footer-menu {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.footer-wrap ul.footer-menu li {
  display: inline-flex;
}

.footer-wrap ul.footer-menu li a {
  display: inline-block;
  font-size: clamp(14px, 1.33vw, 20px);
  font-weight: 400;
  line-height: 100%;
  color: var(--gray-600);
  font-family: var(--font-inter);
  transition: var(--transition);
}

.footer-wrap ul.footer-menu li a:hover {
  color: var(--primary);
}

.footer-wrap footer {
  padding: 52px 0 33px;
  background: var(--gray-800);
}

.footer-wrap footer .container {
  max-width: 1380px;
}

.footer-wrap footer .header-top .contact-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
  row-gap: 40px;
}

.footer-wrap footer .header-top .contact-wrap .col {
  padding: 0 15px;
}

.footer-wrap footer .header-bottom {
  padding-top: clamp(103px, 12vw, 180px);
}

.footer-wrap footer .logo a {
  display: inline-flex;
  align-items: flex-end;
  column-gap: clamp(20px, 2.27vw, 34px);
  font-size: clamp(36px, 6.67vw, 100px);
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-inknut-antiqua);
  color: var(--gray-500);
  row-gap: 5px;
}

.footer-wrap footer .logo a span {
  font-size: clamp(24px, 3.33vw, 50px);
}

.footer-wrap footer .copyrights {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  padding-top: clamp(17px, 3.33vw, 50px);
  color: var(--gray-600);
}

.footer-wrap footer .copyrights a {
  color: currentColor;
}

.footer-wrap footer .copyrights span {
  display: inline-flex;
  align-items: center;
}

.footer-wrap footer .copyrights span img {
  margin: 0 7px;
}

.footer-wrap footer .copyrights span+span {
  padding-left: 150px;
}

/* === FOOTER END === */

/* ===== BANNER START ===== */
.hero-banner {
  overflow: hidden;
  position: relative;
  color: var(--gray-900);
  /* padding: clamp(116px, 23.33vw, 350px) 0 clamp(66px, 6.67vw, 100px); */
  padding: clamp(116px, 23.33vw, 26vh) 0 clamp(66px, 6.67vw, 100px);
  background: currentColor;
  z-index: 1;
}

.hero-banner .banner-info {
  max-width: clamp(300px, 52.2vw, 783px);
  position: relative;
  z-index: 2;
}

.hero-banner .banner-info .sub-title {
  font-family: var(--font-inknut-antiqua);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 24px);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.29);
  padding-bottom: 16px;
}

.hero-banner .banner-info .banner-title {
  font-size: clamp(40px, 5.33vw, 80px);
  line-height: 1.0625;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
}

.hero-banner .banner-info .banner-title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.hero-banner .banner-info .sub-text {
  padding-right: 20px;
  padding-top: clamp(21px, 2.27vw, 34px);
}

.hero-banner .banner-info .sub-text p {
  max-width: 617px;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.666;
  color: var(--white);
}

.hero-banner .banner-info .btn-wrap {
  display: inline-flex;
  flex-direction: column;
  padding-top: clamp(41px, 4.73vw, 71px);
}

.hero-banner .banner-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(320px, 51.13vw, 767px);
  z-index: 1;
  overflow: hidden;
}

.hero-banner .banner-img .shape {
  position: absolute;
  top: 0px;
  left: -2px;
  width: 100%;
  height: auto;
  z-index: 1;
}

.hero-banner .banner-img img:not(.shape) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ===== BANNER END ===== */

/* ===== HOME ===== */
/* service */

.service-box {
  display: flex;
  flex-direction: column;
  row-gap: clamp(7px, 1.4vw, 21px);
  transition: all 0.6s ease-in-out;
}

.service-box .img-cover {
  padding-bottom: clamp(266px, 38.33vw, 575px);
}

.service-box:not(.box-roof) .img-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gray-900);
  opacity: 0.51;
}

.service-box h3 {
  font-family: var(--font-base);
  color: var(--white);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.666;
  margin-bottom: -3px;
}

.service-box h3 a {
  display: inline-flex;
  align-items: center;
  color: currentColor;
  column-gap: clamp(10px, 1.13vw, 17px);
  transition: var(--transition);
}

.service-box h3 a:hover {
  color: var(--primary);
}

.service-box h3 a .icon {
  width: clamp(15px, 1.53vw, 23px);
  height: auto;
  margin-top: 3px;
  color: var(--primary);
  transition: var(--transition);
}

.service-box:hover h3 a .icon {
  margin-left: -5px;
}

.service-box p {
  font-weight: 400;
  font-size: clamp(12px, 1.07vw, 16px);
  line-height: 1.3125;
  color: var(--gray-200);
}

.service-box .btn-wrap {
  padding-top: 18px;
}

.service-box.box-roof {
  row-gap: clamp(10px, 1.4vw, 21px);
}

.service-box.box-roof .img-cover {
  padding-bottom: clamp(398px, 38.47vw, 577px);
}

.service-box.box-roof h3 {
  font-size: 24px;
}

.service-box p {
  font-size: 16px;
}

.service-wrap.home {
  padding-bottom: clamp(83px, 12.2vw, 183px);
  padding-top: clamp(38px, 15.2vw, 228px);
}

.service-wrap.home .title-wrap {
  display: flex;
  align-items: flex-start;
  padding-bottom: clamp(40px, 6.27vw, 94px);
}

.service-wrap.home .title-wrap h2 {
  flex-shrink: 0;
  padding-bottom: 10px;
}

.service-wrap.home .title-wrap .sub-text {
  font-size: clamp(16px, 1.6vw, 24px);
  color: var(--white);
  line-height: 1.666;
}

.service-wrap.home .container-wide {
  margin-right: 0;
  padding-right: 0;
}

.service-wrap.home .swiper-slide {
  width: 100%;
  max-width: clamp(204px, 29.27vw, 439px);
}

/* we-are-ready */
.we-are-ready {
  position: relative;
}

.we-are-ready .img-cover {
  padding-bottom: clamp(178px, 52.53vw, 788px);
}

.we-are-ready .img-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #2C2B2B 100%);
}

.we-are-ready .banner-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 0 15px;
}

.we-are-ready .banner-info h2 {
  font-size: clamp(32px, 5.33vw, 80px);
  line-height: 1;
  font-weight: 400;
  color: var(--primary);
}

.we-are-ready .banner-info .btn-wrap {
  padding-top: clamp(42px, 5vw, 75px);
}

/* type-of-roofs */
.type-of-roofs-wrap {
  overflow: hidden;
  padding: clamp(74px, 12.07vw, 181px) 0 clamp(90px, 17.4vw, 261px);
}

.type-of-roofs-wrap .column-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 40px;
}

.type-of-roofs-wrap .column-wrap .col-left {
  width: 142px;
  flex-shrink: 0;
  padding-top: 22px;
  padding-left: 15px;
  padding-right: 15px;
}

.type-of-roofs-wrap .column-wrap .col-right {
  width: calc(100% - 154px);
  padding-left: 15px;
  padding-right: 15px;
}

.type-of-roofs-wrap .roofs-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -40px;
}

.type-of-roofs-wrap .roofs-list ul li {
  padding: 0 40px;
}

/* what-we-do */
.what-we-do-wrap {
  overflow: hidden;
  background: var(--gray-800);
  padding: clamp(55px, 9.33vw, 140px) 0;
}

.what-we-do-wrap .column-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -15px;
}

.what-we-do-wrap .column-wrap :is(.col-left, .col-right) {
  padding: 0 15px;
  width: 100%;
}

.what-we-do-wrap .gallery ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -9px;
}

.what-we-do-wrap .gallery ul li {
  padding: 0 9px;
  width: 33.333%;
}

.what-we-do-wrap .gallery ul li .img-cover {
  padding-bottom: 427px;
}

.what-we-do-wrap .title-wrap h2 {
  font-size: clamp(24px, 2.67vw, 40px);
  font-weight: 400;
  line-height: 1.25;
  padding-bottom: clamp(27px, 2.27vw, 34px);
  text-transform: uppercase;
}

.what-we-do-wrap .title-wrap p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.666;
  color: var(--white);
  max-width: 442px;
}

.what-we-do-wrap .title-wrap .btn-wrap {
  padding-top: clamp(38px, 4.2vw, 63px);
}

/* testimonail-wrap */
.testimonail-wrap {
  overflow: hidden;
  padding: clamp(43px, 8.67vw, 130px) 0 clamp(36px, 8.67vw, 130px);
}

.testimonail-wrap .title-wrap {
  padding-bottom: clamp(31px, 7.33vw, 110px);
}

.testimonail-wrap .title-wrap h2 {
  font-weight: 400;
  text-align: center;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.933;
}

.testimonail-wrap .column-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 51px;
}

.testimonail-wrap .column-wrap>div {
  width: 100%;
  padding: 0 15px;
}

.testimonail-wrap .content-box {
  max-width: 493px;
}

.testimonail-wrap .content-box h3 {
  font-size: clamp(18px, 2.13vw, 32px);
  line-height: 1.281;
  font-weight: 400;
  color: var(--white);
  padding-bottom: clamp(24px, 2.93vw, 44px);
}

.testimonail-wrap .content-box .name {
  font-family: var(--font-inknut-antiqua);
  font-weight: 400;
  font-size: clamp(13px, 1.07vw, 16px);
  line-height: 1;
  color: var(--primary);
}

.testimonail-wrap .content-box .name::before {
  content: "- ";
}

.testimonail-wrap .img-cover {
  padding-bottom: clamp(209px, 26.6vw, 399px);
}

.testimonail-wrap .arrow-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(11px, 1.67vw, 25px);
  padding-top: clamp(32px, 3.87vw, 58px);
}

/* let-work */
.let-work-wrap {
  overflow: hidden;
  padding: clamp(49px, 11.33vw, 170px) 0 93px;
}

.let-work-wrap .title-wrap {
  text-align: center;
}

.let-work-wrap .title-wrap h2 {
  font-weight: 700;
  font-size: clamp(40px, 6.67vw, 100px);
  line-height: 1.23;
  text-align: center;
  text-transform: uppercase;
  color: var(--gray-500);
}

.let-work-wrap .title-wrap h2 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.let-work-wrap .title-wrap .btn-wrap {
  padding-top: clamp(38px, 3.8vw, 57px);
}

.let-work-wrap .title-wrap .btn-wrap>span {
  padding-top: 10px;
}

/* ===== HOME ===== */


/* ===== CONTACT ===== */

.form-wrap .gform-theme--api,
.form-wrap .gform-theme--framework {
  --gf-color-danger: #ff5e3b;
}

body .gform_wrapper {
  font-family: var(--font-space-grotesk);
}

.contact-banner {
  padding: clamp(127px, 19.33vw, 290px) 0 clamp(34px, 6.67vw, 100px);
}

.contact-banner h1 {
  font-size: clamp(40px, 5.33vw, 80px);
  line-height: 1.0625;
  text-transform: uppercase;
}

.contact-banner h1 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.contact-banner .container,
.section.contact-wrap .container {
  max-width: 1458px;
}

.section.contact-wrap {
  overflow: hidden;
  padding: clamp(20px, 3.13vw, 47px) 0 60px;
}

.section.contact-wrap .column-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 62px;
}

.section.contact-wrap .column-wrap>div {
  padding: 0 15px;
  width: 100%;
}

.section.contact-wrap h2.title {
  font-family: var(--font-base);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.111;
  font-weight: 600;
  color: var(--white);
  padding-bottom: clamp(11px, 4.07vw, 61px);
}

.section.contact-wrap .title-wrap p {
  font-size: clamp(16px, 1.6vw, 24px);
  color: var(--white);
}

.section.contact-wrap .title-wrap .btn-wrap {
  padding-top: clamp(25px, 2.07vw, 31px);
}

.section.contact-wrap .img-box {
  margin-top: 187px;
  width: initial;
  margin-left: -112px;
  margin-right: clamp(100px, 11vw, 165px);
  padding-bottom: clamp(610px, 40.67vw, 610px);
}

.section.contact-wrap .contact-form {
  max-width: 576px;
}

/* .section.contact-wrap .contact-form form {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
} */

.section.contact-wrap .contact-form form .input-box {
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}

.section.contact-wrap .contact-form form .input-box label {
  font-family: var(--font-space-grotesk);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.41;
  color: var(--white);
}

/* .section.contact-wrap .contact-form .form-control {
  font-family: var(--font-space-grotesk);
  font-size: clamp(16px, 1.2vw, 18px);
  padding: 26px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gray-100);
  outline: none;
  box-shadow: 0;
  color: var(--white);
} */

.section.contact-wrap .contact-form textarea.form-control {
  height: clamp(222px, 15.2vw, 228px);
}

.section.contact-wrap .contact-form .gform_wrapper form {
  display: flex;
  flex-direction: column;
}

.section.contact-wrap .contact-form .gform-body .ginput_container :is(input, textarea)::-webkit-input-placeholder,
.section.contact-wrap .contact-form .form-control::-webkit-input-placeholder {
  opacity: 1;
  color: var(--gray-400);
  font-family: var(--font-space-grotesk);
}

.section.contact-wrap .contact-form .gform-body .ginput_container :is(input, textarea):-moz-placeholder,
.section.contact-wrap .contact-form .form-control:-moz-placeholder {
  opacity: 1;
  color: var(--gray-400);
  font-family: var(--font-space-grotesk);
}

.section.contact-wrap .contact-form .gform-body .ginput_container :is(input, textarea)::-moz-placeholder,
.section.contact-wrap .contact-form .form-control::-moz-placeholder {
  opacity: 1;
  color: var(--gray-400);
  font-family: var(--font-space-grotesk);
}

.section.contact-wrap .contact-form .gform-body .ginput_container :is(input, textarea):-ms-input-placeholder,
.section.contact-wrap .contact-form .form-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--gray-400);
  font-family: var(--font-space-grotesk);
}

.section.contact-wrap .contact-form .btn-wrap {
  margin-right: auto;
  padding-top: 7px;
  row-gap: 0 !important;
}

.section.contact-wrap .contact-form .btn-wrap span {
  font-size: clamp(11px, 0.87vw, 13px);
}

.section.contact-wrap .contact-form .gform-body .gform_fields {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}

.section.contact-wrap .contact-form .gform-body .gform_fields .gfield {
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}

.section.contact-wrap .contact-form .gform-body .gform_fields .gfield label {
  font-family: var(--font-space-grotesk);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.41;
  color: var(--white);
  margin: 0;
}

.section.contact-wrap .contact-form .gform-body .gform_fields .gfield label .gfield_required {
  display: none;
}

.section.contact-wrap .contact-form .gform-body .ginput_container :is(input, textarea) {
  font-family: var(--font-space-grotesk) !important;
  font-size: clamp(16px, 1.2vw, 18px);
  padding: 19px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gray-100);
  outline: none;
  color: var(--white);
  outline: none;
  box-shadow: none;
  min-height: inherit;
  height: initial;
  border-radius: 0;
}

.section.contact-wrap .contact-form .gform-body .ginput_container :is(input, textarea):focus {
  border-color: var(--primary);
}

.section.contact-wrap .contact-form .gform-body .ginput_container textarea {
  min-block-size: initial;
  height: clamp(222px, 15.2vw, 228px);
}

.section.contact-wrap .gform_required_legend,
.section.contact-wrap .gform_validation_errors {
  display: none;
}

.section.contact-wrap .gform_footer.top_label {
  display: flex;
  flex-direction: column;
  margin: 0 auto 0 0;
  padding-top: clamp(34px, 2.8vw, 42px);
}

.section.contact-wrap .gform_footer.top_label p {
  display: block;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  font-style: italic;
  text-align: center;
  color: var(--gray-300);
  padding-top: 12px;
  margin: 0 !important;
}

.faq-wrap {
  padding: clamp(57px, 8.67vw, 130px) 0 clamp(24px, 8vw, 120px);
}

.faq-wrap h2 {
  font-size: clamp(40px, 5.33vw, 80px);
  line-height: 1.0625;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  padding-bottom: clamp(61px, 5.8vw, 87px);
}

.faq-wrap .faq {
  max-width: 794px;
}

.faq-wrap .faq ul {
  display: flex;
  flex-direction: column;
}

.faq-wrap .faq ul li {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(27px, 2.33vw, 35px) 0 clamp(30px, 2vw, 30px);
  border-top: 1px solid #999999;
}

.faq-wrap .faq ul li h3 {
  font-family: var(--font-base);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--white);
}

.faq-wrap .faq ul li .content-box {
  font-size: 16px;
  line-height: 1.562;
  padding-top: 14px;
  color: #A1A1A1;
}

/* ===== CONTACT ===== */

/* ===== 404 THANK ===== */
.thank-404 {
  padding: clamp(150px, 12vw, 180px) 0 clamp(100px, 12vw, 180px);
  display: flex;
  align-items: center;
}

.thank-404 .contact-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.thank-404 .contact-box h1 {
  font-family: var(--font-inknut-antiqua);
  font-size: clamp(40px, 5.33vw, 80px);
  line-height: 1.0625;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  padding-bottom: clamp(27px, 2.27vw, 34px);
}

.thank-404 .contact-box p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.666;
  color: var(--white);
  text-align: center;
}

.thank-404 .contact-box p+p {
  margin: 0;
}

.thank-404 .contact-box .btn-wrap {
  padding-top: clamp(27px, 2.27vw, 34px);
}

/* ===== 404 THANK ===== */

/* ===== POLICY ===== */
.privacy-wrap {
  color: var(--white);
  padding: clamp(100px, 12vw, 180px) 0 clamp(50px, 12vw, 180px);
}

.privacy-wrap .title-wrap {
  text-align: center;
  padding-bottom: clamp(40px, 6.67vw, 100px);
}

.privacy-wrap .title-wrap h2 {
  font-size: clamp(24px, 2.67vw, 40px);
  line-height: 1.0625;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
}

.custom-content-box a {
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
  text-decoration: underline;
}

.custom-content-box a:hover {
  color: var(--primary);
}

.custom-content-boxp+ :is(ol, ul) {
  padding-top: 30px;
}

.custom-content-box :is(h2, h3, h4, h5, h6) {
  padding-bottom: 10px;
  padding-top: clamp(25px, 2.67vw, 40px);
}

.custom-content-box :is(h2, h3, h4, h5, h6):last-child {
  padding-bottom: 0;
}

.custom-content-box :is(h2, h3, h4, h5, h6):first-child {
  padding-top: 0;
}

.custom-content-box h2 {
  font-size: clamp(18px, 1.87vw, 28px);
  line-height: 1.25;
}

.custom-content-box h3 {
  font-size: clamp(16px, 1.87vw, 26px);
  line-height: 1.25;
}

.custom-content-box h4 {
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.272;
}

.custom-content-box h5 {
  font-size: clamp(16px, 1.47vw, 22px);
  line-height: 1.25;
}


/* ===== POLICY ===== */