@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Rubik-Bold.woff2") format("woff2");
  src: url("../fonts/Rubik-Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Rubik-Light.woff2") format("woff2");
  src: url("../fonts/Rubik-Light.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Rubik-Regular.woff2") format("woff2");
  src: url("../fonts/Rubik-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Rubik-SemiBold.woff2") format("woff2");
  src: url("../fonts/Rubik-SemiBold.woff") format("woff");
  font-display: swap;
}

html {
  height: 100%;
}

.page {
  height: 100%;
  font-family: "Rubik", sans-serif;
}

body {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-width: 1600px;
  font-size: 12px;
  line-height: 15px;
  color: #000000;
  background-color: #ffffff;
  font-weight: 400;
}

@media (width >= 768px) {
body {
  font-size: 20px;
  line-height: 24px;
  } 
}

@media (width >= 1280px) {
body {
  font-size: 25px;
  line-height: 30px;
  }
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

.shadow {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

h1 {
  padding: 0;
  margin: 0;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  color: #ffffff;
}

@media (width >= 768px) {
  h1 {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 32px;
  }
}

@media (width >= 1280px) {
  h1 {
    font-size: 60px;
    line-height: 78px;
  }
}

h2 {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}

@media (width >= 768px) {
  h2 {
    margin-bottom: 50px;
    font-size: 30px;
    line-height: 40px;

  }
}

@media (width >= 1280px) {
  h2 {
    margin-bottom: 60px;
    font-size: 36px;
    line-height: 44px;
  }
}

h3 {
  padding: 30px 16px 12px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}

@media (width >= 768px) {
  h3 {
    padding: 68px 240px 32px;
    font-size: 26px;
    line-height: 34px;
  }
}

@media (width >= 1280px) {
  h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 30px;
  font-family: inherit;
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background-color: #DB0914;
  text-decoration: none;
  border-radius: 40px;
  height: 50px;
  width: 280px;
  mix-blend-mode: normal;
  border: none;
  cursor: pointer;
}

@media (width >= 768px) {
.button {
  margin-top: 50px;
  height: 60px;
  font-size: 14px;
  line-height: 20px;
  }
}

@media (width >= 1280px) {
  .button {
    margin-top: 60px;
  }
}

.button:hover {
  background-color: #67C18C;
}

.button-wrapper {
  display: flex;
  text-align: center;
  justify-content: center;

}

:root {
  scroll-behavior: smooth;
}

/* Header */
/* Burger-menu */
@media (width >= 768px) {
  .logo {
    width: 140px;
    height: 37px;
  }
}

@media (width >= 1280px) {
  .logo {
    width: 180px;
    height: 42px;
  }
}

.burger-toggle {
  display: block;
  width: 22px;
  height: 22px;
  background-image: url("../img/burger.svg");
  background-repeat: no-repeat;
}

.burger-toggle:hover {
  opacity: 0.6;
}

.burger-toggle:active {
  opacity: 0.3;
}

@media (width < 768px) {
  .main-nav-toggle[aria-expanded="true"] + .main-nav-list {
    translate: 0 100%;
  }

  .main-nav-toggle[aria-expanded="true"] .burger-toggle {
    background-image: url("../img/icon-cross.svg");
  }

  .main-nav-enabled {
    position: relative;
    display: grid;
  }

  .main-nav-enabled .main-nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    transition: translate 0.3s ease-in-out;
    z-index: 10;
    top: -280px;
    padding: 0;
    margin: 0;
  }
}

.main-nav-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: #E6F4FF;
  text-transform: uppercase;
  list-style: none;
  width: 100%;
  text-align: center;
}

@media (width >= 768px) {
  .main-nav-list {
    flex-direction: row;
    background-color: #ffffff;
    text-transform: none;
    align-items: center;
  }
}

.main-nav-toggle {
  top: -44px;
  position: absolute;
  border: none;
  background-color: transparent;
  justify-self: end;
  cursor: pointer;
  z-index: 11;
  padding: 6px 20px;
}

