@import url("https://fonts.googleapis.com/css2?family=Alata&family=Cormorant+Garamond:wght@300&family=Nunito:wght@300&family=Orbitron:wght@700&family=Raleway:wght@200&family=Roboto&family=Source+Sans+Pro:wght@200&display=swap");
@font-face {
  font-family: "Sofia pro";
  src: url("./assets/fonts/sofiapro-light.otf") format("opentype");
}
@font-face {
  font-family: "Sofia pro bold";
  src: url("./assets/fonts/Sofia Pro Bold.ttf") format("truetype");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

#header {
  position: absolute;
  display: flex;
  justify-content: center;
  z-index: 3;
  height: 130px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.2s linear;
}
@media (max-width: 768px) {
  #header {
    height: 78px;
  }
}

#header.black-header {
  position: fixed;
  background-color: rgb(0, 0, 0);
}

#header-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 1110px;
}
@media (max-width: 1200px) {
  #header-content {
    width: 720px;
  }
}
@media (max-width: 768px) {
  #header-content {
    width: 290px;
  }
}

#logo {
  height: 55px;
  width: 145px;
  align-self: center;
}
@media (max-width: 1200px) {
  #logo {
    height: 46px;
    width: 122px;
  }
}
@media (max-width: 768px) {
  #logo {
    height: 38px;
    width: 100px;
  }
}

#logo.white-in-menu {
  filter: invert(100%) sepia(2%) saturate(14%) hue-rotate(314deg) brightness(104%) contrast(100%);
  -webkit-filter: invert(100%) sepia(2%) saturate(14%) hue-rotate(314deg) brightness(104%) contrast(100%);
}

.menu {
  display: flex;
  justify-content: space-between;
  width: 319px;
  height: 100%;
  transition: left 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media (max-width: 1200px) {
  .menu {
    width: 280px;
  }
}
@media (max-width: 768px) {
  .menu {
    justify-content: flex-start;
    opacity: 0;
    padding-top: 38px;
    gap: 23px;
    flex-direction: column;
    position: absolute;
    left: 200vw;
    margin-top: 78px;
    background-color: white;
    height: calc(100vh - 78px);
    width: 100vw;
    align-items: center;
    padding-bottom: 166px;
  }
}

.menu.open {
  opacity: 1;
  left: calc((-100vw + 290px) / 2);
}

.nav-btn {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-btn > a {
  color: #000000;
  font-family: "Sofia pro", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  line-height: 40px;
}
.nav-btn > a:hover {
  cursor: pointer;
  color: rgb(56, 56, 56);
  border-bottom: 1px solid #F9D023;
  border-top: 1px solid rgba(0, 0, 0, 0);
}
@media (max-width: 768px) {
  .nav-btn {
    height: 51px;
  }
  .nav-btn > a {
    font-family: "Sofia pro", Arial, sans-serif;
    font-weight: 600;
    font-size: 40px;
  }
  .nav-btn > a:hover {
    line-height: 38px;
  }
}

#container {
  width: 100%;
}

#face {
  position: relative;
  height: 1080px;
  width: 100%;
}
@media (max-width: 1200px) {
  #face {
    height: 750px;
  }
}
@media (max-width: 768px) {
  #face {
    height: 520px;
  }
}

#back-town-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./assets/images/town-main.png") no-repeat center;
  background-size: cover;
}

#face-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
@media (max-width: 1200px) {
  #face-content-wrapper {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  #face-content-wrapper {
    justify-content: flex-end;
  }
}

