@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:visited {
  color: #000;
}

a {
  text-decoration: none;
}

header {
  max-width: 100%;
  background-color: white;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}

.sticky + .heading {
  padding-top: 100px;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.nav__logo {
  width: 100%;
}
.nav__link {
  width: 40%;
}
.nav__phone--logo {
  height: 15px;
}
.nav__phone {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #000 !important;
  margin-left: 30%;
}

.menu-btn {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.menu-btn span {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #222222;
  transition: all 0.5s;
}

.menu-btn span:nth-of-type(2) {
  top: calc(50% - 5px);
}

.menu-btn span:nth-of-type(3) {
  top: calc(50% + 5px);
}

.menu-btn.active span:nth-of-type(1) {
  display: none;
}

.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
          transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(-45deg);
          transform: translate(-50%, 0%) rotate(-45deg);
}

.menu {
  position: fixed;
  top: -20px;
  left: 0;
  width: 100%;
  height: 30vh;
  background: white;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  z-index: 2;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.menu__item {
  font-size: 16px;
  font-weight: 300;
  line-height: 35px;
}

.menu.active {
  top: 10%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (min-width: 481px) {
  .menu-btn {
    display: none;
  }

  .nav {
    align-items: baseline;
  }
  .nav__logo {
    width: 100%;
  }
  .nav__link {
    width: 20%;
  }
  .nav__phone {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-top: 0px;
    color: #000 !important;
    margin-left: 0;
  }

  .menu {
    height: auto;
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    position: static;
    padding: 0;
    align-items: center;
    box-shadow: none;
  }
  .menu__item {
    font-size: 12px;
    line-height: 0;
  }
}
@media (min-width: 993px) {
  .sticky + .about {
    padding-top: 110px;
  }

  .menu-btn {
    display: none;
  }

  .nav__logo {
    width: 100%;
  }
  .nav__link {
    width: 10%;
  }
  .nav__phone {
    font-size: 22px;
    margin-top: 0px;
  }
  .nav__phone--logo {
    height: 25px;
  }

  .menu {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    position: static;
    padding: 0;
  }
  .menu__item {
    font-size: 20px;
    line-height: 0;
  }
}
.heading {
  position: relative;
}
.heading__header {
  display: flex;
  align-items: center;
  background-image: url(../../dist/img/herobg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 250px;
  position: relative;
  z-index: 1;
}
.heading__header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 15, 0.6);
  -webkit-backdrop-filter: blur(0.5px);
          backdrop-filter: blur(0.5px);
  z-index: -1;
}
.heading__header--title {
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.heading__content {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.heading__content--text {
  line-height: 25px;
  display: block;
  margin-top: 25px;
}
.heading__content--text-highlighted {
  font-weight: 700;
  color: #F77D20;
}
.heading__btn {
  text-align: center;
  margin-top: 25px;
  padding: 17.5px 21.5px;
  font-size: 12px;
  max-width: 70%;
  align-self: center;
  color: white !important;
}

@media (min-width: 481px) {
  .heading__header--title {
    font-weight: 600;
    font-size: 26px;
    line-height: 24px;
    text-align: center;
  }
}
@media (min-width: 481px) and (min-width: 993px) {
  .heading__header {
    height: 100vh;
    background-attachment: scroll;
    background-size: cover;
    background-attachment: fixed;
  }
  .heading__header--title {
    left: 5%;
    font-weight: 600;
    font-size: 46px;
    line-height: 44px;
    margin-bottom: 37px;
    max-width: 900px;
    position: relative;
    bottom: 20vh;
    text-align: left;
  }
  .heading__header--title::after {
    position: absolute;
    top: 100px;
    right: 0%;
    content: "";
    width: 100%;
    height: 3px;
    background: #6CCAFB;
  }
  .heading__content {
    left: 5%;
    margin-top: 50px;
    position: relative;
    bottom: 60vh;
    z-index: 1;
    max-width: 755px;
    color: white;
    font-size: 18px;
    padding: 0;
  }
  .heading__btn {
    max-width: 500px;
    text-align: center;
    margin-top: 25px;
    padding: 17.5px 21.5px;
    font-size: 18px;
    margin-top: 40px;
    align-self: flex-start;
  }
}
.about {
  border-top: solid 1px gray;
  padding-top: 50px;
}
.about__title {
  font-weight: 700;
  font-size: 36px;
  color: #F77D20;
  text-align: center;
  padding-bottom: 30px;
}
.about__block {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
  background: url(../../dist/img/bireten.webp);
  background-attachment: scroll;
  background-size: cover;
  background-attachment: fixed;
}
.about__block--container {
  position: relative;
  width: 90%;
}
.about__block--container::before {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 90%;
  background-color: white;
  left: -10px;
}
.about__block--title {
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 20px;
  padding-left: 10px;
}
.about__block--text {
  position: relative;
  text-align: left;
  font-size: 18px;
  color: #fff;
  line-height: 145%;
  padding-left: 10px;
  margin-bottom: 40px;
}
.about__services {
  background-color: #e8eff1;
}
.about__services--cards {
  display: flex;
  justify-content: center;
  width: 100%;
  -webkit-transform: translate(0, -55%);
          transform: translate(0, -55%);
  align-items: center;
}
.about__services--card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 200px;
  height: 200px;
  margin: 10px;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  background: linear-gradient(180deg, #96D2ED 0%, #61ACCD 100%);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  padding: 25px;
}
.about__services--img {
  height: 50px;
  width: 50px;
  margin-bottom: 10px;
}
.about__services--text {
  font-size: 12px;
}
.about__services--title {
  display: block;
  position: relative;
  top: 170px;
  font-size: 24px;
  padding: 20px;
  text-align: center;
}
.about__services--description-title {
  display: block;
  padding-left: 5%;
  padding-right: 5%;
  margin: auto;
  line-height: 25px;
  padding-bottom: 25px;
  background-color: #e8eff1;
}
.about__services--description {
  display: block;
  background-color: #e8eff1;
  padding-left: 5%;
  padding-right: 5%;
  margin: auto;
  line-height: 25px;
  padding-bottom: 25px;
}

@media (min-width: 481px) {
  .about__block {
    height: 40vh;
  }
}
@media (min-width: 993px) {
  .about {
    position: relative;
    bottom: 35vh;
    display: grid;
    height: 90vh;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 60px 4fr 4fr 4fr 4fr 4fr 200px;
    align-items: stretch;
    max-width: 100%;
  }
  .about__title {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    padding: 0;
  }
  .about__block {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 7;
    height: 70vh;
  }
  .about__block--title {
    font-size: 36px;
    font-weight: 400;
  }
  .about__block--text {
    font-size: 18Spx;
    font-weight: 400;
  }
  .about__block--container {
    position: relative;
    width: 70%;
  }
  .about__services {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 7;
  }
  .about__services--description {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 7;
    grid-row-end: 8;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about__services--description-title {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 6;
    grid-row-end: 7;
    font-size: 24px;
    width: 70%;
    line-height: 25px;
    margin-left: 20px;
  }
  .about__services--cards {
    position: relative;
    height: 70vh;
    top: 30%;
    right: 25%;
  }
  .about__services--card {
    width: 25%;
    height: 32%;
    margin: 10px;
    padding: 25px;
  }
  .about__services--img {
    height: 70px;
    width: 70px;
    margin-bottom: 20px;
  }
  .about__services--text {
    font-size: 18px;
    font-weight: 600;
  }
  .about__services--title {
    position: relative;
    width: 70%;
    top: 10%;
    font-size: 36px;
    padding: 20px;
    text-align: left;
    line-height: 50px;
    margin-left: 50px;
  }
}
.specialization {
  max-width: 100%;
  margin-bottom: 50px;
  position: relative;
}
.specialization__title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 20px;
}
.specialization__title::after {
  display: block;
  content: "";
  width: 80%;
  margin: auto;
  margin-top: 15px;
  height: 2px;
  background: #65AECF;
}
.specialization__name {
  display: block;
  text-align: center;
  font-size: 18px;
  width: 100%;
  background-color: #65AECF;
  color: white;
  padding: 20px 0 20px 0;
  transition: background 0.3s ease-in-out;
}
.specialization__name:hover {
  background-color: #3e9ac3;
}
.specialization__paragragh {
  display: block;
  text-align: center;
  padding: 20px;
}
.specialization__btn {
  position: relative;
  top: 20px;
  text-align: center;
  padding: 17.5px 21.5px;
  font-size: 12px;
  max-width: 70%;
  align-self: center;
  color: white !important;
}
.specialization__text {
  margin-bottom: 20px;
}

.swiper {
  width: 80%;
  height: auto;
}

.swiper-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background-color: white;
}

.swiper-img {
  width: 100%;
  height: 225px;
}

.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}

.up-btn {
  display: flex;
  width: 40px;
  height: 100px;
  position: fixed;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  cursor: pointer;
  z-index: 4;
}

.up-btn svg {
  fill: #eb943d;
}

.up-btn:hover svg {
  opacity: 1;
  fill: #eb943d;
  opacity: 0.5;
}

@media (min-width: 993px) {
  .swiper {
    max-width: 1000px;
    height: auto;
  }

  .specialization {
    bottom: 10vh;
  }

  .swiper-button-prev::after, .swiper-button-next::after {
    color: #eb943d;
    font-size: 80px;
    display: block;
  }
}
.services__container {
  padding-top: 50px;
  position: relative;
}

.services {
  padding-bottom: 50px;
}
.services__title {
  font-weight: 700;
  font-size: 32px;
  color: #F77D20;
  text-align: center;
  padding-bottom: 30px;
}
.services__wrapper {
  margin: auto;
  padding: 0 20px 0 20px;
  margin-bottom: 30px;
  max-width: 90%;
  text-align: center;
}
.services__text {
  line-height: 117%;
}
.services__text:not(:last-child) {
  margin-bottom: 30px;
}
.services__card {
  margin: 40px auto 40px auto;
  text-align: center;
}

.primary-container {
  padding: 20px;
  background-color: #6BB3D3;
  color: white;
  margin-bottom: 20px;
}
.primary-container__title {
  font-size: 18px;
  text-align: center;
}

.card-text {
  margin: 20px;
  text-align: center;
}

.services__card-title {
  font-weight: 700;
  line-height: 145%;
  color: #000000;
}

.services__card-title {
  font-weight: 500;
}

.steps {
  max-width: 1440px;
  margin: -30px auto 0;
  align-items: center;
  padding: 35px;
  overflow: hidden;
  border-bottom: 2px solid #6BB3D3;
}

.step {
  max-width: 560px;
  height: 220px;
  display: flex;
}

.step span {
  left: 30%;
}

.step__text {
  display: flex;
  max-width: 600px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  color: #000000;
}

.step__text span {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 40%;
  font-weight: 700;
  font-size: 162px;
  line-height: 155.69%;
  color: rgba(0, 151, 230, 0.07);
}

@media (min-width: 481px) {
  .services__cards {
    margin: 0 auto;
    max-width: 1024px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    margin: 0 auto;
    max-width: 1024px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.footer {
  background: #F4F5F5;
  display: grid;
  grid-template-columns: 1fr;
}
.footer__top {
  display: flex;
  justify-content: space-around;
  border-bottom: 0.5px solid black;
  padding: 20px;
}
.footer__a {
  padding: 10px;
}
.footer__bottom {
  padding: 20px;
  font-size: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 15px;
}
.footer__logo {
  width: auto;
  height: 40px;
}
.footer__copyright {
  font-weight: bold;
}

@media (min-width: 481px) {
  .footer {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 3fr;
  }
  .footer__top {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
.contact-form {
  background-color: #F5F9FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
.contact-form__item {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.contact-form label {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 15px;
}
.contact-form textarea {
  padding: 5px;
  height: 40px;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  font-size: 16px;
}
.contact-form input {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  font-size: 16px;
  background: #fff;
}
.contact-form__form {
  display: flex;
  flex-direction: column;
}
.contact-form__btn {
  text-align: center;
  margin-top: 25px;
  padding: 17.5px 21.5px;
  font-size: 18px;
}

.contact {
  display: flex;
  flex-direction: column;
  background-color: #61ACCD;
  padding: 20px;
}
.contact__logo {
  width: 25px;
  padding-right: 10px;
}
.contact__title {
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.contact__list--item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px;
}
.contact__list--item a {
  text-decoration: none;
  color: #fff;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social__logo {
  margin: 15px;
  width: 25px;
}

.map {
  padding-top: 20px;
  height: 60%;
}

@media (min-width: 481px) {
  .contact-section {
    display: flex;
  }

  .contact-form {
    width: 50%;
    padding: 20px;
  }
  .contact-form__form {
    width: 100%;
  }

  .contact {
    width: 50%;
    padding: 50px;
  }
}
@media (min-width: 993px) {
  .contact-form {
    width: 50%;
    padding: 50px;
  }
  .contact-form__form {
    width: 90%;
  }
}
.consultation {
  margin-bottom: 30px;
}
.consultation__card {
  display: grid;
  justify-items: center;
  width: 90%;
  background: #fff;
  border: 1px solid #AEDBF2;
  box-shadow: 3px 6px 12px rgba(48, 62, 88, 0.15);
  border-radius: 3px;
  margin: auto;
}
.consultation__block--img {
  padding-top: 20px;
  order: 1;
}
.consultation__block--img img {
  width: 150px;
}
.consultation__text-block {
  order: 2;
}
.consultation__text {
  padding: 20px 30px;
}

@media (min-width: 481px) {
  .consultation {
    margin-bottom: 30px;
  }
  .consultation__card {
    display: flex;
    align-items: center;
    width: 70%;
    padding: 50px;
  }
  .consultation__block--img {
    padding-top: 20px;
    order: 2;
  }
  .consultation__block--img img {
    width: 150px;
  }
}
.benefits {
  display: flex;
  flex-direction: column;
  background-color: #F5F9FF;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.benefits__title {
  font-weight: 700;
  font-size: 36px;
  color: #F77D20;
  text-align: center;
  padding-bottom: 20px;
  background-color: white;
  width: 100%;
}
.benefits__text {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 20px;
  background-color: white;
  width: 100%;
  padding: 20px;
}
.benefits__content {
  padding: 20px;
  display: flex;
}
.benefits__content span {
  margin-right: 15px;
}
.benefits__body-title {
  font-weight: 700;
  font-size: 24px;
  color: #F77D20;
  text-align: center;
  padding: 20px;
}

.recruitment {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.recruitment__title {
  font-weight: 700;
  font-size: 24px;
  color: #F77D20;
  text-align: center;
  padding: 20px;
}
.recruitment__list-item {
  padding: 15px;
  display: flex;
  align-items: center;
}
.recruitment__list-item::before {
  position: absolute;
  display: block;
  left: 20px;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #F77D20;
  margin-right: 10px;
}

@media (min-width: 481px) {
  .benefits {
    padding: 50px;
  }

  .recruitment {
    padding-left: 70px;
  }
  .recruitment__list-item::before {
    left: 90px;
  }
}
body {
  min-width: 320px;
  font-family: "Roboto", sans-serif;
  margin: auto;
}

.myBtn {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  background: #0097E6;
  box-shadow: 0px 5px 8px rgba(3, 37, 55, 0.25);
  border-radius: 5px;
}