@font-face {
    font-family: 'Oswald';
    src: local('Oswald Ligth'), local('Oswald-Light'),
        url(../fonts/Oswald-Light.woff2) format('woff2'),
        url(../fonts/Oswald-Light.woff) format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: local('Oswald Regular'), local('Oswald-Regular'),
        url(../fonts/Oswald-Regular.woff2) format('woff2'),
        url(../fonts/Oswald-Regular.woff) format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: local('Oswald Medium'), local('Oswald-Medium'),
        url(../fonts/Oswald-Medium.woff2) format('woff2'),
        url(../fonts/Oswald-Medium.woff) format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: local('Oswald Bold'), local('Oswald-Bold'),
        url(../fonts/Oswald-Bold.woff2) format('woff2'),
        url(../fonts/Oswald-Bold.woff) format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
  font-family: 'Affect';
  src: local('Affect Ligth'), local('Affect-Light'),
      url(../fonts/Affect-Light.woff) format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Affect';
  src: local('Affect Regular'), local('Affect-Regular'),
      url(../fonts/Affect-Regular.woff) format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Affect';
  src: local('Affect Bold'), local('Affect-Bold'),
      url(../fonts/Affect-Bold.woff) format('woff');
  font-weight: 700;
  font-style: normal;
}

:root {
    --main-color: #085ab8;
    --add-color: #6AA2D8;
    --elements-color: #FFACC6;
    --title-color: #d95595;
}

