* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  overflow-x: hidden;
  background-image: url("../img/main_right_bg.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-attachment: fixed;
  scroll-behavior: smooth;
}

.mark {
  background-color: #ffffffc9;
}

section {
  width: 100%;
  padding: 70px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
}

section a {
  color: #3A5AFF;
  text-decoration: none;
}

section .section-body {
  width: 100%;
  max-width: 1000px;
}

section .section-title {
  font-size: 36px;
  font-weight: 900;
  color: #2F281E;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

section .section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 150px;
  height: 8px;
  background-color: #3A5AFF;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

section .section-about {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section .section-about__text {
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

@media screen and (max-width: 600px) {
  section .section-title {
    font-size: 28px;
  }
  section .section-title::after {
    height: 6px;
    bottom: -12px;
    width: 100px;
  }
  section .section-about {
    padding: 0 30px;
  }
  section .section-about__text {
    font-size: 18px;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .3s;
  transition: .3s;
}

.loading__hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.loading__circle {
  width: 150px;
  height: 150px;
  -webkit-animation: loading 1s infinite linear;
          animation: loading 1s infinite linear;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.header {
  width: 100%;
  height: 60px;
  background-color: #3A5AFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.header .nav {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  width: 150px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 22px;
  font-weight: 600;
}

.header__logo img {
  width: 100%;
  height: 55px;
}

.header__links {
  width: calc( 100% - 150px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}

.header__link {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.header__link:last-child::after {
  display: none;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  width: 5px;
  background-color: white;
  opacity: 0;
  -webkit-transition: .3s bottom, .3s opacity, .3s .2s width;
  transition: .3s bottom, .3s opacity, .3s .2s width;
}

.header__link:hover::after {
  -webkit-transform-origin: right;
          transform-origin: right;
  width: 100%;
  bottom: -5px;
  opacity: 1;
}

.header__link--button {
  padding: .7em 1em;
  font-size: 1rem;
  font-weight: 600;
  background-color: white;
  border: solid 1px white;
  border-radius: 5px;
  background-color: #3A5AFF;
  color: white;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__link--button:hover {
  color: #3A5AFF;
  background-color: white;
}

.header__bars {
  display: none;
  width: 60px;
  height: 60px;
  padding: .8em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

.header__bars.active div:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.header__bars.active div:nth-child(1) {
  -webkit-transform: rotate(45deg) translateX(16.5px);
          transform: rotate(45deg) translateX(16.5px);
}

.header__bars.active div:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateX(16.5px);
          transform: rotate(-45deg) translateX(16.5px);
}

.header__bars div {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 850px) {
  .header__links {
    position: fixed;
    right: -500px;
    top: 60px;
    width: 100%;
    max-width: 500px;
    height: calc( 100vh - 60px);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    grid-gap: 0;
    padding-top: 20px;
    z-index: 1;
    background-color: white;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .header__links.active {
    right: 0;
  }
  .header__links.active::before {
    opacity: 1;
    visibility: visible;
    left: 0;
  }
  .header__links::before {
    -webkit-transition: .5s opacity, .5s visibility, .5s left;
    transition: .5s opacity, .5s visibility, .5s left;
    content: "";
    position: fixed;
    left: calc( 500px - 100%);
    top: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    width: calc( 100% - 500px);
    height: calc( 100% - 60px);
    opacity: 0;
    visibility: hidden;
  }
  .header__link {
    width: 100%;
    font-size: 20px;
    padding: 1em;
    color: #3A5AFF;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .header__link::after {
    display: none;
  }
  .header__link:last-child:hover {
    background-color: white;
    color: #3A5AFF;
    cursor: default;
  }
  .header__link--button {
    width: 100%;
    height: 100%;
    font-size: 18px;
  }
  .header__link--button:hover {
    background-color: white;
    color: #3A5AFF;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    border-color: #3A5AFF;
  }
  .header__link:hover {
    -webkit-transition: .2s;
    transition: .2s;
    color: white;
    background-color: #3A5AFF;
  }
  .header__logo {
    width: calc( 100% - 60px);
  }
  .header__bars {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

footer .copyright {
  padding: 12px;
  text-align: center;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  background-color: white;
}

footer .dev {
  padding: 10px 12px;
  font-size: 14px;
  text-align: center;
  background-color: #0E222E;
  color: white;
}

footer .dev a {
  color: #00DD69;
  text-decoration: none;
}

main {
  padding-top: 60px;
  position: relative;
  background-image: url("../img/main_rectangle_left.svg");
  background-position: left bottom;
  background-repeat: no-repeat;
}

main .main-view {
  min-height: calc( 100vh - 130px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  padding-left: clamp(50px, 10vw, 20%);
  position: relative;
}

main .main-view__right-bg {
  position: absolute;
  z-index: -1;
  right: 0;
  width: 1260px;
}

main .main-view .middle {
  width: 100%;
  max-width: 760px;
  color: #2F281E;
}

main .main-view .middle__title {
  font-size: 74px;
  font-weight: 900;
  margin-bottom: 25px;
}

main .main-view .middle__subtitle {
  font-size: 24px;
  width: 100%;
  max-width: 560px;
  margin-bottom: 25px;
}

main .main-view .middle__button {
  font-size: 1rem;
  font-weight: 700;
  padding: 1em 4em;
  cursor: pointer;
  background-color: #3A5AFF;
  border: none;
  border-radius: 5px;
  color: white;
  margin-bottom: 25px;
  -webkit-transition: .3s background-color;
  transition: .3s background-color;
}

main .main-view .middle__button:hover {
  background-color: #2d47c9;
}

main .main-view .middle a {
  color: #3A5AFF;
  text-decoration: none;
}

main .main-view .middle__phone {
  font-size: 25px;
  font-weight: 500;
}

main .main-footer {
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
}

main .main-footer__centered {
  width: 100%;
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  grid-gap: 20px;
}

main .main-footer__item {
  font-size: 1rem;
  font-weight: 600;
  color: #2F281E;
  width: 100%;
  max-width: 250px;
  border-left: solid 4px #3A5AFF;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-left: 10px;
}

@media screen and (max-width: 800px) {
  main {
    padding: 70px 0;
  }
  main .main-view {
    padding: 30px;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }
  main .main-view .middle__title {
    font-size: clamp(30px, 10vw, 74px);
  }
  main .main-view .middle__subtitle, main .main-view .middle__phone {
    font-size: clamp(18px, 4vw, 24px);
  }
  main .main-footer__centered {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 10px;
  }
}

#services {
  background-color: #F6F6F6;
}

#services .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 80px;
  grid-column-gap: 10px;
  grid-row-gap: 30px;
}

#services .list__item {
  width: 100%;
  max-width: 220px;
  color: #2F281E;
}

#services .list__item__title {
  font-size: 22px;
  margin: 18px 0;
}

#services .list__item__description {
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
}

#opportunities .row-list {
  margin-top: 100px;
}

#opportunities .row-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
  color: #2F281E;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
}

#opportunities .row-list__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#opportunities .row-list__item__img {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#opportunities .row-list__item__img img {
  width: 100%;
  max-width: 270px;
}

#opportunities .row-list__item__text {
  width: 50%;
}

#opportunities .row-list__item__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

#opportunities .row-list__item__description {
  font-size: 24px;
  font-weight: 500;
}

@media screen and (max-width: 650px) {
  #opportunities .row-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-row-gap: 30px;
  }
  #opportunities .row-list__item__img, #opportunities .row-list__item__text {
    width: 100%;
  }
  #opportunities .row-list__item__title, #opportunities .row-list__item__description {
    text-align: center;
  }
  #opportunities .row-list__item__title {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 10px;
  }
  #opportunities .row-list__item__description {
    font-size: clamp(18px, 4vw, 24px);
  }
}

