@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/GothamPro-Light.woff") format("woff"), url("../fonts/GothamPro-Light.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/GothamPro-LightItalic.woff") format("woff"), url("../fonts/GothamPro-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/GothamPro.woff") format("woff"), url("../fonts/GothamPro.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/GothamPro-Italic.woff") format("woff"), url("../fonts/GothamPro-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/GothamPro-Medium.woff") format("woff"), url("../fonts/GothamPro-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/GothamPro-MediumItalic.woff") format("woff"), url("../fonts/GothamPro-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/GothamPro-Bold.woff") format("woff"), url("../fonts/GothamPro-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/GothamPro-BoldItalic.woff") format("woff"), url("../fonts/GothamPro-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/GothamPro-Black.woff") format("woff"), url("../fonts/GothamPro-Black.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: italic;
  font-weight: 900;
  src: url("../fonts/GothamPro-BlackItalic.woff") format("woff"), url("../fonts/GothamPro-BlackItalic.woff2") format("woff2");
}
/* == BASE RULES AND VARIABLES== */
* {
  scroll-behavior: smooth;
}

*:focus {
  outline: none;
}

*:invalid {
  box-shadow: none;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 360px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font: normal normal 16px/1.5 GothamPro, sans-serif, sans-serif;
  color: #000;
}

/* == text elements == */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1em;
  line-height: 1;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3, h4 {
  font-size: 20px;
  font-weight: 500;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0 0 1em;
  color: rgba(0, 0, 0, 0.5);
}

p {
  margin: 0 0 0.75em;
  color: rgba(0, 0, 0, 0.5);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  transition: all 0.25s ease-out;
  text-decoration: none;
  background-color: transparent;
}

/* == media elements == */
img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

img,
iframe,
video {
  max-width: 100%;
  user-select: none;
}

a img {
  border: none;
}

i.icon-pin {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: -4px;
  background: url("../img/pin.svg") no-repeat center/cover;
  margin: 0 4px 0 0;
  line-height: 1;
}

i.icon-pin-black {
  background: url("../img/pin-black.svg") no-repeat center/cover;
}

.gray-text {
  color: gray;
}

/* == form elements == */
input, textarea, button, select {
  font: inherit;
  color: inherit;
}

input, textarea {
  outline: none;
}

input {
  width: 100%;
}

input[type=search] {
  appearance: textfield;
}
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[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

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

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

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

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

input::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.5);
}

input:focus::-webkit-input-placeholder {
  color: #000;
}

.input-gradient::-webkit-input-placeholder {
  color: #000;
}

