/* Inter wordt geladen via <link> in index.html met display=optional (geen dubbele load) */
@font-face {
  font-family: "Rivuga";
  src: url("../fonts/RivugaRegular.woff2") format("woff2"), url("../fonts/RivugaRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: optional;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.ff-rivuga {
  font-family: "Rivuga";
}

.ff-inter {
  font-family: "Inter", sans-serif;
}

.pretitle {
  font-size: 20px;
}
@media (min-width: 768px) {
  .pretitle {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .pretitle {
    font-size: 28px;
  }
}
@media (min-width: 1600px) {
  .pretitle {
    font-size: 32px;
  }
}
.pretitle-tag {
  color: #352323;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 8px 12px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
}
@media (min-width: 768px) {
  .pretitle-tag {
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 6px;
  }
}
@media (min-width: 1200px) {
  .pretitle-tag {
    font-size: 17px;
    padding: 9px 24px;
    border-radius: 8px;
  }
}

.fs-1 {
  font-size: 32px !important;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .fs-1 {
    font-size: 40px !important;
  }
}
@media (min-width: 992px) {
  .fs-1 {
    font-size: 50px !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 60px !important;
  }
}
@media (min-width: 1400px) {
  .fs-1 {
    font-size: 70px !important;
  }
}
@media (min-width: 1600px) {
  .fs-1 {
    font-size: 80px !important;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  color: #352323;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-color: #fff;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: none;
}

body::-webkit-scrollbar {
  display: none;
}

html,
body,
.main {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox, Safari 18.2+, Chromium 121+ */
}

section {
  position: relative;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a,
button,
.btn {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background: unset;
}
a:hover, a:focus,
button:hover,
button:focus,
.btn:hover,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

input,
select,
.form-select,
textarea {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
input:focus, input:focus-visible, input:active,
select:focus,
select:focus-visible,
select:active,
.form-select:focus,
.form-select:focus-visible,
.form-select:active,
textarea:focus,
textarea:focus-visible,
textarea:active {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  /* IE en Edge */
  scrollbar-width: none;
  /* Firefox */
}

@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  body {
    font-size: 20px;
  }
}

.main__content {
  max-width: 1488px;
  width: 100%;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .main__content {
    border-radius: 12px;
  }
}
@media (min-width: 1400px) {
  .main__content {
    border-radius: 16px;
  }
}

.container {
  width: 100%;
  margin: auto;
  padding: 0 16px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0 12px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1344px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1488px;
  }
}

.transition-common {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.text-primary {
  color: #f76944 !important;
}

.text-dark {
  color: #352323 !important;
}

.bg-body {
  background-color: #fff4ef !important;
}

.bg-body-deep {
  background-color: #ffe8dd !important;
}

.section {
  position: relative;
}
.section__block {
  max-width: 1312px;
  width: 100%;
  margin: 0 auto;
}
.section__block--radius {
  border-radius: 8px;
}
@media (min-width: 992px) {
  .section__block--radius {
    border-radius: 12px;
  }
}
@media (min-width: 1600px) {
  .section__block--radius {
    border-radius: 16px;
  }
}

.flex-1 {
  flex: 1;
}

.logo--header, .logo--footer {
  height: 22px;
  width: auto;
}
@media (min-width: 768px) {
  .logo--header, .logo--footer {
    height: 28px;
  }
}
@media (min-width: 992px) {
  .logo--header, .logo--footer {
    height: 34px;
  }
}
@media (min-width: 1200px) {
  .logo--header, .logo--footer {
    height: 40px;
  }
}
@media (min-width: 1600px) {
  .logo--header, .logo--footer {
    height: 48px;
  }
}
@media (min-width: 1600px) {
  .logo--header, .logo--footer {
    height: 54px;
  }
}
.logo--header .logo__link, .logo--footer .logo__link {
  height: 100%;
  gap: 12px;
}
@media (min-width: 992px) {
  .logo--header .logo__link, .logo--footer .logo__link {
    gap: 16px;
  }
}
@media (min-width: 1600px) {
  .logo--header .logo__link, .logo--footer .logo__link {
    gap: 20px;
  }
}
.logo--header .logo__img, .logo--footer .logo__img {
  max-height: 100%;
}
.logo--header .logo__img__text, .logo--footer .logo__img__text {
  max-height: 100%;
}

.btn {
  color: #fff;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  /* Button Hover for Aimation */
}
@media (min-width: 992px) {
  .btn {
    font-size: 16px;
    padding: 14px 26px;
    gap: 12px;
    border-radius: 8px;
  }
}
@media (min-width: 1400px) {
  .btn {
    padding: 16px 32px;
    gap: 16px;
  }
}
.btn--primary {
  background-color: #f6562d;
}
.btn--primary:hover {
  color: #fff;
  background-color: #f76944;
}
.btn--primary.btn--loading {
  color: #f6562d;
}
.btn--primary .btn-spinner-icon {
  border-color: rgba(246, 86, 45, 0.3);
  border-top-color: #f6562d;
  vertical-align: middle;
}
.btn-spinner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--trans {
  padding: 0;
  margin: 0;
  color: #352323;
  background-color: transparent;
}
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.btn__icon--arrow {
  width: 24px;
  height: 24px;
}
@media (min-width: 992px) {
  .btn__icon--arrow {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 1400px) {
  .btn__icon--arrow {
    width: 32px;
    height: 32px;
  }
}
.btn__icon--arrow svg {
  width: 15px;
}
@media (min-width: 992px) {
  .btn__icon--arrow svg {
    width: 18px;
  }
}
@media (min-width: 1400px) {
  .btn__icon--arrow svg {
    width: 21px;
  }
}
.btn:hover .btn__icon {
  /* Arrow Icon */
}
.btn:hover .btn__icon--arrow svg, .btn:hover .btn__icon--arrow img {
  animation: arrowRightTrough 0.3s ease-in-out forwards;
}

/* Button Animation */
@keyframes arrowRightTrough {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  33% {
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
  }
  66% {
    transform: translateX(-100%);
  }
}
.form__label {
  color: #352323;
  font-size: 16px;
  font-family: "Rivuga";
}
@media (min-width: 992px) {
  .form__label {
    font-size: 17px;
  }
}
.form__label .required-icon {
  color: #f6562d;
}
.form__input, .form__textarea {
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  color: #352323;
  border: 1px solid #352323;
  border-radius: 8px;
  background-color: transparent !important;
  background-image: none !important;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .form__input, .form__textarea {
    font-size: 16px;
    height: 56px;
  }
}
.form__input:focus, .form__input:focus-visible, .form__input:active, .form__input:not(:placeholder-shown), .form__textarea:focus, .form__textarea:focus-visible, .form__textarea:active, .form__textarea:not(:placeholder-shown) {
  border: 1px solid #f76944;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: var(--dark-color);
  font-size: 15px;
  opacity: 0.5;
}
@media (min-width: 992px) {
  .form__input::placeholder, .form__textarea::placeholder {
    font-size: 16px;
  }
}
.form__checkbox .icon-box {
  width: 20px;
  height: 20px;
  border: 1px solid #f76944;
  border-radius: 2px;
  font-size: 15px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form__checkbox .icon-box svg, .form__checkbox .icon-box img, .form__checkbox .icon-box i {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form__checkbox .text {
  font-size: 16px;
}
.form__checkbox .text a {
  color: #f76944;
}
.form__input:checked + .form__checkbox .icon-box {
  background-color: #f76944;
}
.form__input:checked + .form__checkbox .icon-box svg,
.form__input:checked + .form__checkbox .icon-box img,
.form__input:checked + .form__checkbox .icon-box i {
  opacity: 1;
}
.form__input.is-invalid {
  border-color: #f6562d !important;
}
.form__input.is-invalid:focus, .form__input.is-invalid:focus-visible {
  border-color: #f6562d !important;
}
.form__item.is-invalid .form__checkbox .icon-box {
  border-color: #f6562d;
}
.form__error {
  font-size: 14px;
  color: #f6562d;
  margin-top: 4px;
  display: block;
}
.form__error.d-none {
  display: none;
}
.form__validation-error {
  font-size: 15px;
  color: #f6562d;
  padding: 12px 16px;
  margin-bottom: 16px;
  background-color: rgba(246, 86, 45, 0.08);
  border-radius: 8px;
  border-left: 4px solid #f6562d;
}
.form__validation-error.d-none {
  display: none;
}
.form__validation-success {
  font-size: 15px;
  color: #198754;
  padding: 12px 16px;
  margin-bottom: 16px;
  background-color: rgba(25, 135, 84, 0.08);
  border-radius: 8px;
  border-left: 4px solid #198754;
}
.form__validation-success.d-none {
  display: none;
}

.modal-dialog {
  max-width: 700px;
}
@media (min-width: 768px) {
  .modal-header {
    padding: 20px 28px;
  }
}
.modal-title {
  color: #352323;
  font-size: 20px;
  font-weight: 400;
  font-family: "Rivuga";
  line-height: 1;
}
@media (min-width: 768px) {
  .modal-title {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .modal-title {
    font-size: 28px;
  }
}
.modal-close {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal-close:hover {
  color: #f6562d;
}
@media (min-width: 768px) {
  .modal-body {
    padding: 20px 28px 32px;
  }
}
.modal-para {
  font-size: 15px;
  color: #352323;
  opacity: 0.8;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .modal-para {
    font-size: 16px;
  }
}

.parallax-up,
.parallax-down {
  will-change: transform;
}

.header--area {
  padding: 16px 0;
}
@media (min-width: 768px) {
  .header--area {
    padding: 20px 0;
  }
}
@media (min-width: 992px) {
  .header--area {
    padding: 24px 0;
  }
}
@media (min-width: 1200px) {
  .header--area {
    padding: 32px 0;
  }
}
@media (min-width: 1400px) {
  .header--area {
    padding: 40px 0;
  }
}
@media (min-width: 1600px) {
  .header--area {
    padding: 48px 0;
  }
}
.header__wrapper {
  max-width: 1058px;
}
.header__btn {
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  background-color: #f6562d;
}
.header__btn:hover {
  color: #fff;
  background-color: #f76944;
}

.footer--area {
  padding: 16px 0;
}
@media (min-width: 768px) {
  .footer--area {
    padding: 24px 0;
  }
}
@media (min-width: 992px) {
  .footer--area {
    padding: 40px 0;
  }
}
@media (min-width: 1200px) {
  .footer--area {
    padding: 56px 0;
  }
}
@media (min-width: 1400px) {
  .footer--area {
    padding: 72px 0;
  }
}
@media (min-width: 1600px) {
  .footer--area {
    padding: 96px 0;
  }
}
.footer__wrapper {
  max-width: 1058px;
}
.footer__btn {
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  background-color: #f6562d;
}
.footer__btn:hover {
  color: #fff;
  background-color: #f76944;
}

.hero--section {
  padding: 48px 0;
  border-radius: 8px 8px 0 0;
}
@media (min-width: 768px) {
  .hero--section {
    padding: 64px 0;
  }
}
@media (min-width: 992px) {
  .hero--section {
    padding: 72px 0;
    border-radius: 12px 12px 0 0;
  }
}
@media (min-width: 1400px) {
  .hero--section {
    border-radius: 16px 16px 0 0;
  }
}
.hero__wrapper {
  max-width: 1048px;
}
.hero__content {
  max-width: 708px;
}
.hero .main__title {
  font-size: 27px;
}
@media (min-width: 768px) {
  .hero .main__title {
    font-size: 44px;
  }
}
@media (min-width: 992px) {
  .hero .main__title {
    font-size: 52px;
  }
}
@media (min-width: 1400px) {
  .hero .main__title {
    font-size: 60px;
  }
}
.hero__thumb {
  width: clamp(240px, 50%, 768px);
  position: absolute;
  right: 0;
  bottom: 15%;
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: 0.25;
}
@media (min-width: 992px) {
  .hero__thumb {
    bottom: -32px;
    opacity: 1;
  }
}

.section-block .section__head {
  margin-bottom: 48px;
}
@media (min-width: 1200px) {
  .section-block .section__head {
    margin-bottom: 64px;
  }
}
@media (min-width: 1600px) {
  .section-block .section__head {
    margin-bottom: 84px;
  }
}
.section-block .section__para {
  max-width: 390px;
}
.section-block__wrapper {
  padding: 28px 20px;
}
@media (min-width: 576px) {
  .section-block__wrapper {
    padding: 32px;
  }
}
@media (min-width: 768px) {
  .section-block__wrapper {
    padding: 56px;
  }
}
@media (min-width: 1200px) {
  .section-block__wrapper {
    padding: 80px;
  }
}
@media (min-width: 1400px) {
  .section-block__wrapper {
    padding: 80px 104px;
  }
}
@media (min-width: 1600px) {
  .section-block__wrapper {
    padding: 80px 130px;
  }
}
.section-block__wrapper__top {
  max-width: 712px;
}
.section-block__info {
  max-width: 992px;
}
.section-block__info .icon {
  width: 32px;
  height: 32px;
}
@media (min-width: 1200px) {
  .section-block__info .icon {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1600px) {
  .section-block__info .icon {
    width: 48px;
    height: 48px;
  }
}
.section-block__info .text {
  line-height: 1.2;
}
.section-block-img {
  position: absolute;
}
.section-block-img--building {
  right: 0;
  top: -28px;
  z-index: -1;
  width: clamp(200px, 60%, 928px);
  opacity: 0.25;
}
@media (min-width: 768px) {
  .section-block-img--building {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .section-block-img--building {
    top: -40px;
    right: -28px;
  }
}
@media (min-width: 1400px) {
  .section-block-img--building {
    top: -13%;
    right: -11%;
  }
}
.section-block-img--text {
  right: 0;
  top: 0;
  z-index: -1;
  width: clamp(200px, 60%, 928px);
}
@media (min-width: 768px) {
  .section-block-img--text {
    right: -16px;
    top: -16px;
  }
}
@media (min-width: 992px) {
  .section-block-img--text {
    top: 0;
  }
}
@media (min-width: 1600px) {
  .section-block-img--text {
    top: 8px;
  }
}
.section-block--delivered {
  padding: 24px 0 48px;
}
@media (min-width: 768px) {
  .section-block--delivered {
    padding: 32px 0 64px;
  }
}
@media (min-width: 1200px) {
  .section-block--delivered {
    padding: 64px 0 80px;
  }
}
@media (min-width: 1600px) {
  .section-block--delivered {
    padding: 114px 0;
  }
}
.section-block--development {
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .section-block--development {
    padding-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .section-block--development {
    padding-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .section-block--development {
    padding-bottom: 96px;
  }
}
.section-block--development .section-block-img--building {
  width: clamp(200px, 57%, 744px);
}
@media (min-width: 1400px) {
  .section-block--development .section-block-img--building {
    top: -7%;
    right: -12%;
  }
}
.section-block--developmentTwo {
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .section-block--developmentTwo {
    padding-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .section-block--developmentTwo {
    padding-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .section-block--developmentTwo {
    padding-bottom: 96px;
  }
}
.section-block--developmentTwo .section-block-img--building {
  width: clamp(200px, 63%, 826px);
}
@media (min-width: 1400px) {
  .section-block--developmentTwo .section-block-img--building {
    right: -14%;
  }
}

.service--section {
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .service--section {
    padding-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .service--section {
    padding-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .service--section {
    padding-bottom: 96px;
  }
}
.service .section__head {
  padding: 0 0 24px;
}
@media (min-width: 768px) {
  .service .section__head {
    padding: 0 0 32px;
  }
}
@media (min-width: 1200px) {
  .service .section__head {
    padding: 0 80px 32px;
  }
}
@media (min-width: 1600px) {
  .service .section__head {
    padding: 0 128px 32px;
  }
}
.service__item {
  padding: 24px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service__item:hover {
  -webkit-box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) {
  .service__item {
    padding: 32px;
  }
}
@media (min-width: 1200px) {
  .service__item {
    padding: 40px;
  }
}
@media (min-width: 1600px) {
  .service__item {
    padding: 40px 56px;
  }
}
@media (min-width: 768px) {
  .service__head {
    width: 30%;
  }
}
@media (min-width: 1400px) {
  .service__head {
    width: 38%;
  }
}
.service__head .icon {
  width: 32px;
  height: 32px;
}
@media (min-width: 1200px) {
  .service__head .icon {
    width: 36px;
    height: 36px;
  }
}
@media (min-width: 1600px) {
  .service__head .icon {
    width: 40px;
    height: 40px;
  }
}
.service__head .text {
  font-size: 20px;
}
@media (min-width: 768px) {
  .service__head .text {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .service__head .text {
    font-size: 28px;
  }
}
@media (min-width: 1600px) {
  .service__head .text {
    font-size: 32px;
  }
}
.service__desc {
  padding: 16px 0 0;
  border-top: 1px solid #f6562d;
  max-width: 692px;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .service__desc {
    width: 70%;
    padding: 10px 24px;
    border: none;
    border-left: 1px solid #f6562d;
  }
}
@media (min-width: 1200px) {
  .service__desc {
    font-size: 18px;
    line-height: 1.78;
    padding: 10px 40px;
  }
}
@media (min-width: 1400px) {
  .service__desc {
    width: 62%;
  }
}

.contact--section {
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .contact--section {
    padding-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .contact--section {
    padding-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .contact--section {
    padding-bottom: 96px;
  }
}
.contact .section__head {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .contact .section__head {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .contact .section__head {
    margin-bottom: 48px;
  }
}
@media (min-width: 1400px) {
  .contact .section__head {
    margin-bottom: 64px;
  }
}
@media (min-width: 992px) {
  .contact__content {
    margin-left: 32px;
  }
}
@media (min-width: 1400px) {
  .contact__content {
    margin-left: 64px;
  }
}
@media (min-width: 1600px) {
  .contact__content {
    margin-left: 92px;
  }
}
@media (min-width: 768px) {
  .contact__thumb {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .contact__thumb {
    width: 100%;
  }
}
.contact__thumb .text-obj {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
}
@media (min-width: 1400px) {
  .contact__thumb .text-obj {
    min-width: 113%;
    width: 100%;
  }
}
.contact__bottom {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .contact__bottom {
    margin-top: 42px;
  }
}
@media (min-width: 1200px) {
  .contact__bottom {
    margin-top: 52px;
  }
}
.contact__info {
  max-width: 992px;
}
.contact__info .icon {
  width: 32px;
  height: 32px;
}
@media (min-width: 1200px) {
  .contact__info .icon {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1600px) {
  .contact__info .icon {
    width: 48px;
    height: 48px;
  }
}
.contact__info .text {
  line-height: 1.2;
}
.contact__link {
  color: #352323;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact__link:hover {
  color: #f6562d;
}

/*# sourceMappingURL=style.css.map */