.main-nav-link {
  display: flex;
  justify-content: center;
  padding: 15px 20px 15px;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  font-family: inherit;
}

@media (width >= 768px) {
  .main-nav-link {
    font-weight: 300;
  }
}

.main-nav-link:hover {
  color: #67C18C;
}

.main-nav-item {
  box-shadow: 0 1px 0 rgba(1,1,1,.2), inset 0 1px 0 rgba(255,255,255,.2);
}

@media (width >= 768px) {
  .main-nav-item {
    box-shadow: none;
  }
}

.main-nav-item::before {
  content: none;
}

.main-nav-phone-adress {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
}

.adress-phone {
  text-decoration: none;
  font-style: normal;
  color: #000000;
  font-family: "Rubik", sans-serif;
}

.main-nav-phone {
  padding: 15px 20px 15px;
}

.page-header-container {
  padding: 13px 20px;
  display: flex;
  align-items: center;
}

@media (width >= 768px) {
  .page-header {
   display: flex;
   justify-content: space-between;
   padding: 0 20px;
  }
}

@media (width >= 1440px) {
  .page-header {
   padding: 0 60px;
  }
}

/* Main */
.hero {
  text-align: center;
  padding: 0;
  padding-bottom: 50px;
  background-image: url("../img/hero-mobile.jpg");
  background-color: #004C72;
  background-size: cover;
  position: relative;

  @media (resolution >= 2dppx) {
    background-image: url("../img/hero-mobile@2x.jpg");
  }
}

@media (width >= 768px) {
  .hero {
    padding-bottom: 70px;

    @media (resolution >= 2dppx) {
      background-image: url("../img/hero-tablet@2x.jpg");
    }
  }
}

@media (width >= 1280px) {
  .hero {
    padding-bottom: 95px;

    @media (resolution >= 2dppx) {
      background-image: url("../img/hero-desktop@2x.jpg");
    }
  }
}

.hero-main {
  padding: 47px 20px 0;
}

@media (width >= 768px) {
  .hero-main {
    padding: 69px 84px 0;
  }
}

@media (width >= 1280px) {
  .hero-main {
    padding: 95px 190px 0;
  }
}

.hero-card {
  background-color: #ffffff;
}

@media (width >= 1280px) {
  .hero-card {
    margin: 0 30px;
    border-radius: 20px;
  }
}

@media (width >= 1440px) {
  .hero-card {
    margin: 0 110px;
  }
}

.main-description {
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  color: #ffffff;
}

