:root {
  --color-primary: #162555;
  --color-secondary: #FFFFFF;
  --color-text: #000000;
  --color-bg: #ffffff;
  --color-button: #BED4FA;
  

  --font-main: 'Inter', sans-serif;
}

li {
  list-style: none;
}

button {
  border: none;
   font-family: 'Inter', sans-serif;
}
a {
  text-decoration: none;
}
/* .s {

  display: block;
  width: 200px;
  height: 200px;
  font-size: 128px;
  
} */

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* img {
  max-width: 100%;
  height: auto;
} */

/* html {
  scroll-behavior: smooth;
} */


/* 1. Base */
body {
     font-family: var(--font-main);
  color: var(--color-text);

  font-family: 'Inter', sans-serif;
  /* ine-height: 1.5;l */
  color: #000000;
  background-color: #fff;
}

/* 2. Layout */
/* .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  
  @media (min-width: 768px) {
    padding: 40px;
  }

  @media (min-width: 1440px) {
    padding: 0px 60px;
  }
    
} */
 .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 60px;
  }
}

.section {
  width: 100%;
  padding: 120px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  gap: 50px;
  
  
}
.section-header__eyebrow {
  font-size: 25px;
  font-weight: 700;
  line-height: 100%;
  color:#3C82F6;
}
.section-header__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color:#121111;
}

.section-header__accent {
  color:#3C82F6;
}
.section-header__subtitle {
  line-height: 148%;
  font-weight: 500;
  font-size: 32px;
  color:#6675A2;
  text-align: center;
}


/* logo */
.logo {
}
.header__logo {
  display: block;
  width: 177px;
  height: 73px;
  margin-bottom: 28px;
}

.logo__img {
}

/* header */

.header {
  background-color: #F3F6FA;
}
.header__container {
  height: 65px;
  display: flex;
  align-items: center;
  background-color:#F3F6FA;
  padding: 0px 20px;

  @media (min-width:768px) {
    height: 70px;
    padding: 0px 27px;
  }

  @media (min-width:1440px) {
    height: 170px;
    padding: 0px 60px;
  }
}

/* navigation */
.nav {

}
.header__nav {
  margin-left: 405px;
  margin-right: 50px;
  width: 469px;
}
.nav__list {
  display: flex;
  justify-content: space-between;
}

.nav__item {
}
.nav__link {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  width: 125px;

  color: #000000;

  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius:11px;
  transition: all 0.3s ease;
}

.nav__link:hover {
  background-color:#BABABA2E;
}

/* button */
.button {
  
}
.header__button {
  height: 60px;
  width: 219px;
  background-color:#002959;
  color:#FFFFFF;

  font-weight: 700;
  font-size: 24px;
      line-height: 100%;

      display: flex;
      justify-content: center;
      align-items:center;

      border-radius: 30px;
      transition: all 0.3s ease;
      cursor: pointer;
}

.header__button:hover {
color:#002959;
background-color:#BED4FA;
transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  

}

.button--primary {
}


/* hero */

.hero {
  @media (min-width:1440px) {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  
}
.hero__container {
display: flex;
}
.hero__content {
}
.hero__label {
  font-weight: 500;
  line-height: 100%;
  font-size: 24px;

  display: flex;
  gap: 15px;

  height: 61px;
  width: 569px;
  background-color:#EEEFF5;
  justify-content: center;
  align-items:center;
  margin-right: 92px;

  border-radius:30px;
}
.hero__dot {
  height: 19px;
  width: 19px;
  background-color: #3C82F6;
  border-radius:50%;

}
.js-dot {
}
.hero__title {
}
.hero__title-line {
}
.hero__text {
  font-size: 32px;
  line-height: 100%;
  font-weight: 500;
  color:#6675A2;
  margin-bottom: 90px;

}
.hero__button {
  color: #FFFFFF;
  background-color: #002959;
  border-radius: 30px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 24px;
  font-weight: 700;
  line-height: 100%;

  width: 327px;
  height: 72px;

  gap: 15px;

  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.hero__button:hover {
  background-color: #BED4FA;
  color: #002959;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.button__icon {
  width: 24px;
  height: 24px;
   display: block;

  transition: transform 0.3s ease;
}

.hero__button:hover .button__icon {
  transform: translateX(6px);
}
.hero__media {
}




/* about section */
.about {
  background-color:#F3F6FA;
}

.about__list {
  display: flex;
  gap: 22px;
  margin-top: 60px;
  justify-content: center;
}
.about__card {
  padding-top: 26px;
  padding-left: 28px;
  padding-right: 28px;
  border-radius:9px;
  width: 305px;
  height: 416px;
  background-color:#FFFFFF;
}
.about__card-icon {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}
.about__card-icon div {
  width: 66px;
  height: 66px;
      display: flex;
    justify-content: center;
    align-items: center;
    background-color:#EEEFF5;
    border-radius:20px;
}
.about__card-letter {
}
.about__card-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 143%;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}
.about__card-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: 0.3px;
  color:#6675A2;
}

  /* service */
