@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

:root {
  --first-color: #27457b;
  --first-color-d: #5D71C6; 
  --first-color-light: #31E3EB;
  --first-color-button: linear-gradient(90deg, #21d3e1, #3deff2);
  --first-color-rgb: 5, 23, 150;
  --first-color-alt: linear-gradient(90deg, #23ddea, #3ff7fa);
  --title-color: #333333;
  --title-color-light: #666666;
  --text-color: #999999;
  --container-color: #fafbff;
  --input-focus-color: #A23AD3;
  --input-border-color: rgba(40,47,54,0.15);
  --input-placeholder-color: rgba(17, 0, 102, 0.20);

  --font-thin: 300;
  --font-medium: 500;
  --font-bold: 700;

  --body-font: Roboto, sans-serif;
  --header-height: 66px;
  --fixed-header: 99;
  
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  transition: all 0.2s;
}

h1 {
  font-weight: 500;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--title-color);
}
.section-title span {
  position: relative;
  white-space: nowrap;
}
.section-title span em {
  font-style: normal;
  position: relative;
  z-index: 1;
}
.section-title span::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 0.2em;
  bottom: 0;
  width: 100%;
  height: 68%;
  border-radius: 4px;
  background: #d4edff;
}

.overflow-hidden {
  overflow: hidden;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 576px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1560px) {
  .container {
    width: 1440px;
  }
  .section-title {
    font-size: 3rem;
  }
}


.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