#face-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1110px;
  height: 668px;
}
#face-content > h1, #face-content > p {
  color: white;
  text-align: center;
}
#face-content > h1 {
  font-family: "Alata", sans-serif;
  font-weight: 400;
  font-size: 115px;
  margin-bottom: 23px;
  margin-top: 60px;
}
#face-content > a {
  position: relative;
  text-decoration: none;
  color: #000000;
  margin-top: 79px;
  z-index: 4;
}
#face-content > a > button {
  width: 196px;
  height: 48px;
  font-family: "Sofia pro", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-size: 14px;
  text-align: center;
  background-color: #F9D023;
  border: none;
}
#face-content > a > button:hover {
  cursor: pointer;
}
@media (max-width: 1200px) {
  #face-content {
    width: 720px;
    height: 330px;
    margin-bottom: 71px;
  }
  #face-content > h1 {
    font-weight: 400;
    font-size: 75px;
  }
  #face-content > a {
    margin-top: 58px;
  }
}
@media (max-width: 768px) {
  #face-content {
    width: 290px;
    height: 330px;
    margin-bottom: 71px;
  }
  #face-content > h1 {
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    margin-top: 0;
    margin-bottom: 17px;
  }
  #face-content > a {
    margin-top: 45px;
  }
}

#contact-btn.fixed {
  margin-top: 78px;
  top: 324px;
  position: fixed;
}

#company-description {
  font-family: "Sofia pro", Arial, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 35px;
}
@media (max-width: 1200px) {
  #company-description {
    font-size: 20px;
    line-height: 27px;
  }
}
@media (max-width: 768px) {
  #company-description {
    width: 99%;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
  }
}

#scroll-more {
  color: white;
  text-align: center;
  font-family: "Sofia pro", Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  #scroll-more {
    display: none;
  }
}

#about {
  height: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  #about {
    height: 1000px;
  }
}
@media (max-width: 768px) {
  #about {
    height: 818px;
  }
}

#about-container {
  width: 1110px;
  display: flex;
  flex-direction: column;
  margin-bottom: 41px;
}
#about-container > h2 {
  align-self: flex-start;
  font-family: "Alata", sans-serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 100px;
  margin-bottom: 51px;
}
@media (max-width: 1200px) {
  #about-container {
    width: 720px;
  }
  #about-container > h2 {
    font-size: 65px;
  }
}
@media (max-width: 768px) {
  #about-container {
    width: 290px;
    margin-bottom: 50px;
  }
  #about-container > h2 {
    font-size: 40px;
    margin-bottom: 0;
    margin-top: 10px;
  }
}

.underline {
  align-self: flex-start;
  width: 100px;
}
@media (max-width: 768px) {
  .underline {
    width: 65px;
  }
}

.yellow-border {
  border-bottom: 6px solid #F9D023;
}
@media (max-width: 768px) {
  .yellow-border {
    border-bottom: 4px solid #F9D023;
  }
}

.white-border {
  border-bottom: 6px solid white;
}
@media (max-width: 768px) {
  .white-border {
    border-bottom: 4px solid white;
  }
}

#about-content {
  align-self: center;
  display: flex;
  gap: 68px;
  margin-top: 55px;
}
@media (max-width: 1200px) {
  #about-content {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-top: 47px;
  }
}
@media (max-width: 768px) {
  #about-content {
    gap: 28px;
    margin-top: 37px;
  }
}

.about-img {
  width: 486px;
  height: 315px;
}
@media (max-width: 1200px) {
  .about-img {
    width: 486px;
    height: 315px;
  }
}
@media (max-width: 768px) {
  .about-img {
    width: 290px;
    height: 180px;
  }
}

#about-text {
  margin-right: 68px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#about-text > p {
  text-align: justify;
  color: #0B0D21;
  font-family: "Sofia pro", Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}
@media (max-width: 1200px) {
  #about-text {
    width: 486px;
    text-align: justify;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  #about-text {
    width: auto;
  }
  #about-text > p {
    font-size: 14px;
    line-height: 24px;
  }
}

.fst-ab-text {
  padding-right: 30px;
}
@media (max-width: 1200px) {
  .fst-ab-text {
    padding-right: 0;
  }
}

#things {
  height: 801px;
  width: 100%;
  background-color: #F9D023;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  #things {
    height: auto;
  }
}
@media (max-width: 768px) {
  #things {
    height: 1147px;
  }
}