@media (width >= 768px) {
  .main-description {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (width >= 1280px) {
  .main-description {
    font-size: 20px;
    line-height: 28px;
  }
}

.main-item-description {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  margin: 0;
}

@media (width >= 768px) {
  .main-item-description {
    font-size: 18px;
    line-height: 24px;
    
  }
}

@media (width >= 1280px) {
  .main-item-description {
    font-size: 20px;
    line-height: 26px;
  }
}

.main-item-text {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}

@media (width >= 768px) {
  .main-item-text {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (width >= 1280px) {
  .main-item-text {
    font-size: 20px;
    line-height: 26px;
  }
}

.main-list {
  margin: 0;
  padding: 0 20px 30px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  list-style: none;
}

@media (width >= 768px) {
  .main-list {
    flex-direction: row;
  }
}

.main-item {
  border: 3px solid #000000;
  border-radius: 20px;
  padding: 30px 10px 90px;
}

@media (width >= 768px) {
  .main-item {
    padding: 30px 54px 54px 20px;
    text-align: left;
  }
}

@media (width >= 1280px) {
  .main-item {
    padding: 53px 120px 53px 20px;
  }
}

.main-item-audience {
  background-image: url("../img/main-item-audience.svg");
  background-repeat: no-repeat;
  background-size: 50px 50px;
  background-position: center bottom 20px;
}

@media (width >= 768px) {
  .main-item-audience {
    background-size: 64px 64px;
    background-position: bottom 20px right 15px;
  }
}

@media (width >= 1280px) {
  .main-item-audience {
    background-size: 108px 108px;
  }
}

.main-item-startup {
  background-image: url("../img/main-item-startup.svg");
  background-repeat: no-repeat;
  background-size: 50px 56px;
  background-position: center bottom 20px;
}

@media (width >= 768px) {
  .main-item-startup {
    background-size: 64px 70px;
    background-position: bottom 20px right 15px;
  }
}

@media (width >= 1280px) {
  .main-item-startup {
    background-size: 108px 114px;
  }
}

/* Block-1 */
.experts {
  background-color: #E6F4FF;
}

.experts-image {
  text-align: center;
  margin-top: 30px;
}

@media (width >= 768px) {
  .experts-image svg {
    width: 330px;
    height: 261px;
  }
}

@media (width >= 1280px) {
  .experts-image svg {
    width: 490px;
    height: 394px;
  }
}

@media (width >= 768px) {
  .experts-wrapper {
    display: flex;
  }
}

.padding-block {
  padding: 30px 20px;
}

@media (width >= 768px) {
  .padding-block {
    padding: 70px 20px;
  }
}

@media (width >= 1280px) {
  .padding-block {
    padding: 100px 60px;
  }
}

@media (width >= 1440px) {
  .padding-block {
    padding: 100px 110px;
  }
}

@media (width >= 1440px) {
  .padding-block {
    padding: 100px 110px;
  }
}

@media (width >= 768px) {
  .experts-item {
  padding: 8px 27px;
  }
}

.experts-item-text {
  font-size: 14px;
  line-height: 20px;
}

@media (width >= 768px) {
  .experts-item-text {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (width >= 1280px) {
  .experts-item-text {
    font-size: 22px;
    line-height: 30px;
  }
}

.experts-item-checkmark {
  background-image: url("../img/checkmark.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding-left: 30px;
}

@media (width >= 768px) {
  .experts-item-checkmark  {
    background-size: 40px 40px;
    padding-left: 55px;
  }
}

.experts-list {
  margin: 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.button-main {
  margin-top: 12px;
  margin-bottom: 32px;
}

@media (width >= 768px) {
  .button-main {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}

@media (width >= 1280px) {
  .button-main {
    margin-top: 32px;
    margin-bottom: 53px;
  }
}

/* Block-2 */
.our-team-list {
  margin: 0;
}

@media (width >= 768px) {
  .our-team-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (width >= 1280px) {
  .our-team-list {
    display: flex;
    flex-direction: row;
  }
}

.our-team-item {
  padding: 30px 100px 30px 20px;
  box-shadow: 4px 4px 25px rgba(27, 92, 251, 0.1);
  border-radius: 8px;
}

@media (width >= 1280px) {
  .our-team-item {
    padding: 30px 83px 30px 20px;
    width: 380px;
  }
}

.our-team-item-doc {
  background-image: url("../img/our-team-item-doc.svg");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: center right 20px;
}

@media (width >= 768px) {
  .our-team-item-doc {
    background-size: 60px 60px;
  }
}

@media (width >= 1280px) {
  .our-team-item-doc {
    background-position: top 20px right 20px
  }
}

.our-team-item-lamp {
  background-image: url("../img/our-team-item-lamp.svg");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: center right 20px;
}

@media (width >= 768px) {
  .our-team-item-lamp {
    background-size: 60px 60px;
  }
}

@media (width >= 1280px) {
  .our-team-item-lamp {
    background-position: top 20px right 20px
  }
}

.our-team-item-calendar {
  background-image: url("../img/our-team-item-calendar.svg");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: center right 20px;
}

@media (width >= 768px) {
  .our-team-item-calendar {
    background-size: 60px 60px;
  }
}

@media (width >= 1280px) {
  .our-team-item-calendar {
    background-position: top 20px right 20px
  }
}

.our-team-item-text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: #012D52;
}

@media (width >= 768px) {
  .our-team-item-text {
    font-size: 22px;
    line-height: 30px;
  }
}


/* Block-3 */
.consultation {
  padding: 30px 20px;
  background-color: #012D52 ;
}

@media (width >= 768px) {
  .consultation {
    padding: 70px 42px;
  }
}

@media (width >= 1280px) {
  .consultation {
    padding: 70px 60px;
  }
}

.consultation-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  border: 5px double white;
  padding: 35px 10px;
  margin: 0;
}

@media (width >= 768px) {
  .consultation-text {
    padding: 35px 38px;
    font-size: 26px;
    line-height: 36px;
  }
}

@media (width >= 1280px) {
  .consultation-text {
    padding: 72px 143px;
    line-height: 40px;
  }
}

/* Block-4 */
.interaction-item-text {
  min-width: 240px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  padding: 0 90px 0 0;
}

@media (width >= 768px) {
  .interaction-item-text {
    font-size: 20px;
    line-height: 26px;
    padding: 0;
  }
}

@media (width >= 1280px) {
  .interaction-item-text {
    font-size: 22px;
    line-height: 30px;
  }
}

.interaction-item {
  display: flex;
  align-items: center;
}

@media (width >= 768px) {
  .interaction-item  {
    margin: 0 0px 0 40px;
  }
}

.interaction-number {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #E6F4FF;
  color: #012D52;
  font-size: 20px;
  font-weight: 600;
  line-height: 18px;
  border-radius: 50%;
  justify-content: center;
}

@media (width >= 768px) {
  .interaction-number  {
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 40px;
    
  }
}

.interaction-list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

@media (width >= 768px) {
  .interaction-list  {
    gap: 40px;
    
  }
}

.number {
  margin-right: 10px;
}

.interaction-image {
  margin-top: 30px;
  text-align: center;
}

@media (width >= 768px) {
  .interaction-image svg {
    width: 368px;
    height: 386px;
  }
}

@media (width >= 1280px) {
  .interaction-image svg {
    margin-top: 0;
    width: 490px;
    height: 520px;
  }
}

@media (width >= 768px) {
  .interaction-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}

/* Block-5 */ 
.audit-results {
  padding: 0 20px 30px;
}

.audit-results-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media (width >= 768px) {
  .audit-results-list {
    flex-direction: row;
    justify-content: center;
  }
}

.audit-results-item {
  padding: 60px 20px 30px;
}

@media (width >= 768px) {
  .audit-results-item {
    padding: 130px 20px 0;
    width: 230px;
  }
}

@media (width >= 1280px) {
  .audit-results-item {
    width: 380px;
    padding: 130px 20px 0;
  }
}

.audit-results-paper {
  background-image: url("../img/audit-1.svg");
  background-repeat: no-repeat;
  background-size: 60px 60px;
  background-position: center top;
}

@media (width >= 768px) {
  .audit-results-paper {
    background-size: 120px 120px;
  }
}

.audit-results-search {
  background-image: url("../img/audit-2.svg");
  background-repeat: no-repeat;
  background-size: 60px 60px;
  background-position: center top;
}

@media (width >= 768px) {
  .audit-results-search {
    background-size: 120px 120px;
  }
}

.audit-results-rocket {
  background-image: url("../img/audit-3.svg");
  background-repeat: no-repeat;
  background-size: 60px 60px;
  background-position: center top;
}

@media (width >= 768px) {
  .audit-results-rocket {
    background-size: 120px 120px;
  }
}

.audit-results-item-text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: #000000;
}

@media (width >= 768px) {
  .audit-results-item-text {
    font-size: 20px;
    line-height: 28px;
  }
}

/* Block-6 */ 
.for-whom {
  background-color: #E6F4FF;
}

.for-whom-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 10px;
  margin-bottom: 10px;
}

@media (width >= 1280px) {
  .for-whom-list  {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px 20px;
  }
}

@media (width >= 1440px) {
  .for-whom-list  {
    flex-direction: row;
  }
}

.for-whom-item {
  padding: 32px 80px 32px 20px;
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 4px 4px 25px rgba(27, 92, 251, 0.1);
  counter-increment: my-awesome-counter;
}

@media (width >= 1280px) {
  .for-whom-item  {
    width: 280px;
  }
}

@media (width >= 1440px) {
  .for-whom-item  {
    width: 300px;
  }
}

.for-whom-item::before {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  content: counter(my-awesome-counter);
  background-color: #012D52;
  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 18px;
  border-radius: 50%;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 35px;
}

.for-whom-item-description {
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  color: #012D52;
}

@media (width >= 768px) {
  .for-whom-item-description {
    font-size: 22px;
    line-height: 30px;
  }
}

.for-whom-item-text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  color: #000000;
}

@media (width >= 768px) {
  .for-whom-item-text {
    font-size: 18px;
    line-height: 24px;
  }
}

/* Block-7 */ 
.form {
  margin: 30px 20px;
  padding: 40px 20px;
  border: 4px solid #000000;
  border-radius: 8px;
}

@media (width >= 768px) {
  .form {
    width: 608px;
    padding: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}

.form-title {
  margin-bottom: 9px;
}

@media (width >= 768px) {
  .form-title {
    margin-bottom: 20px;
  }
}

.form-description {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  text-align: center;
  padding: 0 30px;
}

@media (width >= 768px) {
  .form-description {
    font-size: 22px;
    line-height: 34px;
  }
}

.mail-form {
  margin-top: 40px;
}

.text-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 17px;
}

.text-field-label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 22px;
}

@media (width >= 768px) {
  .text-field-label {
    font-size: 20px;
    line-height: 30px;
  }
}

.text-field-input {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid #D1D1D1;
  border-radius: 8px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (width >= 768px) {
  .text-field-input {
    font-size: 18px;
    line-height: 34px;
  }
}

input:hover,
input:active,
input:focus,
input:focus-visible {
  border: 2px solid #66c18c;
  outline: none;
}

input:disabled {
  border: 2px solid rgba(0, 0, 0, 0.3);
  opacity: 0.3;
}

.button-small {
  margin-top: 30px;
}

.grey {
  color: #6f6f6f;
  margin-top: 16px !important;
}


/* Footer*/ 
.page-footer {
  background-color: #E6F4FF;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  justify-content: space-between;
}

@media (width >= 768px) {
  .social-list {
    flex-wrap: nowrap;
  }
}

@media (width >= 768px) {
  .social-list {
    gap: 25px;
  }
}

.social-vk {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 40px;
}

.icon-path {
  fill: #ffffff;
}

.social-link {
  margin-top: 20px;
  background-color: #012D52;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media (width >= 768px) {
  .social-link {
    width: 44px;
    height: 44px;
  }
}

.social-link:hover .icon-path,
.social-link:focus .icon-path {
  fill: #68A2CA;
}

.social-link:active .icon-path {
  fill: rgba(104, 162, 202, 0.3);
}

.footer-contacts-adress-phone:hover,
.footer-contacts-adress-phone:focus {
  color: #756157
}

.footer-contacts-adress-phone:active {
  color: rgba(117, 97, 87, 0.3);
}

.social-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (width >= 1280px) {
  .social-wrapper  {
    margin: 0;
    align-items: flex-start;
  }
}

.telephone-text {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

@media (width >= 768px) {
  .telephone-text {
    font-size: 22px;
    line-height: 34px;
  }
}

@media (width >= 1280px) {
  .telephone-text {
    text-align: left;
  }
}

@media (width >= 1280px) {
  .block-contacts {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 200px;
  }
}

iframe {
  border-radius: 8px;
}



