:root {
  /* Define you base variables */
  --font90: 90px;
  --font70: 70px;
  --font51: 51px;
  --font50: 50px;
  --font40: 40px;
  --font30: 30px;
  --font28: 28px;
  --font24: 24px;
  --font20: 20px;
  --font18: 18px;
  --font16: 16px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Droid Sans", sans-serif;
  background-color: #fff;
  color: #000835;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

input {
  border: none;
  outline: none;
  background: transparent;
  font-family: "Droid Sans", sans-serif;
  border-radius: 0;
}

::-moz-selection {
  background: rgba(253, 169, 42, 0.3333333333);
  color: #000;
}

::selection {
  background: rgba(253, 169, 42, 0.3333333333);
  color: #000;
}

.no_select * {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

main ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
main ul li {
  display: flex;
}

.row {
  display: flex;
}

.shadow_mobile_click {
  -webkit-tap-highlight-color: transparent;
}
.shadow_mobile_click:active {
  box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.25) !important;
}

.col {
  display: flex;
  flex-flow: column;
}

ul.menu {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 80px;
}
ul.menu li {
  font-size: var(--font18);
  font-weight: bold;
  color: #000835;
  cursor: pointer;
  text-align: center;
}
ul.menu li a {
  color: #000835;
  text-decoration: none;
}

.logo {
  font-size: var(--font40);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  margin-left: 45px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo img {
  width: 265px;
  height: 50px;
}

header {
  position: fixed;
  width: 100%;
  display: flex;
  margin-top: 20px;
  z-index: 999;
}
header .header {
  box-shadow: 0 4px 30px rgba(152, 152, 152, 0.1450980392);
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 150px;
  padding: 13px;
}
header .header .btn {
  font-family: "Source Code Pro";
}
header .header .mobile_btn {
  background-image: url(/wp-content/themes/it/assets/vacancies/images/header/menu.svg);
  width: 44px;
  height: 44px;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
  border-radius: 100%;
  transition: all 0.3s ease;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer.active {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
.drawer.active .drawer_content {
  transform: translateX(0);
}
.drawer .drawer_content {
  transform: translateX(-100%);
  transition: all 0.4s ease-out;
  background: #fff;
  width: 100%;
  max-width: 225px;
  height: 100%;
  display: flex;
  flex-flow: column;
}
.drawer .drawer_content .drawer_header {
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  padding: 0 20px;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 20px;
  align-items: center;
}
.drawer .drawer_content .drawer_header span {
  font-family: Hack;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #01124f;
}
.drawer .drawer_content .content {
  padding: 0 20px;
  border-bottom: 1px solid #F0F0F0;
}
.drawer .drawer_content .content ul {
  display: flex;
  flex-flow: column;
}
.drawer .drawer_content .content ul li {
  height: 50px;
  font-size: var(--font16);
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  border-bottom: 1px solid #C2C8FF;
  display: flex;
  align-items: center;
  line-height: 1.5;
  color: #000835;
}
.drawer .drawer_content .content ul li a {
  color: #000835;
  text-decoration: none;
}
.drawer .drawer_content .content ul li:last-child {
  border: none;
}
.drawer .drawer_content .btn {
  margin: 20px;
}
.drawer .drawer_content .close {
  background-image: url(/wp-content/themes/it/assets/vacancies/images/header/close.svg);
  border-radius: 100%;
  border: 1px solid #fda92a;
  width: 44px;
  height: 44px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}

.container {
  max-width: 1680px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.btn {
  border-radius: 150px;
  height: 59px;
  padding: 0 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 30px 0 rgba(193, 128, 30, 0.3);
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn:active {
  box-shadow: 0 4px 30px 0 rgba(193, 128, 30, 0.7);
}
.btn.main, .btn.main_with_arrow {
  background: #FDA92A;
  color: #00145B;
  font-weight: bold;
  font-size: var(--font18);
  white-space: nowrap;
}
.btn.main_with_arrow {
  height: 80px;
  padding: 0 25px;
}
.btn.rotate .arrow {
  transform: rotate(90deg);
}
.btn .arrow {
  margin-left: 10px;
  background-image: url(/wp-content/themes/it/assets/vacancies/images/main/arrow.svg);
  width: 44px;
  height: 44px;
  background-size: contain;
  background-repeat: no-repeat;
}

section.main {
  padding-top: 200px;
  height: 1080px;
  background: #D7DBFD;
  background-image: url(/wp-content/themes/it/assets/vacancies/images/main/main_purple.svg);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: bottom right;
  overflow: hidden;
}
section.main .container {
  position: relative;
}
section.main .container .illustration1 {
  position: absolute;
  top: -33px;
  right: 0;
  background-image: url(/wp-content/themes/it/assets/vacancies/images/main/main_ilustration.svg);
  width: 1250px;
  height: 871px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
}
section.main .container .illustration2 {
  position: absolute;
  bottom: 0;
  right: -138px;
  background-image: url(/wp-content/themes/it/assets/vacancies/images/main/main_ilustration2.svg);
  top: -4px;
  width: 1000px;
  height: 835px;
}
section.main .container .sunlight {
  position: absolute;
  top: 164px;
  left: 0;
  background-image: url(/wp-content/themes/it/assets/vacancies/images/main/sunlight.png);
  width: 626px;
  height: 626px;
  z-index: 0;
  rotate: 90deg;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.main .container .col {
  z-index: 2;
  position: relative;
}
section.main .container .col p {
  font-size: var(--font28);
  color: #010e3c;
  margin-top: 0;
  margin-bottom: 43px;
}
section.main h1 {
  max-width: 823px;
  margin: 0 0 23px;
  font-family: Hack;
  font-size: var(--font90);
  font-weight: bold;
  color: #01124f;
}
section.main .main_cards {
  margin-top: 112px;
  z-index: 1;
  width: 100%;
  gap: 20px;
  display: flex;
}
section.main .main_cards .card {
  box-shadow: 0 4px 30px 0 rgba(207, 207, 207, 0.25);
  background: #fff;
  border-radius: 20px 20px 20px 20px;
  width: 100%;
  height: 164px;
  position: relative;
  overflow: hidden;
  border-top-right-radius: 100px;
}
section.main .main_cards .card .circle {
  width: 30.6px;
  height: 30.6px;
  z-index: 2;
  background: #d7dbfd;
  position: absolute;
  left: 6px;
  top: 6px;
  border-radius: 100%;
}
section.main .main_cards .card .row {
  height: 100%;
  padding: 16px 44px;
  justify-content: space-between;
}
section.main .main_cards .card span {
  font-size: var(--font70);
  font-weight: bold;
  color: #f19509;
  height: 82px;
}
section.main .main_cards .card p {
  font-size: var(--font20);
  color: #0f0f0f;
  height: 23px;
  margin: 0;
  margin-top: 8px;
}
section.main .main_cards .card .col {
  width: 100%;
}
section.main .main_cards .card .img {
  position: relative;
  display: flex;
  flex: none;
  top: 28px;
  width: 129px;
  height: 88px;
}
section.main .main_cards .card .img .bg_vector {
  position: absolute;
  right: 0;
  height: 100%;
  width: 130px;
  height: 88px;
  z-index: 1;
}
section.main .main_cards .card .img .ico {
  z-index: 2;
}
section.main .main_cards .card:first-child .img .ico {
  width: 110.1px;
  height: 73px;
  position: relative;
  top: 10px;
}
section.main .main_cards .card:nth-child(2) .img .ico {
  width: 95.1px;
  height: 203px;
  position: relative;
  top: -4px;
  left: 10px;
}
section.main .main_cards .card:nth-child(3) .img .ico {
  width: 108px;
  height: 76px;
  position: relative;
  top: 11px;
}

section.about {
  overflow: hidden;
  background: #fff;
}
section.about .container {
  padding-top: 137px;
  padding-bottom: 125px;
  position: relative;
}
section.about .container .decor1 {
  background-image: url(/wp-content/themes/it/assets/vacancies/images/about/decor1.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 831.4px;
  height: 558.19px;
  right: -43px;
  top: 101px;
  z-index: 1;
}
section.about .container .decor3 {
  background-image: url(/wp-content/themes/it/assets/vacancies/images/about/decor3.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 735.79px;
  height: 494px;
  left: -110px;
  bottom: -414px;
  z-index: 1;
}
section.about .container .decor2 {
  background-image: url(/wp-content/themes/it/assets/vacancies/images/about/decor2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  width: 815.4px;
  height: 549.3px;
  left: -120px;
  bottom: -125px;
}
section.about .container .content {
  z-index: 2;
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}
section.about .container .content .hide_for_desctop {
  display: none;
}
section.about .container .content h2 {
  font-family: Hack;
  font-size: var(--font51);
  font-weight: bold;
  color: #01124f;
  margin-bottom: 77px;
}
section.about .container .content .cards_wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper {
  display: none;
  width: 100%;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper .slick-slider {
  width: 100vw;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  max-width: calc(100vw + 40px);
  margin: 0 -20px;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper .slick-slider.slick-initialized {
  opacity: 1;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper .slick-slider .slick-list {
  width: 100%;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper .slick-slider .slick-track {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper .slick-slider .slick-track .slick-slide {
  margin: 0 20px;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper .arrows_wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper .arrows_wrapper .arr {
  background: #244AD0;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper .arrows_wrapper .arr.disabled {
  background-color: transparent;
  border: 1px solid #244AD0;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper .arrows_wrapper .arr.disabled svg path {
  fill: #244AD0;
}
section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper .arrows_wrapper .arr.prev {
  transform: rotate(180deg);
}
section.about .container .content .cards_wrapper .cards {
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 47px;
}
section.about .container .content .cards_wrapper .cards .card {
  display: flex;
  padding: 31px 31px 48px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 30px 0 rgba(180, 180, 180, 0.25);
  background-color: #fff;
  gap: 20px;
}
section.about .container .content .cards_wrapper .cards .card img {
  width: 100px;
}
section.about .container .content .cards_wrapper .cards .card h3 {
  font-family: Hack;
  font-size: var(--font30);
  font-weight: bold;
  line-height: 1.4;
  color: #01124f;
  margin-bottom: 21px;
  white-space: nowrap;
}
section.about .container .content .cards_wrapper .cards .card ul {
  display: flex;
  flex-flow: column;
}
section.about .container .content .cards_wrapper .cards .card ul li {
  font-size: var(--font18);
  line-height: 1.33;
  color: #010e3c;
  margin-bottom: 26px;
  padding-left: 30px;
  background-image: url(/wp-content/themes/it/assets/vacancies/images/about/arrow.svg);
  background-repeat: no-repeat;
}
section.about .container .content .cards_wrapper .cards .card ul li:last-child {
  margin-bottom: 0;
}
section.about .container .content .resume_wrapper {
  padding: 0 113px;
  margin-top: 163px;
  position: relative;
  display: flex;
}
section.about .container .content .resume_wrapper .ilustration {
  top: -25px;
  width: 718.21px;
  height: 607.59px;
  background-image: url(/wp-content/themes/it/assets/vacancies/images/about/ilustration.svg);
  background-repeat: no-repeat;
  flex: none;
  background-size: contain;
  margin-left: 112px;
  margin-right: 70px;
  position: absolute;
  z-index: 1;
}
section.about .container .content .resume_wrapper .resume {
  display: flex;
  padding: 31px 50px 40px 0;
  border-radius: 20px;
  box-shadow: 0 4px 30px 0 rgba(180, 180, 180, 0.25);
  background-color: #fff;
  height: 558px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  flex: none;
  max-width: 1454px;
}
section.about .container .content .resume_wrapper .resume .ilustration {
  position: relative;
  top: -56px;
}
section.about .container .content .resume_wrapper .resume h2 {
  font-size: var(--font40);
  font-weight: bold;
  line-height: 1.15;
  color: #01124f;
  margin-bottom: 30px;
  max-width: 400px;
}
section.about .container .content .resume_wrapper .resume ul {
  display: flex;
  flex-flow: column;
  position: relative;
  padding-left: 13px;
}
section.about .container .content .resume_wrapper .resume ul li {
  font-size: var(--font24);
  line-height: 1.33;
  color: #010e3c;
  margin-bottom: 25px;
  position: relative;
}
section.about .container .content .resume_wrapper .resume ul li.after {
  margin-bottom: 0;
  font-size: 0;
  line-height: 0;
}
section.about .container .content .resume_wrapper .resume ul li:last-child {
  margin-bottom: 0;
}
section.about .container .content .resume_wrapper .resume ul li::before {
  content: "";
  position: absolute;
  left: -16.5px;
  top: 11px;
  width: 9px;
  height: 9px;
  background: #F19509;
  border-radius: 100%;
}
section.about .container .content .resume_wrapper .resume ul li.after::before {
  content: none;
}
section.about .container .content .resume_wrapper .resume ul .after {
  position: absolute;
  left: 0;
  top: 11px;
  width: 1px;
  background: #F19509;
  bottom: 50px;
}
section.about .container .content .resume_wrapper .resume .btn {
  margin-top: 32px;
  padding: 0 43px;
}

section.courses {
  overflow: hidden;
  background: #f3f4ff;
}
section.courses .container {
  padding-top: 138px;
  padding-bottom: 159px;
  position: relative;
}
section.courses .decor1 {
  background-image: url(/wp-content/themes/it/assets/vacancies/images/courses/decor1.svg);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  width: 486.2px;
  height: 727.5px;
  right: 27px;
  top: 101px;
  z-index: 1;
}
section.courses .decor2 {
  background-image: url(/wp-content/themes/it/assets/vacancies/images/courses/decor2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  width: 486.2px;
  height: 727.5px;
  left: -90px;
  bottom: 15px;
}
section.courses .content {
  z-index: 2;
  position: relative;
}
section.courses .content h2 {
  max-width: 906px;
  margin: 0 auto;
  font-family: Hack;
  font-size: var(--font51);
  font-weight: bold;
  text-align: center;
  color: #01124f;
  margin-bottom: 68px;
}
section.courses .content .cards_wrapper {
  position: relative;
  z-index: 1;
}
section.courses .content .cards_wrapper .cards {
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 22px;
}
section.courses .content .cards_wrapper .cards .card {
  padding: 14px 7px 14px 15px;
  border-radius: 7px;
  box-shadow: 0 4px 30px 0 rgba(180, 180, 180, 0.25);
  background-color: #fff;
  display: flex;
  gap: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}
section.courses .content .cards_wrapper .cards .card img {
  width: 243px;
  height: 100%;
  max-height: 172px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
section.courses .content .cards_wrapper .cards .card h3 {
  font-family: Hack;
  font-size: var(--font18);
  font-weight: bold;
  line-height: 1.56;
  color: #01124f;
}
section.courses .content .cards_wrapper .cards .card .hint {
  padding: 2px 16px 2px 17px;
  border-radius: 3px;
  background-color: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font16);
  font-weight: bold;
  line-height: 2;
  text-align: center;
  color: #010e3c;
  width: -moz-max-content;
  width: max-content;
  margin-top: 14px;
  margin-bottom: 13px;
}
section.courses .content .cards_wrapper .cards .card p {
  font-size: var(--font16);
  line-height: 1.63;
  color: #010e3c;
  margin-top: 0;
}
section.courses .content .cards_wrapper .hiden_cards {
  display: none;
}
section.courses .content .cards_wrapper .btn {
  padding: 0 42px;
  gap: 20px;
  z-index: 100;
  position: relative;
}
section.courses .content .row.center {
  justify-content: center;
  margin-top: 40px;
  padding: 0 43px;
}

section.faq .container {
  padding-top: 139px;
  padding-bottom: 150px;
  position: relative;
}
section.faq .container .decor1 {
  background-image: url(/wp-content/themes/it/assets/vacancies/images/faq/decor1.svg);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  width: 88px;
  height: 14px;
  right: 25px;
  top: 172px;
  z-index: 1;
}
section.faq .container .content h2 {
  font-family: Hack;
  font-size: var(--font51);
  font-weight: bold;
  text-align: center;
  color: #01124f;
}
section.faq .container .content .faq_wrapper {
  margin-top: 54px;
  display: flex;
  gap: 30px;
}
section.faq .container .content .faq_wrapper .faq_img {
  width: 679.4px;
  height: 635px;
  margin-top: 38px;
}
section.faq .container .content .faq_wrapper .faq_items {
  gap: 30px;
  display: flex;
  flex-flow: column;
  width: 100%;
}
section.faq .container .content .faq_wrapper .faq_items .item {
  border-radius: 30px;
  border: solid 1px transparent;
  transition: all 0.3s ease;
}
section.faq .container .content .faq_wrapper .faq_items .item .item_header {
  border-radius: 30px;
  border: solid 1px #244ad0;
  background-color: #fff;
  height: 86px;
  display: flex;
  padding-left: 20px;
  padding-right: 15px;
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
section.faq .container .content .faq_wrapper .faq_items .item .item_header p {
  font-family: Hack;
  font-size: var(--font20);
  font-weight: bold;
  color: #01124f;
  margin: 0;
}
section.faq .container .content .faq_wrapper .faq_items .item .item_header span {
  font-size: var(--font20);
  font-weight: bold;
  color: #d7d7d7;
  margin-right: 10px;
}
section.faq .container .content .faq_wrapper .faq_items .item .item_header .arrow {
  width: 56px;
  height: 56px;
  background-image: url(/wp-content/themes/it/assets/vacancies/images/faq/blue_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  border-radius: 100%;
  transition: all 0.3s ease;
  flex: none;
}
section.faq .container .content .faq_wrapper .faq_items .item .item_content {
  display: none;
  padding: 24px;
  border-radius: 30px;
}
section.faq .container .content .faq_wrapper .faq_items .item .item_content ul {
  display: flex;
  flex-flow: column;
}
section.faq .container .content .faq_wrapper .faq_items .item .item_content ul li {
  line-height: 1.33;
  color: #010e3c;
  margin-bottom: 26px;
  padding-left: 30px;
  background-image: url(/wp-content/themes/it/assets/vacancies/images/faq/yellow_arrow.svg);
  background-repeat: no-repeat;
  font-size: var(--font20);
  background-size: 20px;
  min-height: 20px;
  line-height: 1.2;
  color: #010e3c;
  margin-bottom: 16px;
}
section.faq .container .content .faq_wrapper .faq_items .item .item_content ul li:last-child {
  margin-bottom: 0;
}
section.faq .container .content .faq_wrapper .faq_items .item.active {
  border: solid 1px #aebffe;
}
section.faq .container .content .faq_wrapper .faq_items .item.active .item_header .arrow {
  transform: rotate(0deg);
}
section.faq .container .content .faq_wrapper .faq_items .item.active .item_content {
  display: flex;
}

section.contact {
  padding-bottom: 90px;
  overflow: hidden;
}
section.contact .card {
  padding: 50px;
  border-radius: 20px;
  background-color: #f5f6ff;
  position: relative;
  display: flex;
  gap: 40px;
}
section.contact .card .decor1 {
  position: absolute;
  bottom: 53px;
  right: 0;
  width: 550px;
  height: 416.4px;
  background-image: url(/wp-content/themes/it/assets/vacancies/images/contact/contact.svg);
  background-repeat: no-repeat;
}
section.contact .card .form_wrapper {
  width: 608px;
  padding: 19px 26px 30px 29px;
  border-radius: 20px;
  box-shadow: 0 4px 30px 0 #dee1ff;
  background-color: #fff;
  flex: none;
  display: flex;
  flex-flow: column;
}
section.contact .card .form_wrapper h4 {
  font-size: var(--font24);
  font-weight: bold;
  line-height: 2.5;
  color: #01124f;
  margin-bottom: 5px;
  font-family: "Hack";
  text-transform: uppercase;
}
section.contact .card .form_wrapper .form {
  padding: 40px;
  border-radius: 20px;
  background-color: #fcfcfc;
  display: flex;
  flex-flow: column;
}
section.contact .card .form_wrapper .form .wpcf7 form .wpcf7-response-output {
  border: none;
}
section.contact .card .form_wrapper .form form {
  display: flex;
  flex-flow: column;
}
section.contact .card .form_wrapper .form form .wpcf7-submit {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
section.contact .card .form_wrapper .form form.sent .wpcf7-response-output {
  border: none;
  color: #46b450;
}
section.contact .card .form_wrapper .form form .wpcf7-spinner,
section.contact .card .form_wrapper .form form .ajax-loader {
  margin-top: 60px;
}
section.contact .card .form_wrapper .form .wpcf7-form-control-wrap {
  margin-bottom: 36px;
}
section.contact .card .form_wrapper .form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  margin-top: 10px;
}
section.contact .card .form_wrapper .form input[type=text],
section.contact .card .form_wrapper .form input[type=email],
section.contact .card .form_wrapper .form input[type=tel] {
  border-bottom: 1px solid #C2C8FF;
  height: 37px;
  width: 100%;
  font-size: 16px;
}
section.contact .card .form_wrapper .form ::-moz-placeholder {
  font-size: var(--font18);
  color: #989898;
}
section.contact .card .form_wrapper .form ::placeholder {
  font-size: var(--font18);
  color: #989898;
}
section.contact .card .form_wrapper .form input[type=file] {
  height: 0;
  width: 0;
  opacity: 0;
}
section.contact .card .form_wrapper .form .btn {
  padding: 0 57px;
  margin-top: 30px;
  gap: 18px;
}
section.contact .card .form_wrapper .form .file_input {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font18);
  line-height: 1;
  color: #010e3c;
  cursor: pointer;
}
section.contact .card .form_wrapper .form .file_input .attachments {
  width: 44px;
  height: 44px;
  background: #F5F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
section.contact .card .info {
  display: flex;
  flex-flow: column;
  position: relative;
}
section.contact .card .info h2 {
  font-size: var(--font50);
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
  color: #01124f;
  max-width: 583px;
  margin-bottom: 12px;
  font-family: "Hack";
}
section.contact .card .info ul {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
section.contact .card .info ul li {
  font-size: var(--font20);
  line-height: 1.6;
  color: #010e3c;
  display: flex;
}
section.contact .card .info ul li p {
  margin: 0;
  font-size: var(--font20);
  line-height: 1.6;
  color: #010e3c;
}
section.contact .card .info ul li .index {
  border-radius: 5px;
  background-color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font18);
  font-weight: bold;
  line-height: 1;
  color: #8891df;
  flex: none;
  margin-right: 14px;
}

footer {
  background-color: #1d43c7;
  width: 100%;
  display: flex;
  flex-flow: column;
}
footer .logo {
  color: #fff;
  margin-left: 0;
}
footer .top {
  border-bottom: 1px solid #214ADA;
  padding: 40px 0;
}
footer .top .row {
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
footer .top .row ul li {
  color: #fff;
  font-family: "Hack";
}
footer .top .row ul li a {
  color: #fff;
  text-decoration: none;
}
footer .top .soc_icons {
  display: flex;
  gap: 15px;
}
footer .top .soc_icons a {
  background: #fff;
  border-radius: 100%;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 25px 0 #041d72;
}
footer .bottom {
  justify-content: center;
  align-items: center;
  display: flex;
}
footer .bottom .row {
  justify-content: center;
  align-items: center;
  gap: 16px;
}
footer .bottom .row ul {
  display: flex;
  gap: 16px;
}
footer .bottom .row ul li a {
  color: #fff;
  font-size: var(--font18);
  font-family: "Hack";
}
footer .bottom .footer__bottom {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #fff;
  font-size: 18px;
  padding: 20px 0;
}
footer .bottom .footer__bottom ul {
  display: flex;
  justify-content: center;
}
footer .bottom .footer__bottom ul:last-child {
  margin-top: 15px;
}

.single-blog .blog_header {
  padding-top: 150px;
  padding-bottom: 90px;
  background: #f5f5f7;
}
.single-blog .blog_header .flex_wrap {
  gap: 40px;
  display: flex;
}
.single-blog .blog_header .flex_wrap .img_wrapper {
  width: calc(50% - 40px);
  border-radius: 10px;
  overflow: hidden;
}
.single-blog .blog_header .flex_wrap .img_wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.single-blog .blog_header .flex_wrap .title_wrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: calc(50% - 20px);
}
.single-blog .blog_header .flex_wrap .title_wrap h1 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1.4px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 50px;
}
.single-blog .blog_header .flex_wrap .title_wrap a {
  text-decoration: none;
}
.single-blog .blog_header .flex_wrap .title_wrap a img {
  margin-right: 7px;
}
.single-blog .blog_header .flex_wrap .title_wrap .date {
  font-size: var(--font16);
  font-weight: 500;
  color: #6b6b6b;
  margin-bottom: 10px;
}
.single-blog .blog-content {
  padding-top: 100px;
  padding-bottom: 100px;
}

.default {
  padding-top: 150px;
  padding-bottom: 100px;
}

main {
  zoom: 90%;
}

section.main .main_cards .card p {
  font-size: 21px;
}

section.about .container .content .cards_wrapper .cards .card ul li {
  font-size: 22px;
}

section.courses .content .cards_wrapper .cards .card p {
  font-size: 20px;
}

section.courses .content .cards_wrapper .cards .card h3 {
  font-size: 22px;
}

@media (max-width: 1710px) {
  main {
    zoom: 80%;
  }
  html:has(#wpadminbar) {
    margin-top: 22px !important;
  }
  section.main .main_cards .card p {
    font-size: var(--font20);
  }
  section.main .main_cards .card p {
    font-size: var(--font18);
  }
  section.about .container .content .cards_wrapper .cards .card ul li {
    font-size: var(--font18);
  }
  section.courses .content .cards_wrapper .cards .card p {
    font-size: var(--font16);
  }
  section.courses .content .cards_wrapper .cards .card h3 {
    font-size: var(--font18);
  }
}
@media (max-width: 1470px) {
  main {
    zoom: 70%;
  }
  section.main .container .illustration1 {
    width: 1041px;
    height: 725px;
    top: inherit;
    bottom: -70px;
  }
  section.main .container .illustration2 {
    width: 833px;
    height: 696px;
    top: 46px;
    right: -84px;
  }
  section.about .container .content .cards_wrapper .cards .card h3 {
    white-space: normal;
  }
  section.courses .content .cards_wrapper .cards {
    grid-template-columns: 1fr 1fr;
  }
  section.faq .container .content .faq_wrapper .faq_img {
    width: 453px;
    height: 423px;
  }
  section.contact .card .decor1 {
    width: 366.6px;
    height: 277.6px;
    background-size: cover;
    bottom: 0;
  }
}
@media (max-width: 1200px) {
  main {
    zoom: 100%;
  }
  section.about .container .content .hide_for_desctop {
    display: flex;
    margin-top: 50px;
    z-index: 100;
    position: relative;
  }
  section.about .container .content .resume_wrapper {
    width: 100%;
  }
  section.about .container .content .resume_wrapper .ilustration {
    bottom: -90px;
    top: inherit;
    margin: 0;
    width: calc(90% - 226px);
    background-position: center;
    left: calc(113px + 5%);
  }
  section.about .container .content .resume_wrapper .resume {
    width: 100%;
    flex-flow: column-reverse;
    height: auto;
    padding-top: 40px;
    padding-left: 18px;
    padding-bottom: 0;
    padding-right: 0;
  }
  section.about .container .content .resume_wrapper .resume ul {
    padding-right: 13px;
  }
  section.about .container .content .resume_wrapper .resume .ilustration {
    top: 90px;
    width: calc(90% + 18px);
    left: calc(5% - 18px);
  }
  section.about .container .content .resume_wrapper .resume .row {
    display: none;
  }
  section.about .container .content .resume_wrapper .resume h2 {
    max-width: 500px;
  }
  :root {
    --font90: 70px;
    --font70: 32px;
  }
  ul.menu {
    gap: 30px;
    padding: 0 30px;
  }
  section.main .container .illustration1 {
    width: 694px;
    height: 483px;
  }
  section.main .container .illustration2 {
    width: 555px;
    height: 464px;
    top: 296px;
    right: -54px;
  }
  section.main .container .main_cards {
    flex-flow: column;
  }
  section.main .container .main_cards .card {
    height: 75px;
    max-width: 320px;
    border-radius: 15px;
    border-top-right-radius: 40px;
  }
  section.main .container .main_cards .card span {
    height: 37px;
  }
  section.main .container .main_cards .card p {
    margin-top: 0;
    font-size: 14px;
  }
  section.main .container .main_cards .card .row {
    padding: 9px 16px;
  }
  section.main .container .main_cards .card .circle {
    width: 11px;
    height: 11px;
  }
  section.main .container .main_cards .card .img {
    top: 0;
    width: auto;
    height: auto;
  }
  section.main .container .main_cards .card .img .bg_vector {
    width: 87.32px;
    height: 59.5px;
  }
  section.main .container .main_cards .card:first-child .img .ico {
    width: 75px;
    height: 51px;
    top: 6px;
    left: -10px;
  }
  section.main .container .main_cards .card:nth-child(2) .img .ico {
    width: 65px;
    height: 139px;
    top: 0;
    left: -10px;
  }
  section.main .container .main_cards .card:nth-child(3) .img .ico {
    width: 74px;
    height: 52px;
    top: 7px;
  }
  section.contact .card .form_wrapper {
    width: 400px;
  }
  section.contact .card .form_wrapper .form .btn {
    padding: 0 18px;
    height: 59px;
  }
  section.contact .card .form_wrapper .form {
    padding: 30px;
  }
}
@media (max-width: 1024px) {
  :root {
    --font18: 16px;
  }
  .logo {
    margin-left: 0;
  }
  footer .bottom .footer__bottom {
    font-size: 14px;
  }
  section.about .container .content .cards_wrapper .cards {
    grid-template-columns: 1fr;
  }
  section.about .container .content .resume_wrapper .ilustration {
    width: calc(90% - 215px);
    bottom: -107px;
  }
  section.about .container .content .resume_wrapper .resume .ilustration {
    top: 100px;
  }
  section.courses .content .cards_wrapper .cards .card {
    flex-flow: column;
  }
  section.courses .content .cards_wrapper .cards .card .col {
    width: 100%;
  }
  section.courses .content .cards_wrapper .cards .card img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 150px;
  }
}
@media (max-width: 768px) {
  :root {
    --font18: 16px;
    --font90: 40px;
    --font50: 28px;
    --font40: 32px;
    --font51: 28px;
    --font28: 16px;
    --font30: 20px;
    --font24: 18px;
  }
  .drawer {
    display: flex;
  }
  section.main {
    padding-top: 112px;
    height: auto;
    background-position: unset;
    background-size: cover;
    padding-bottom: 50px;
  }
  header .header {
    padding: 5px;
  }
  header .header .mobile_btn {
    display: flex;
  }
  header ul.menu {
    display: none;
  }
  header .btn {
    display: none;
  }
  header .logo {
    font-size: 28px;
  }
  .btn.main_with_arrow {
    height: 44px;
    padding: 0 9px;
    font-size: 14px;
  }
  .btn.main_with_arrow .arrow {
    height: 31px;
    width: 31px;
  }
  section.main .container .illustration1 {
    width: 463px;
    height: 322px;
  }
  section.main .container .illustration2 {
    width: 463px;
    height: 322px;
    background-size: contain;
  }
  .sunlight {
    display: none;
  }
  section.contact .card {
    flex-flow: column-reverse;
  }
  section.contact .card .decor1 {
    display: none;
  }
  section.contact .card .form_wrapper {
    width: 100%;
    padding: 20px;
  }
  section.faq .container .content .faq_wrapper .faq_img {
    display: none;
  }
  footer .top .row {
    flex-flow: column;
    align-items: center;
  }
  footer .top .row .menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  footer .top .row .menu li {
    font-size: 15px;
    text-align: left;
  }
  footer .bottom .row {
    flex-flow: column;
  }
  footer .bottom .row a {
    font-size: 14px;
  }
  section.courses .content .cards_wrapper .btn {
    padding: 0 18px;
  }
  section.contact .card .form_wrapper .form .btn {
    height: 44px;
  }
  section.about .container .content .resume_wrapper {
    padding: 0 50px;
  }
  section.about .container .content .cards_wrapper .cards .card ul li {
    margin-bottom: 15px;
  }
  section.about .container .content .resume_wrapper .ilustration {
    height: 300px;
    bottom: -43px;
    width: calc(90% - 225px);
  }
  section.about .container .content .resume_wrapper .resume .ilustration {
    top: 42px;
  }
  section.faq .container .content .faq_wrapper .faq_items .item .item_header {
    height: -moz-min-content;
    height: min-content;
    padding: 7px 5px;
    padding-left: 14px;
  }
  section.faq .container .content .faq_wrapper .faq_items .item .item_header .arrow {
    height: 44px;
    width: 44px;
  }
}
@media (max-width: 500px) {
  :root {
    --font18: 16px;
    --font90: 32px;
    --font28: 16px;
    --font51: 24px;
    --font40: 24px;
  }
  .logo img {
    height: 37px;
    width: auto;
  }
  section.main {
    padding-top: 89px;
    background-image: url(/wp-content/themes/it/assets/vacancies/images/main/main_purple_mobile.svg);
    background-position: unset;
    background-size: cover;
  }
  section.main h1 {
    line-height: 1.13;
    max-width: 320px;
    margin-bottom: 8px;
  }
  section.main .container .illustration1 {
    width: 264.46px;
    height: 208.4px;
    bottom: 225px;
    left: 28px;
  }
  section.main .container .illustration2 {
    width: calc(100% - 40px);
    background-repeat: no-repeat;
    background-size: cover;
    height: 266.76px;
    left: 19px;
    top: 212px;
  }
  section.main .container .main_cards {
    margin-top: 179px;
  }
  section.main .container .main_cards .card {
    max-width: 100%;
  }
  section.main .container .col p {
    margin-bottom: 16px;
  }
  section.about .container {
    padding-top: 35px;
    padding-bottom: 85px;
  }
  section.about .container .content h2 {
    margin-bottom: 0;
  }
  section.about .container .content .cards_wrapper .cards {
    display: none;
  }
  section.about .container .content .cards_wrapper .cards.mobile_cards_slider {
    display: flex;
  }
  section.about .container .content .cards_wrapper .cards .card {
    flex-flow: column;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 5px;
    gap: 7px;
  }
  section.about .container .content .cards_wrapper .cards .card img {
    width: 50px;
    height: 50px;
  }
  section.about .container .content .cards_wrapper .cards .card h3 {
    margin-bottom: 12px;
  }
  section.about .container .content .resume_wrapper {
    padding: 0;
    margin-top: 60px;
  }
  section.about .container .content .resume_wrapper .resume ul li {
    margin-bottom: 10px;
    font-size: 15px;
  }
  section.about .container .decor1,
  section.about .container .decor2,
  section.about .container .decor3 {
    display: none;
  }
  section.about .container .content .resume_wrapper .resume .ilustration {
    width: 200px;
    left: 44px;
    height: 163px;
    top: 23px;
  }
  section.about .container .content .resume_wrapper .ilustration {
    width: 200px;
    left: 61px;
    height: 163px;
    bottom: -23px;
  }
  section.courses .content .cards_wrapper .cards .card {
    padding: 5px;
  }
  section.courses .container {
    padding-top: 50px;
    padding-bottom: 38px;
  }
  section.courses .content .cards_wrapper .cards {
    grid-template-columns: 1fr;
  }
  section.courses .decor1 {
    display: none;
  }
  section.courses .decor2 {
    display: none;
  }
  section.courses .content h2 {
    margin-bottom: 12px;
  }
  section.courses .content .cards_wrapper .cards .card .col:last-child {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
  section.courses .content .cards_wrapper .cards .card h3 {
    font-size: 15px;
  }
  section.courses .content .cards_wrapper .cards .card .hint {
    margin-top: 5px;
    margin-bottom: 9px;
    font-size: 14px;
  }
  section.courses .content .cards_wrapper .cards .card p {
    margin: 0;
  }
  section.courses .content .row.center {
    margin-top: 20px;
  }
  section.faq .container {
    padding-top: 63px;
    padding-bottom: 40px;
  }
  section.faq .container .content .faq_wrapper {
    margin-top: 14px;
  }
  section.faq .container .content .faq_wrapper .faq_items .item .item_header p {
    font-size: 15px;
  }
  section.faq .container .content .faq_wrapper .faq_items .item .item_header span {
    font-size: 14px;
  }
  section.faq .container .content .faq_wrapper .faq_items .item .item_content ul li {
    font-size: 15px;
    margin-bottom: 9px;
  }
  section.faq .container .decor1 {
    display: none;
  }
  section.faq .container .content .faq_wrapper .faq_items {
    gap: 15px;
  }
  section.contact .card {
    padding: 20px 15px;
  }
  section.contact .card .info h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  section.contact .card .info ul li .index {
    width: 26px;
    height: 26px;
    font-size: 14px;
    margin-right: 10px;
  }
  section.contact .card .info ul li p {
    font-size: 16px;
    line-height: 20px;
  }
  section.contact .card {
    gap: 20px;
  }
  section.contact .card .form_wrapper h4 {
    font-size: 18px;
    line-height: 1.33;
    padding-left: 14px;
    padding-top: 5px;
  }
  section.contact .card .form_wrapper {
    padding: 10px;
  }
  section.contact .card .form_wrapper .form {
    padding: 20px;
  }
  section.contact .card .form_wrapper .form input[type=text]::-moz-placeholder {
    font-size: 14px;
    color: #989898;
  }
  section.contact .card .form_wrapper .form input[type=text]::placeholder {
    font-size: 14px;
    color: #989898;
  }
  section.contact .card .form_wrapper .form input[type=text] {
    height: 25px;
  }
  section.contact .card .form_wrapper .form .file_input .attachments {
    height: 33px;
    width: 33px;
  }
  section.contact .card .form_wrapper .form .file_input .attachments img {
    width: 19px;
    height: 19px;
  }
  section.contact .card .form_wrapper .form .row {
    justify-content: center;
  }
  section.contact .card .form_wrapper .form .btn {
    margin-top: 20px;
    padding: 0 10px;
  }
  section.contact {
    padding-bottom: 40px;
  }
  footer .top {
    padding-top: 14px;
    padding-bottom: 20px;
  }
  footer .top .row .menu {
    gap: 17px;
  }
  section.about .container .content .cards_wrapper .mobile_cards_slider_wrapper {
    display: block;
  }
  .wpcf7-spinner {
    margin-top: 30px;
  }
}/*# sourceMappingURL=main.css.map */