#things-container {
  width: 1110px;
  display: flex;
  flex-direction: column;
  margin-bottom: 41px;
}
#things-container > h2 {
  align-self: flex-start;
  font-family: "Alata", sans-serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 100px;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  #things-container {
    width: 720px;
    height: 100%;
    margin-bottom: 80px;
  }
  #things-container > h2 {
    font-size: 65px;
    margin-bottom: 51px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  #things-container {
    width: 290px;
    margin-bottom: 0;
  }
  #things-container > h2 {
    font-size: 40px;
    margin-bottom: 5px;
    margin-top: 20px;
  }
}

#things-img-container {
  display: flex;
  justify-content: space-between;
  gap: 55px;
  margin-top: 55px;
}
@media (max-width: 1200px) {
  #things-img-container {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  #things-img-container {
    flex-wrap: nowrap;
    height: 920px;
    gap: 25px;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 32px;
  }
}

.img-block {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 350px;
  width: 350px;
}
.img-block > :first-child {
  height: 100%;
  gap: 7px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.img-block > :first-child > :first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 232px;
  height: 232px;
}
.img-block > :first-child > :first-child > img {
  width: 232px;
  height: 232px;
}
.img-block:hover > :first-child {
  flex-direction: row;
  height: 105px;
  width: 300px;
}
.img-block:hover > :first-child > :first-child {
  width: 105px;
  height: 105px;
}
.img-block:hover > :first-child > :first-child > img {
  width: 105px;
  height: 105px;
}
.img-block:hover > :nth-child(2) {
  display: flex;
  flex-direction: column;
  height: 245px;
}
@media (max-width: 1200px) {
  .img-block {
    height: 320px;
    width: 320px;
  }
  .img-block > :first-child {
    height: 320px;
    width: 320px;
  }
  .img-block:hover > :first-child {
    height: 97px;
    width: 280px;
  }
  .img-block:hover > :first-child > :first-child {
    width: 97px;
    height: 97px;
  }
  .img-block:hover > :first-child > :first-child > img {
    width: 97px;
    height: 97px;
  }
  .img-block:hover > :nth-child(2) {
    height: 223px;
  }
}
@media (max-width: 768px) {
  .img-block {
    height: 290px;
    width: 290px;
  }
  .img-block > :first-child {
    height: 290px;
    width: 290px;
    gap: 5px;
    margin-top: 0;
  }
  .img-block > :first-child > :first-child {
    width: 194px;
    height: 194px;
  }
  .img-block > :first-child > :first-child > img {
    width: 194px;
    height: 194px;
  }
  .img-block:hover > :first-child {
    height: 89px;
    width: 255px;
  }
  .img-block:hover > :first-child > :first-child {
    width: 89px;
    height: 89px;
  }
  .img-block:hover > :first-child > :first-child > img {
    width: 89px;
    height: 89px;
  }
  .img-block:hover > :nth-child(2) {
    height: 201px;
  }
}

.thing-text {
  font-family: "Alata", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 41px;
  text-align: center;
}
@media (max-width: 768px) {
  .thing-text {
    font-size: 24px;
    line-height: 33px;
  }
}

.things-inside-things {
  display: flex;
  flex-direction: column;
  gap: 20px;
  display: none;
  width: 100%;
  padding-left: 44px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  margin-top: 25px;
}
.things-inside-things > :nth-child(-n+3) {
  transition: padding 0.3s ease-in-out;
}
.things-inside-things > :nth-child(-n+3):hover {
  cursor: pointer;
  padding-left: 20px;
}
.things-inside-things > :nth-child(4) {
  align-items: center;
  display: flex;
}
.things-inside-things > :nth-child(4):hover {
  cursor: pointer;
}
.things-inside-things > :nth-child(4):hover > .arrow-tail {
  width: 68px;
}

.arrow-tail {
  border-bottom: 3px solid #F9D023;
  width: 41px;
  height: 0;
  transition: width 0.3s ease-in-out;
  margin-left: 10px;
}

.arrow-head {
  width: 11px;
  height: 11px;
  border: solid #F9D023;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-left: -10px;
}