*, html {
    box-sizing: border-box;
  }
  
  a
  {
    color: inherit;
    text-decoration: none;
  }
  
  h1, h2, h3, p {
    margin: 0;
  }
  
  img {
    max-width: 100%;
  }
  
  .list_reset {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .btn_reset {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }

  body {
    font-family: 'roboto';
  }
  
  .container {
    max-width: 1620px;
    padding: 0 100px;
    margin: 0 auto;
  }

  .logo {
    max-width: 300px;
  }

  .header {
    padding: 25px 0;
  }

  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header__list {
    display: flex;
  }

  .header__item {
    font-family: 'Affect';
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    color: var(--main-color);
  }

  .header__item:not(:last-child) {
    margin-right: 60px;
  }

  .header__link:focus {
    background: var(--elements-color);
    border-bottom: 2px solid var(--main-color);
    transition: 0.3s;
  }
    
  .header__link:hover {
    color: var(--add-color);
    background: none;
    transition: 0.5s;
  }
    
  .header__link:active {
    color: var(--title-color);
    background: none;
    border: none;
    transition: 0.5s;
  }

  .hero__conteiner {
    padding-top: 60px;
    padding-bottom: 60px;
    background: url(../img/hero.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
  }

  .hero {
    background-color:var(--main-color);
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 60%;
  }

  .hero__title {
    margin-bottom: 7px;
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 44px;
    line-height: 100%;
    color: #fff;
  }

  .hero__subtitle {
    margin-bottom: 20px;
    font-family: 'Oswald';
    font-weight: 600;
    font-size: 26px;
    line-height: 150%;
    color: var(--elements-color);
  }

  .hero__desc {
    margin-bottom: 20px;
    font-family: 'affect';
    font-weight: 300;
    font-size: 19px;
    line-height: 150%;
    color: #fff;
  }

  .hero__btn {
    padding: 25px 54px;
    font-family: 'Affect';
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: var(--main-color);
    background: #FFACC6;
    border: 2px solid var(--elements-color);
    border-radius: 40px;
  }

  .hero__btn:focus {
    background: #FFACC6;
    color: var(--main-color);
    transition: 0.3s;
  }
    
  .hero__btn:hover {
    background: var(--add-color);
    color: #fff;
    border: 2px solid var(--add-color);
    transition: 0.6s;
  }
    
  .hero__btn:active {
    background: var(--main-color);
    color:var(--elements-color);
    border: 2px solid var(--elements-color);
    transition: 0.6s;
  }

  .about {
    padding: 80px 0;
  }

  .about__title {
    margin-bottom: 50px;
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: var(--main-color);
  }

  .about__top {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    margin-bottom: 60px;
  }

  .about__part1 {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 35px;
    padding-right: 35px;
    border-radius: 45px;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  }

  .about_picture {
    max-width: 30%;
    margin-right: 30px;
  }

  .about__info {
    font-family: 'affect';
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
  }

  .about__info:not(:last-child) {
    margin-bottom: 20px;
  }

  .about__info1 {
    font-weight: 400;
    font-size: 20px;
  }

  .about__info2 {
    margin-bottom: 40px;
    font-family: 'affect';
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    font-weight: 400;
    font-size: 20px;
  }

  .about__subtitle {
    margin-bottom: 30px;
    font-family: 'Affect';
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    color: var(--main-color);
  }

  .about_btn {
    padding: 12px 56px;
    max-width: 370px;
    font-family: 'Affect';
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #ffffff;
    background-color:var(--title-color);
    border-radius: 40px;
  }


  .about_btn:focus {
    background: #6AA2D8;
    transition: 0.3s;
  }
    
  .about_btn:hover {
    background: #FFACC6;
    color:#fff;
    transition: 0.6s;
  }
    
  .about_btn:active {
    background: var(--main-color);
    transition: 0.6s;
  }

  .about__list {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .about__item {
    display: flex;
  }
  
  .about__card {
    padding-top: 70px;
    padding-bottom: 30px;
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: top 15px center;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  }

  .about__card1 {
    margin-bottom: 30px;
    background-image: url(../img/about1.png);
  }

  .about__card2 {
    margin-bottom: 30px;
    background-image: url(../img/about2.png);
  }

  .about__card3 {
    margin-bottom: 30px;
    background-image: url(../img/about3.png);
  }

  .about__card4 {
    margin-bottom: 30px;
    background-image: url(../img/about4.png);
  }

  .about__card5 {
    background-image: url(../img/about5.png);
  }

  .about__card6 {
    background-image: url(../img/about6.png);
  }

  .about__card7 {
    background-image: url(../img/about7.png);
  }

  .about__card8 {
    background-image: url(../img/about8.png);
  } 

  .about__card__name {
    margin-bottom: 20px;
    font-family: 'affect';
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
  }

  .about__card__desc {
    font-family: 'affect';
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
  }

  .about__link {
    display: none;
  }

  .vacancies {
    padding: 80px 0;
    background-color: var(--main-color);
  }

 .vacancies__conteiner {
    display: flex;
  }

  .vacancies__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 40px;
  }

  .vacancies__title {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: #fff;
  }

  .vacancies__list {
    margin-left: -15px;
    margin-right: -15px;
  }

  .vacancies__item {
    display: flex;
  }

  .vacancies__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-top: 300px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 40px;
    background-repeat: no-repeat;
    background-size: 100%;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  }

  .vacancies__card1 {
    background-image: url(../img/vac1.png);
  }

  .vacancies__card2 {
    background-image: url(../img/vac2.png);
  }

  .vacancies__card3 {
    background-image: url(../img/vac3.png);
  }

  .vacancies__card4 {
    background-image: url(../img/vac4.png);
  }

  .vacancies__name {
    margin-bottom: 16px;
    font-family: 'Affect';
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    color: var(--main-color);
  }

  .vacancies__desc {
    height: 40%;
    margin-bottom: 18px;
    font-family: 'Affect';
    font-size: 16px;
    line-height: 100%;
  }

  .vacancies__sal {
    margin-bottom: 6px;
    font-family: 'Affect';
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
  }

  .vacancies__tot {
    margin-bottom: 30px;
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 30px;
    line-height: 100%;
    color: #d95595;
  }

  .vacancies__btn {
    padding: 12px 56px;
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 77px;
  }

  .vacancies__btn:focus {
    background: #6AA2D8;
    transition: 0.3s;
  }
    
  .vacancies__btn:hover {
    background: #FFACC6;
    transition: 0.6s;
  }
    
  .vacancies__btn:active {
    background: #d95595;
    color: #fff;
    transition: 0.6s;
  }

  .faq {
    padding: 80px 0;
  }

  .faq__title {
    margin-bottom: 35px;
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: var(--main-color);
  }

  .faq__card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-radius: 30px;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    background-image: url(../img/arrow.png);
    background-repeat: no-repeat;
    background-position: center left 27%;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 25px;
  }

  .faq__quest {
    max-width: 25%;
    font-family: 'Affect';
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: var(--main-color);
  }

  .faq__answer {
    width: 70%;
    font-family: 'Affect';
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
  }

  .faq__link {
    color: var(--main-color);
  }

  .faq__link:focus {
    background: #FFACC6;
  }
    
  .faq__link:hover {
    color: #6AA2D8;
    background: none;
    transition: 0.5s;
  }
    
  .faq__link:active {
    color: var(--main-color);
    background: #FFACC6;
    transition: 0.5s;
  }

  .contacts {  
    background-color: var(--main-color);
  } 

  .contacts__conteiner {
    padding-top: 80px;
    padding-bottom: 80px;
    background: url(../img/contacts.png); 
    background-position: bottom right;
    background-size: 30%;
    background-repeat: no-repeat;
  }

  .contacts__title {
    margin-bottom: 35px;
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    color: #fff;
  }

  .contacts__blocks {
    display: flex;
    flex-direction: column;
  }

 .contacts__left {
    align-self: center;
     /*margin-right: 50px;
    
    padding: 50px 30px;
    max-width: 670px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2); */
  } 

  .contacts__right {
    max-width: 55%;
    margin-bottom: 30px;
  }

  .contacts_btn {
    padding: 20px 56px;
    max-width: 500px;
    font-family: 'Affect';
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff;
    background-color:var(--title-color);
    border-radius: 40px;
  }

  .contacts_btn:focus {
    background: #6AA2D8;
    transition: 0.3s;
  }
    
  .contacts_btn:hover {
    background: #FFACC6;
    color:#fff;
    transition: 0.6s;
  }
    
  .contacts_btn:active {
    background: #fff;
    color: var(--main-color);
    transition: 0.6s;
  }

  .contacts__subtitle {
    margin-bottom: 20px;
    font-family: 'Affect';
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    color: #fff;
  }

  .contacts__desc {
    font-family: 'Affect';
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #fff;
  }

  .contacts__desc:not(:last-child) {
    margin-bottom: 10px;
  }

  .contacts__link {
    font-family: 'Affect';
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: var(--title-color);
  }

  .contacts__link:focus {
    background: #FFACC6;
  }
    
  .contacts__link:hover {
    color: #6AA2D8;
    background: none;
    transition: 0.5s;
  }
    
  .contacts__link:active {
    color: var(--main-color);
    background: #FFACC6;
    transition: 0.5s;
  }

  .form__title {
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Affect';
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    color: var(--main-color);
  }

  .form__input {
    margin-bottom: 30px;
    width: 100%;
    padding: 25px 32px;
    border: solid 1px var(--main-color);
    border-radius: 30px;
    resize: none;
    font-family: 'Affect';
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
  }

  .form__textarea {
    margin-bottom: 30px;
    width: 100%;
    padding: 30px 32px;
    border: solid 1px var(--main-color);
    border-radius: 30px;
    resize: none;
    font-family: 'Affect';
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
  }

  .form__btn {
    margin-bottom: 30px;
    display: block;
    padding: 25px 54px;
    border-radius: 40px;
    font-family: 'Affect';
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    background-color: var(--main-color);
  }

  .form__btn:focus {
    background: #d95595;
    color: var(--add-color);
    transition: 0.3s;
  }
    
  .form__btn:hover {
    background: #6AA2D8;
    color:#fff;
    transition: 0.6s;
  }
    
  .form__btn:active {
    background: #FFACC6;
    color:var(--main-color);
    transition: 0.6s;
  }

  .form-check-text {
    padding-left: 8px;
    font-family: 'affect';
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
  }

  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background-color: var(--add-color);
  }

  .footer__logo {
    margin-bottom: 20px;
  }

  .footer__socialbox {
    display: flex;
    justify-content: center;
  }

  .footer__social:not(:last-child) {
    margin-right: 20px;
  }

  .footer__icon {
    transition: 0.8s;
  }

  .footer__icon:hover {
    transform: scale(1.5);
  }

















  
 