.service {
  
}
.service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  display: flex;
    justify-content: center;

    margin-top: 94px;
}
.service__card {
  width: 540px;
  height: 400px;

  padding-top: 54px;
  padding-left: 54px;

  border-radius:20px;
  outline: 1px solid #C9C9C9;
}

.service__card:hover {
  outline: 4px solid #3C82F6;
}

.service__card:hover .service__img {
  color: #3C82F6;
}
.service__card div {
  width: 80px;
  height: 80px;
  background-color:#EEEFF5;
  border-radius: 20px;

  display: flex;
  justify-content: center;
  align-items:center;

  margin-bottom: 36px;
}


.service__img {
}
.service__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  color:#121111;

  margin-bottom: 36px;
}
.service__subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 143%;
  color:#37474F;
}

/* methods */
.methods {
  background-color:#F3F6FA;
}
.steps {
  margin-top: 76px;

  display: flex;
  padding: 0 76px;
  display: flex;
  justify-content: center;
  gap: 160px;
}
.steps__item {
 display: flex;
  flex-direction: column;
  align-items: center;
}
.steps__wrap {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items:center;
  border: 1.5px solid #3C82F6;
  border-radius:60px;
  background-color:#EBEDF3;
}
.steps__step {
  font-size: 32px;
  font-weight: 600;
  line-height: 186%;
}
.steps__heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  color:#000000;

  margin-top: 76px;
  margin-bottom: 46px;

}
.steps__description {
  width: 334px;
  font-size: 20px;
  font-weight: 400;
  line-height: 148%;
  text-align: center;
  color:#50555C;
}



/* portfolio */
.portfolio {
}
.portfolio__list {
  margin-top: 60px;

  display: flex;
  gap: 40px;
}

.portfolio__card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;

  height: 270px;
}

.portfolio__img {
  width: 100%;
  display: block;
}

/* overlay */
.portfolio__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;

  padding: 46px;

 background: linear-gradient(
    to top,
    #002959CC,
    transparent
  );

transform: translateY(100%);
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s ease;

  text-align: center;
}

.portfolio__title {
  color: #FFFFFF;

  font-size: 36px;
  font-weight: 700;
  line-height: 100%;
}

.portfolio__text {
color:#BED4FA;

font-size: 32px;
font-weight: 800;
line-height: 100%;
margin-top:16px;
}


/* hover */
.portfolio__card:hover .portfolio__overlay {
  transform: translateY(0);
  opacity: 1;
}

/* offer section */
.offer {
  background-color:#031848;
  border-bottom: 1px solid #DFEAFF;
}

.offer-header {
   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  gap: 50px;
}
.offer-header__eyebrow {
  font-size: 25px;
  font-weight: 700;
  line-height: 100%;
  color:#85B3FF;
}
.offer-header__title {
    font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color:#FCFCFE;

  text-align: center;
}
.offer-header__title span {
  color:#85B3FF;
}

.offer-header__subtitle {
    line-height: 148%;
  font-weight: 500;
  font-size: 32px;
  color:#DFEAFFBF;
  text-align: center;

  margin-bottom: 72px;
}


.offer__actions {
  display: flex;
  justify-content: center;
}

.button--primary {
}
.offer__button {
 height: 80px;
  width: 445px;
  background-color:#FCFCFE;
  color:#002959;

  font-weight: 600;
  font-size: 32px;
      line-height: 148%;

      display: flex;
      align-items:center;

      border-radius: 40px;
      transition: all 0.3s ease;
      cursor: pointer;

}

.offer__button:hover {
color: #FCFCFE;
background-color:#6675A2;
transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  
}
.offer__button-text {
      margin-left: 24px;
}
.button-offer__icon {
  width: 46px;
  height: 46px;
  margin-left: 24px;
  display: block;
  transition: transform 0.3s ease;
  
}


.offer__button:hover .offer__icon {
  transform: translateX(6px);
}

.offer__icon {
}
.offer__decor-line {
}

/* footer */
.footer {
  background-color:#031848;
}
.footer__container {
  display: flex;
  justify-content: center;
  align-items:center;
  text-align: center;
  flex-direction: column;
}

.footer__logo {
  margin-top: 106px;
  margin-bottom: 70px;
}
.social {
  margin-bottom: 70px;
}
.footer__social {
  display: flex;
  gap: 40px;
}
.social__link {
  color:#637091;
  width: 68px;
  height: 68px;
  background-color:#1d305F;

  display: flex;
  justify-content: center;
  align-items:center;

  border-radius: 50px;
  outline: 1px solid #637091;
  transition: 0.3s ease;
}
.social__img {
  transition: 0.3s ease;
}
.footer__copy {
  color:#EEEFF5;
  margin-bottom: 54px;
}

.social__link:hover {
  color: #ffffff;

  background-color: #3C82F6;
  outline: 1px solid #3C82F6;
}