#beautiful {
  height: 812px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  #beautiful {
    height: 727px;
  }
}
@media (max-width: 768px) {
  #beautiful {
    height: 657px;
  }
}

#beautiful-container {
  width: 1110px;
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
}
#beautiful-container > h2 {
  align-self: flex-start;
  font-family: "Alata", sans-serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 100px;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  #beautiful-container {
    width: 720px;
    margin-bottom: 45px;
  }
  #beautiful-container > h2 {
    font-size: 65px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  #beautiful-container {
    width: 290px;
    margin-bottom: 40px;
  }
  #beautiful-container > h2 {
    font-size: 40px;
  }
}

#beautiful-slider {
  position: relative;
  margin: 55px 0 67px 0;
  transition: opacity 0.3 ease-in-out;
}
@media (max-width: 768px) {
  #beautiful-slider {
    margin: 35px 0 39px 0;
    display: flex;
    justify-content: center;
  }
}

#images-block {
  display: flex;
  justify-content: space-between;
  height: 213px;
}
#images-block > img {
  width: 255px;
  height: 213px;
}
@media (max-width: 1200px) {
  #images-block {
    justify-content: space-around;
    height: 227px;
  }
  #images-block > img {
    width: 272px;
    height: 227px;
  }
  #images-block > img:not(:nth-child(-n+2)) {
    display: none;
  }
}
@media (max-width: 768px) {
  #images-block {
    justify-content: space-between;
    height: 227px;
  }
  #images-block > img {
    width: 272px;
    height: 227px;
  }
  #images-block > img:not(:nth-child(1)) {
    display: none;
  }
}

.arrow {
  position: absolute;
  top: calc(50% - 21.5px);
  z-index: 3;
}
.arrow > img {
  height: 43px;
  width: 14px;
}
.arrow:hover {
  cursor: pointer;
}
@media (max-width: 768px) {
  .arrow {
    top: calc(50% - 11.5px);
  }
  .arrow > img {
    height: 23px;
    width: 9px;
  }
}

.arrow-right {
  right: -54px;
  transition: right 0.2s ease-in-out;
}
.arrow-right:hover {
  right: -50px;
}
@media (max-width: 768px) {
  .arrow-right {
    right: -10px;
  }
  .arrow-right:hover {
    right: -8px;
  }
}

.arrow-left {
  left: -54px;
  transition: left 0.2s ease-in-out;
}
.arrow-left:hover {
  left: -50px;
}
@media (max-width: 768px) {
  .arrow-left {
    left: -10px;
  }
  .arrow-left:hover {
    left: -8px;
  }
}

#beautiful-description {
  width: 840px;
  color: #0B0D21;
  font-family: "Sofia pro", Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}
@media (max-width: 1200px) {
  #beautiful-description {
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
  }
}
@media (max-width: 768px) {
  #beautiful-description {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
  }
}

#services {
  height: 1026px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F9D023;
}
@media (max-width: 768px) {
  #services {
    height: 1345px;
  }
}

#services-container {
  width: 1110px;
  display: flex;
  flex-direction: column;
  margin-bottom: 39px;
}
#services-container > h2 {
  align-self: flex-start;
  font-family: "Alata", sans-serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 100px;
  margin-bottom: 50px;
}
#services-container > p {
  text-align: justify;
  font-family: "Sofia pro", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 1200px) {
  #services-container {
    width: 720px;
  }
  #services-container > h2 {
    font-size: 65px;
    margin-bottom: 0;
  }
  #services-container > p {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 768px) {
  #services-container {
    width: 290px;
  }
  #services-container > h2 {
    font-size: 40px;
    margin-bottom: 0;
  }
  #services-container > p {
    font-size: 14px;
    line-height: 24px;
  }
}

.services-fst-descr {
  width: 74%;
  align-self: flex-start;
  margin: 45px 0 58px 0;
}
@media (max-width: 1200px) {
  .services-fst-descr {
    margin: 35px 0 45px 0;
  }
}
@media (max-width: 768px) {
  .services-fst-descr {
    width: 100%;
    margin: 25px 0 30px 0;
  }
}

