:root {
  /* COLOR VARIABLES */
  --primary_color: #fffcf5;
  --secondary_color: #626262;
  --dark_text: #000;
  --link_hover: #e9283f;
  --extra-light: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --test: 550;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 800;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: #fffcf5;
}

::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 2px;
}

@font-face {
  font-family: Archivo;
  src: url("../fonts/Archivo-Light.ttf");
  font-display: swap;
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Archivo;
  src: url("../fonts/Archivo-Regular.ttf");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Archivo;
  src: url("../fonts/Archivo-Medium.ttf");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
/*  */

/* DEFAULT STYLES */
* {
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;
  font-weight: var(--light);
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  background-color: var(--primary_color);
  user-select: none;
}

body {
  overflow-x: hidden;
  margin: 0 9%;
}

.header,
.about,
.vertical__slider-container,
.projects,
.vision,
.customers,
.footer {
  max-width: 1560px;
}

/* HEADER */
.header {
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto 175px auto;
}

.header__nav {
  height: 8.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav-logo {
  width: 310px;
  height: auto;
}

.header__nav-links {
  display: flex;
  justify-content: right;
  gap: 2rem;
}

.header__nav-link {
  font-size: 24px;
  transition: 0.3s ease-in;
  position: relative;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: transparent;
  transition: 0.3s ease-in;
}

.header__nav-link:hover::after {
  background-color: black;
}

.header__img {
  max-width: 100%;
  /* height: 650px; */
  display: block;
  margin: 0 auto;
}

.header__texts {
  padding: 35px 0 45px 0;
}

.header__title {
  font-size: 64px;
  font-weight: var(--regular);
  text-align: center;
  padding-bottom: 10px;
}

.header__subtitle {
  font-size: 32px;
  font-weight: var(--regular);
  color: var(--secondary_color);
  text-align: center;
}

.about {
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("../img/about__img.svg");
  background-position: 70% 50%;
  background-repeat: no-repeat;
  background-size: 70%;
  margin: 0 auto 150px auto;
}

.about__text-one,
.about__text-two {
  font-size: 24px;
  line-height: 130%;
  background: none;
}

.about__text-one {
  width: 31rem;
}

.about__text-two {
  width: 30rem;
  padding-bottom: 65px;
  align-self: flex-end;
}

.vertical__slider-container {
  position: relative;
  margin: 0 auto 150px auto;
}

.vertical__slider-wrapper {
  height: 100vh !important;
  height: 100svh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  text-align: center;
  padding: 65px 0 75px 0;
}

.fieldsOfOperation__title,
.expertise__title,
.services__title {
  font-size: 40px;
  font-weight: var(--medium);
}

.fieldOfOperation__texts,
.expertise__texts,
.services__texts-wrapper {
  display: flex;
  flex-direction: column;
}

.fieldOfOperation__texts p {
  font-size: 40px;
}

.expertise__texts p {
  font-size: 32px;
}

.services__texts-wrapper p {
  font-size: 28px;
}

.fieldOfOperation__texts,
.expertise__texts {
  gap: 70px;
}

.services__texts-wrapper {
  gap: 20px;
}

.bottom__text {
  font-size: 32px;
  font-weight: var(--regular);
}

.custom-dots {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  gap: 15px;
  top: 52vh;
  top: 52svh;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}

.custom-dots .dot {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-dots .dot.active {
  background-color: #000;
}

.custom-dots-horizontal {
  display: none;
}

.custom-dots-horizontal .dot {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-dots-horizontal .dot.active {
  background-color: #000;
}

.projects {
  height: 100vh;
  height: 100svh;
  margin: 0 auto;
}

.projects__title {
  font-size: 40px;
  font-weight: var(--medium);
  text-align: center;
  padding: 65px 0 70px 0;
}

.slider {
  height: auto;
  overflow: hidden;
}

.slider img {
  height: auto;
}

.slide-desc {
  text-align: left;
}

.slider .slick-slide {
  margin-right: 20px;
}

.slide-desc h3,
p {
  font-size: 24px;
}

.slide-desc h3 {
  margin-top: 1.5rem;
}

.slide-desc p {
  margin-top: 0.9rem;
}

.project__buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: right;
  align-items: center;
  margin-top: 30px;
  position: relative;
  right: 22px;
}

#button1,
#button2 {
  cursor: pointer;
  transition: 0.3s;
}

.projects__mobile {
  display: none;
}

.vision {
  height: 100vh;
  height: 100svh;
  margin: 250px auto 0 auto;
}

.vision__title {
  font-size: 40px;
  font-weight: var(--medium);
  text-align: center;
  padding-bottom: 10rem;
}

.vision__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
}

.vision__passion,
.vision__collaboration,
.vision__integrity {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 60px;
}

.vision__passion h2,
.vision__collaboration h2,
.vision__integrity h2 {
  font-size: 32px;
  font-weight: var(--medium);
}

.vision__passion p,
.vision__collaboration p,
.vision__integrity p {
  font-size: 32px;
  font-weight: var(--light);
  text-align: center;
}

.vision__passion {
  width: 21rem;
}

.vision__collaboration {
  width: 24rem;
}

.vision__integrity {
  width: 22rem;
}

.customers {
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.customers__title {
  font-size: 40px;
  font-weight: var(--medium);
  padding-bottom: 165px;
}

.customers__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  column-gap: 249px;
  row-gap: 6rem;
}

.customers__wrapper picture:not(#schlumberger):not(#kawasaki):not(#socar) {
  align-self: flex-end;
  justify-self: center;
}

#schlumberger,
#kawasaki,
#socar {
  justify-self: center;
  align-self: center;
}