.input-gradient:focus::-webkit-input-placeholder {
  color: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[type=text],
[type=email],
[type=tel],
[type=url],
[type=number],
[type=password],
[type=search] {
  padding: 0 16px;
  appearance: none;
  width: 100%;
  height: 64px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: border-color 0.25s ease-out;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}

[type=text]:focus,
[type=email]:focus,
[type=tel]:focus,
[type=url]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus {
  border-color: #000;
  color: #000;
}

[type=file] {
  display: none;
  opacity: 0;
  position: absolute;
}

.form-item {
  margin: 0 0 16px;
}

.form-item:last-child {
  margin-top: 24px;
}

.form-note {
  font-size: 14px;
  text-align: center;
}

.form-note a {
  color: #000;
}

.form-note a:hover {
  text-decoration: underline;
}

textarea {
  resize: none;
  overflow: auto;
  height: 170px;
  width: 100%;
  padding: 16px;
  appearance: none;
  transition: border-color 0.25s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 18px;
}

textarea:focus {
  border-color: #000;
  color: #000;
}

textarea:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

textarea:focus:-moz-placeholder {
  color: #000;
}

textarea:focus::-moz-placeholder {
  color: #000;
}

textarea:focus:-ms-input-placeholder {
  color: #000;
}

textarea:focus::placeholder {
  color: #000;
}

textarea:focus::-webkit-input-placeholder {
  color: #000;
}

select::-ms-expand {
  display: none;
}

label {
  user-select: none;
}

button {
  cursor: pointer;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

.btn {
  display: inline-block;
  vertical-align: middle;
  appearance: none;
  cursor: pointer;
  max-width: 100%;
  user-select: none;
  line-height: 62px;
  font-size: 18px;
  font-weight: 500;
  padding: 0 30px;
  min-width: 206px;
  border: 1px solid transparent;
}

.btn-bordered-white {
  border-color: #fff;
}

.btn-bordered-white:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.btn-black {
  background-color: #000;
  color: #fff;
}

.btn-black:hover {
  opacity: 0.8;
}

.btn-block {
  display: block;
  width: 100%;
}

/* == table elements == */
table {
  width: 100%;
}

/* ~~ LAYOUT RULES ~~ */
/*~ header ~*/
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 49px 0 15px;
  color: #fff;
  z-index: 1;
}

.header-static {
  position: static;
  color: #000;
}

.header > .container {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.header-logo {
  margin: 0 15px 0 0;
  flex: 0 0 auto;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.header-contacts {
  font-size: 20px;
  margin: 0 0 0 auto;
}

/*~ skeleton ~*/
.box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
}

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

.texted-block {
  padding: 60px 0;
}

.texted-block h1 {
  margin: 0 0 20px;
  font-size: 40px;
}

.texted-block h2 {
  font-size: 34px;
  margin: 25px 0 20px;
}

.texted-block h4 {
  font-size: 18px;
}

.texted-block hr {
  border-color: rgba(0, 0, 0, 0.5);
  border-top: 0;
  margin: 30px 0;
}

.texted-block strong {
  color: #000;
}

.texted-block a {
  color: #000;
}

.section-gray {
  background-color: #F9FAFB;
}

.section-head {
  position: relative;
  margin: 0 0 60px;
}

.section-head h3 {
  font-size: 40px;
  font-weight: 700;
}

.section-head::after {
  display: block;
  content: "";
  width: 80px;
  height: 6px;
  background-color: #000;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.section-head-centered {
  text-align: center;
}

.section-head-centered::after {
  left: 50%;
  transform: translateX(-50%);
}

.intro {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--h-height) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}

.intro > .container {
  position: relative;
  z-index: 1;
}

.intro::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.intro-content {
  transform: scale(1.2);
  transition-duration: 2s;
  transition-delay: 3s;
  transition-timing-function: ease;
  transition-property: opacity, transform;
  opacity: 0;
}

.intro-content.intro-content-animation {
  opacity: 1;
  transform: scale(1);
}

.intro-text {
  position: relative;
  margin: 0 0 60px;
}

.intro-text::after {
  content: "";
  width: 80px;
  height: 6px;
  background-color: #fff;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.intro-caption {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.animated-svg {
  font-weight: 700;
  display: block;
  width: 100%;
  height: 176px;
  font-size: 240px;
  opacity: 0.5;
}

.animated-text {
  text-anchor: middle;
  text-transform: uppercase;
  fill: none;
  stroke: currentColor;
  stroke-width: 1px;
  user-select: none;
  --str-length: 4.4em;
  stroke-dasharray: 0 var(--str-length);
}

.animated-text-animation {
  animation: draw 3s linear;
  animation-fill-mode: forwards;
}

@keyframes draw {
  0% {
    stroke-dasharray: 0 var(--str-length, 4.4em);
  }
  100% {
    stroke-dasharray: var(--str-length) var(--str-length, 4.4em);
  }
}
.why {
  padding: 80px 0;
}

.why-box {
  justify-content: center;
}

.why-card {
  width: 376px;
  padding: 30px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-card-head {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
}

.why-card-image {
  width: 60px;
  height: 60px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  margin: 0 16px 0 0;
  flex: 0 0 auto;
}

.why-card-text ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.feedback {
  padding: 100px 0;
}

.feedback-section-head {
  margin: 0 0 50px;
}

.feedback > .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.feedback-content {
  max-width: 572px;
  width: 100%;
}

.feedback-form {
  max-width: 572px;
  width: 100%;
}

/*~ footer ~*/
.footer {
  line-height: 1;
  background-color: #000;
  padding: 40px 0;
  color: #fff;
  font-weight: 500;
  margin-top: auto;
}

.footer > .container {
  display: flex;
  align-items: center;
}

.footer-logo {
  margin: 0 40px 0 0;
}

.footer-links {
  margin: 0 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-link:hover {
  text-decoration: underline;
}

.modal {
  display: none;
  max-width: 580px;
  width: 100%;
  text-align: center;
}

.modal-text h2 {
  font-size: 30px;
  margin: 0 0 10px;
}

.modal-text h2:last-child {
  margin-bottom: 0;
}

/* ~~ MEDIA QUERIES ALWAYS AT THE END ~~ */	
@media (max-width: 1479px) {
  h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 42px;
  }
  .header-contacts {
    font-size: 18px;
  }
  .animated-svg {
    font-size: 175px;
    height: 130px;
  }
}
@media (max-width: 1279px) {
  h1 {
    font-size: 46px;
  }
  [type=text], [type=email], [type=tel], [type=url], [type=number], [type=password], [type=search] {
    height: 60px;
    font-size: 17px;
  }
  textarea {
    height: 120px;
    font-size: 17px;
  }
  .btn {
    line-height: 60px;
  }
  .container {
    max-width: 960px;
  }
  .section-head h3 {
    font-size: 38px;
  }
  .header-contacts {
    gap: 20px;
    font-size: 16px;
  }
  .animated-svg {
    font-size: 130px;
    height: 95px;
  }
  .intro-content {
    max-width: 900px;
    width: 100;
  }
  .why-card {
    width: 455px;
  }
  .footer-logo {
    margin: 0 20px 0 0;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 36px;
  }
  .btn {
    line-height: 50px;
  }
  .container {
    max-width: 720px;
  }
  .header {
    padding: 20px 0;
  }
  .header > .container {
    align-items: flex-start;
  }
  .header-contacts {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    line-height: 1;
    text-align: right;
  }
  .header-contacts .contact:first-child {
    order: 2;
  }
  .animated-svg {
    font-size: 105px;
    height: 78px;
  }
  .why {
    padding: 60px 0;
  }
  .why-card {
    width: 335px;
  }
  .footer > .container {
    flex-wrap: wrap;
  }
  .footer-copyright {
    order: 2;
    width: 100%;
    margin: 30px 0 0;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  [type=text], [type=email], [type=tel], [type=url], [type=number], [type=password], [type=search] {
    height: 52px;
    font-size: 16px;
  }
  textarea {
    font-size: 16px;
  }
  .section-head {
    margin: 0 0 50px;
  }
  .section-head h3 {
    font-size: 32px;
  }
  .section-head::after {
    width: 60px;
    height: 4px;
  }
  .header-contacts {
    font-size: 14px;
  }
  .animated-svg {
    font-size: 83px;
    height: 62px;
  }
  .why-card {
    width: 100%;
  }
  .feedback {
    padding: 60px 0;
  }
  .feedback > .container {
    display: block;
  }
  .feedback-content {
    margin: 0 0 40px;
  }
  .footer-links {
    gap: 20px;
  }
  .footer-copyright {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 30px;
  }
  i.icon-pin {
    width: 15px;
    height: 15px;
    margin: 0;
  }
  .section-head h3 {
    font-size: 30px;
  }
  .btn {
    font-size: 16px;
  }
  .container {
    max-width: 100%;
  }
  .logo {
    font-size: 24px;
  }
  .footer-logo {
    margin: 0 0 30px;
  }
  .header-contacts {
    font-size: 11px;
  }
  .animated-svg {
    font-size: 47px;
    height: 34px;
  }
  .why-card {
    padding: 20px;
  }
  .footer-links {
    width: 100%;
  }
  .intro {
    min-height: calc(100vh - 150px);
  }
  .intro-content {
    transform: none;
  }
  .texted-block h1 {
    font-size: 35px;
  }
  .texted-block h2 {
    font-size: 30px;
  }
  .modal {
    padding: 40px 30px;
  }
}