#advantages {
  display: flex;
  justify-content: space-between;
  width: 98.5%;
}
@media (max-width: 1200px) {
  #advantages {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #advantages {
    flex-direction: column;
  }
}

.advantage {
  width: 335px;
  height: 288px;
}
.advantage > h3 {
  font-family: "Sofia pro bold", Arial, sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 42px;
  width: 70%;
  margin-bottom: 27px;
}
.advantage > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 21px;
}
.advantage > ul > li {
  position: relative;
  font-family: "Sofia pro", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 20px;
  list-style-type: none;
}
.advantage > ul > li:before {
  position: absolute;
  left: -21px;
  top: 7px;
  content: "";
  background: url("assets/images/RectangleWhite.png");
  width: 6px;
  height: 6px;
  display: inline-block;
}
@media (max-width: 1200px) {
  .advantage {
    width: 335px;
    height: 288px;
  }
  .advantage > h3 {
    font-family: "Sofia pro bold", Arial, sans-serif;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 27px;
  }
  .advantage > ul {
    gap: 12px;
    padding-left: 21px;
  }
  .advantage > ul > li {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  .advantage {
    height: 245px;
    width: auto;
  }
  .advantage > h3 {
    font-size: 25px;
    line-height: 50px;
    width: 100%;
    margin-bottom: 11px;
  }
  .advantage > ul {
    gap: 12px;
    padding-left: 14px;
  }
  .advantage > ul > li {
    font-size: 14px;
    line-height: 16px;
  }
  .advantage > ul > li:before {
    left: -13px;
    top: 7px;
    width: 4px;
    height: 4px;
  }
}

.adv-arrow {
  margin-left: 23px;
  margin-top: 31px;
}
@media (max-width: 768px) {
  .adv-arrow {
    margin-left: 15px;
    margin-top: 22px;
  }
}

.services-snd-descr {
  align-self: flex-start;
  margin-top: 73px;
  width: 74%;
}
@media (max-width: 768px) {
  .services-snd-descr {
    margin: 9px 0 2px 0;
    width: 100%;
  }
}

#contact {
  background-color: #000000;
  height: 782px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  #contact {
    height: 663px;
  }
}

#contact-container {
  width: 1110px;
  display: flex;
  gap: 116px;
  margin-bottom: 185px;
}
@media (max-width: 1200px) {
  #contact-container {
    width: 720px;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
    justify-content: space-around;
    height: 100%;
  }
}
@media (max-width: 768px) {
  #contact-container {
    width: 290px;
    gap: 17px;
    justify-content: flex-start;
    height: 100%;
  }
}

#contact-left {
  display: flex;
  height: 392px;
  flex-direction: column;
}
#contact-left > h2 {
  color: white;
  align-self: flex-start;
  font-family: "Alata", sans-serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 100px;
  margin-bottom: 38px;
}
@media (max-width: 1200px) {
  #contact-left {
    height: auto;
  }
  #contact-left > h2 {
    font-size: 65px;
  }
}
@media (max-width: 768px) {
  #contact-left {
    width: 100%;
    height: 223px;
    margin-top: 25px;
  }
  #contact-left > h2 {
    font-size: 40px;
    margin-bottom: 0;
  }
}

.email {
  color: white;
  align-self: flex-start;
  font-family: "Sofia pro bold", Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
}
@media (max-width: 1200px) {
  .email {
    align-self: center;
    font-size: 32px;
    line-height: 38px;
  }
}
@media (max-width: 768px) {
  .email {
    align-self: flex-start;
    font-size: 24px;
    line-height: 35px;
  }
}

.email.text {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .email.text {
    margin-top: 21px;
  }
}

.email.link {
  color: #F9D023;
  text-decoration: underline;
  text-underline-position: under;
}
@media (max-width: 768px) {
  .email.link {
    width: 100%;
    overflow-wrap: break-word;
  }
}