.footer {
  margin: 0 auto;
  margin-top: 200px;
}

.footer__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* .footer__contacts { */
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 20px; */
/* } */

.footer__form {
  position: relative;
  /* width: 500px; */
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.form__label {
  white-space: nowrap;
  font-size: 24px;
  letter-spacing: -0.64px;
}

.form__label:after {
  content: '';
  display: block;
  max-width: 700px;
  border: 1.25px solid #161616;
}

.form__label._error:after {
  border: 3.25px solid red;
}

.form__input {
  width: 420px;
  max-width: 100%;
  height: 60px;
  color: #161616;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.64px;
  background-color: transparent;
  outline: none;
  padding-left: 10px;
}

.form__textarea {
  width: 500px;
  max-width: 100%;
  max-height: 150px;
  min-height: 150px;
  height: 100%;
  padding: 18px 25px;
  border-radius: 10px;
  border: 2.5px solid #161616;
  background-color: transparent;
  margin-top: 50px;
  margin-bottom: 50px;
  outline: none;
  color: #161616;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.64px;
}

.form__button {
  width: 160px;
  height: 50px;
  text-align: center;
  border-radius: 33.767px;
  border: 3px solid #91d3ec;
  font-size: 24px;
  letter-spacing: -0.558px;
  cursor: pointer;
  box-shadow: 0 3px 0 #575656;
  position: relative;
  top: 0;
  transition: background-color .3s ease-in-out;
  transition: border-color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.form__button:hover, .form__button:focus {
  background-color: #91d3ec;
  border-color: #17BFFF;
  color: #fffcf5;
}

.form__button:active {
  background-color: #cce2eb;
  top: 3px;
  box-shadow: 0 1px 0 #575656;
}

input[type="text"] {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="tel"] {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="email"] {
  -webkit-appearance: none;
  border-radius: 0;
}

.footer__form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(51, 51, 51, 0.7) url(../img/load.gif) center / 50px no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease 0s;
  z-index: 2;
}

.footer__form._sending::after {
  opacity: 1;
  visibility: visible;
}

.required {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: rgba(51, 51, 51, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease 0s;
  z-index: 2;
}

.required p {
  background-color: transparent;
  color: #fffcf5;
  font-size: 20px;
}

.required li {
  list-style: none;
}

.required.active-req  {
  opacity: 1;
  visibility: visible;
}






.footer__contacts p {
  font-size: 24px;
}

/* .footer__logo { */
  /* width: 135px; */
/* } */

.footer__rights {
  text-align: center;
  margin: 100px 0 45px 0;
}

.footer__rights p {
  font-size: 24px;
}