#branches .map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#branches .map svg {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-width: 1028px !important;
}

#branches .map svg path {
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

#branches .map svg path:hover {
  fill: #3A5AFF;
}

#contact {
  background-color: #3A5AFF;
}

#contact .section-body {
  max-width: 600px;
  color: white;
}

#contact .section-body a {
  color: white;
  text-decoration: underline;
}

#contact .section-body .section-title {
  color: white;
}

#contact .section-body .section-title::after {
  background-color: white;
}

#contact .section-body .form {
  margin-top: 40px;
}

#contact .section-body .form__field {
  width: 100%;
  margin-bottom: 20px;
}

#contact .section-body .form__field label {
  width: 100%;
  display: inline-block;
  font-size: 20px;
  margin-bottom: 5px;
}

#contact .section-body .form__input {
  width: 100%;
  background: none;
  border: solid 1px white;
  height: 50px;
  padding: 0 10px;
  font-size: 18px;
  color: white;
  font-family: "Montserrat", sans-serif;
}

#contact .section-body .form__input::-webkit-input-placeholder {
  color: white;
  opacity: 0.5;
}

#contact .section-body .form__input:-ms-input-placeholder {
  color: white;
  opacity: 0.5;
}

#contact .section-body .form__input::-ms-input-placeholder {
  color: white;
  opacity: 0.5;
}

#contact .section-body .form__input::placeholder {
  color: white;
  opacity: 0.5;
}

#contact .section-body .form__input--textarea {
  height: 200px;
  min-height: 150px;
  resize: vertical;
  padding: 10px !important;
}

#contact .section-body .form__input:focus {
  outline: none;
}

#contact .section-body .form__button {
  width: 100%;
  height: 50px;
  border: solid 1px white;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  -webkit-transition: .3s background-color;
  transition: .3s background-color;
}

#contact .section-body .form__button:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

#contact .section-body .form__button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

#contact .response {
  visibility: hidden !important;
  opacity: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  -webkit-transition: .4s;
  transition: .4s;
}

#contact .response.active {
  opacity: 1 !important;
  visibility: visible !important;
}

#contact .response__modal {
  padding: 30px;
  background-color: white;
  width: 100%;
  max-width: 400px;
  position: relative;
  padding-top: 70px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#contact .response__modal__icon {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #4BB543;
  border: solid 5px white;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: -50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .response__modal__icon svg {
  width: 50px !important;
  height: 50px !important;
}

#contact .response__modal__text {
  font-size: 20px;
  font-weight: 500;
  color: #2F281E;
  text-align: center;
}

#contact .response__modal__button {
  width: 100%;
  margin-top: 30px;
  padding: .8em 1em;
  background-color: #4BB543;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
  -webkit-transition: .3s;
  transition: .3s;
}

#contact .response__modal__button:hover {
  background-color: #3e9438;
}
/*# sourceMappingURL=index.css.map */