.contact-right {
  width: 445px;
  display: flex;
  flex-direction: column;
}
.contact-right > h3 {
  width: 70%;
  color: white;
  align-self: flex-start;
  font-family: "Sofia pro bold", Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  margin-bottom: 47px;
  margin-top: 45px;
}
.contact-right > button {
  width: 272px;
  height: 48px;
  font-family: "Sofia pro", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-size: 14px;
  align-self: flex-end;
  text-align: center;
  background-color: #F9D023;
}
.contact-right > button:hover {
  cursor: pointer;
}
@media (max-width: 1200px) {
  .contact-right {
    width: 720px;
  }
  .contact-right > h3 {
    text-align: center;
    align-self: center;
  }
}
@media (max-width: 768px) {
  .contact-right {
    width: 290px;
  }
  .contact-right > h3 {
    width: 65%;
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 25px;
    margin-top: 36px;
    text-align: left;
    align-self: flex-start;
  }
  .contact-right > button {
    width: 196px;
    height: 48px;
    letter-spacing: 0.6px;
  }
}

#contact-form {
  width: 100%;
}

.input-container {
  position: relative;
  width: 100%;
  height: 48px;
  margin-bottom: 15px;
}
.input-container > input {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  font-size: 30px;
  padding-left: 80px;
}
.input-container > label {
  font-family: "Sofia pro", Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: calc(50% - 7px);
  left: 20px;
  color: #000000;
  z-index: 2;
}
@media (max-width: 768px) {
  .input-container {
    margin-bottom: 10px;
  }
  .input-container > input {
    font-size: 14px;
  }
}

.sent-contact {
  width: 445px;
  display: flex;
  flex-direction: column;
}
.sent-contact > h3 {
  color: white;
  align-self: flex-start;
  font-family: "Sofia pro bold", Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 54px;
  margin-top: 45px;
}
.sent-contact > p {
  text-align: justify;
  width: auto;
  color: white;
  font-family: "Sofia pro", Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
}
.sent-contact > p > span {
  color: #F9D023;
  border-bottom: 1px solid #F9D023;
}
@media (max-width: 1200px) {
  .sent-contact {
    width: 100%;
  }
  .sent-contact > h3 {
    align-self: center;
    margin-bottom: 50px;
    margin-top: 0;
    font-size: 32px;
  }
  .sent-contact > p {
    font-size: 16px;
    line-height: 25px;
    align-self: flex-end;
  }
}
@media (max-width: 768px) {
  .sent-contact > h3 {
    font-size: 32px;
  }
  .sent-contact > p {
    font-size: 14px;
    line-height: 24px;
  }
}

.demo {
  display: none;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: auto;
}
.demo .menu-icon {
  transform: scale(1.5);
}
@media (max-width: 768px) {
  .demo {
    display: flex;
  }
}

.menu-icon {
  position: relative;
  width: 13px;
  height: 50px;
  cursor: pointer;
}
.menu-icon:hover {
  cursor: pointer;
}
.menu-icon .menu-icon__cheeckbox {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  z-index: 2;
  -webkit-touch-callout: none;
  position: absolute;
  opacity: 0;
}
.menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 6px;
}
.menu-icon span {
  position: absolute;
  display: block;
  width: 16px;
  height: 1px;
  background-color: #000000;
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.menu-icon span:first-of-type {
  top: 0;
}
.menu-icon span:last-of-type {
  bottom: 0;
}
.menu-icon.active span,
.menu-icon .menu-icon__cheeckbox:checked + div span {
  background-color: #fff;
}
.menu-icon.active span:first-of-type,
.menu-icon .menu-icon__cheeckbox:checked + div span:first-of-type {
  transform: rotate(45deg);
  top: 2px;
}
.menu-icon.active span:last-of-type,
.menu-icon .menu-icon__cheeckbox:checked + div span:last-of-type {
  transform: rotate(-45deg);
  bottom: 3.5px;
}

.hide {
  display: none;
}

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