@font-face {
  font-family: 'RhodiumLibre';
  src: local('RhodiumLibre'),
    url('../fonts/RhodiumLibre-Regular.woff2') format('woff2'),
    url('../fonts/RhodiumLibre-Regular.woff') format('woff'),
    url('../fonts/RhodiumLibre-Regular.ttf') format('ttf');
  font-weight: 400;
}

@font-face {
  font-family: 'Unbounded';
  src: local('Unbounded'),
    url('../fonts/Unbounded-Light.woff2') format('woff2'),
    url('../fonts/Unbounded-Light.woff') format('woff'),
    url('../fonts/Unbounded-Light.ttf') format('ttf');
  font-weight: 300;
}

@font-face {
  font-family: 'Unbounded';
  src: local('Unbounded'),
    url('../fonts/Unbounded-Medium.woff2') format('woff2'),
    url('../fonts/Unbounded-Medium.woff') format('woff'),
    url('../fonts/Unbounded-Medium.ttf') format('ttf');
  font-weight: 400;
}

@font-face {
  font-family: 'Roboto';
  src: local('Roboto'),
    url('../fonts/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/Roboto-Regular.woff') format('woff'),
    url('../fonts/Roboto-Regular.ttf') format('ttf');
  font-weight: 400;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

img {
  vertical-align: top;
}

html {
  font-size: 20px;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  font-family: "RhodiumLibre", sans-serif;
  font-weight: 400;
  color: #898989;
  background-color: #2d3748;
}

body._lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.main {
  margin: 110px 0px 0px 0px;
  flex: 1 1 auto;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ::::::::::::::::::::::::::::::::::::;; */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #2d3748;
  font-weight: 400;
  transition: all 0.3s ease 0s;
}

.header.headertop {
  transform: translateY(-100%);
}

.header__container,
.footer__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
}

.header__container {
  border-bottom: 1px solid rgba(225, 229, 238, 0.3);
}

.icons__social-link img {
  width: 24px;
  transition: all 0.2s ease 0s;
}

.header__top {
  margin-left: auto;
  padding: 20px 0px 0px 0px;
}

.icons {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.icons__social-link:hover.icons__social-link img {
  transform: translateY(-2px);
}

.header__wrapper {
  position: relative;
  display: flex;
  column-gap: 20px;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo span {
  text-transform: uppercase;
  font-size: 20px;
}

.menu__list {
  display: flex;
  gap: 20px;
}

.menu__link {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  transition: all 0.3s ease 0s;
}

.menu__link:hover {
  color: #fff;
}

.menu__link::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: -10px;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

.menu__link:hover.menu__link::after {
  opacity: 1;
}

.menu__icon {
  display: none;
}

/* ::::::::::::::::::::::::::::::::::::: */

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 157px;
  height: 45px;
  border-radius: 4px;
  font-size: 16px;
  letter-spacing: 2px;
  font-family: "Roboto", sans-serif;
  border: 1px solid #7f9cf5;
  color: #fff;
  box-shadow: 0 16px 32px -8px rgba(168, 180, 223, 0.32);
  transition: all 0.3s ease 0s;
}

.btn:hover {
  background-color: #7f9cf5;
  color: #fff;
}

.title {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Unbounded", sans-serif;
  font-style: 400px;
  color: #fff;
}

.subtitle {
  font-family: "Unbounded", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

.text-color-blue {
  color: #7f9cf5;
}

/* :::::::::::::::::::::::::::::::::::::: */

.first {
  padding: 150px 0;
  background-color: #1a202c;
}

.first__wrap {
  display: flex;
  align-items: center;
  column-gap: 50px
  
}

@media (max-width: 768px) {

.first__wrap {
  align-items: stretch;
}

.first__content_links a {
  word-break: break-all;
    overflow-wrap: break-word;
}

}
.first__image-box {
  max-width: 600px;
  width: 100%;
}

.first__img {
  position: relative;
  padding: 0px 0px 66% 0px;
}

.first__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.first__title {
  margin: 0px 0px 20px 0px;
}

.first__subtitle {
  margin: 0px 0px 40px 0px;
}

.first__button-box {
  display: flex;
  gap: 20px;
}

/* ::::::::::::::::::::::::::::::::::::::: */
.links {
  padding: 100px 0;
  margin: 0 auto;
}

.links__wrapper {
  padding: 100px 5vw;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  background: linear-gradient(153deg, rgba(39, 50, 70, 1) 22%, rgba(33, 41, 53, 1) 100%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.521);
}

.links__list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.links__item {
  padding: 30px;
  background-color: #2d3748;
  border: 2px solid #7f9cf5;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.links__name {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 0px 0px 20px 0px;
}

.links__link {
  display: block;
  padding: 20px 0 0 0;
  word-break: break-word;
  transition: all 0.3s ease 0s;
}

.links__link svg {
  transition: all 0.3s ease 0s;
}

.links__link:hover {
  color: #fff;
}

.links__link:hover svg {
  transform: translateX(10px);
}

/* ::::::::::::::::::::::::::::::::::::::: */
.text-img {
  background-color: #1a202c;
  margin-top: -12px;
  margin-bottom: -12px;
  display: block;
  position: relative;
  overflow: hidden;
}

.container-diagonal {
  padding: 280px 15px;
}

.decor-top {
  width: 110vw;
  height: 200px;
  background-color: #2d3748;
  margin-top: -100px;
  margin-left: -5vw;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  transform: rotate(-4deg);
}

.decor-top-reverse {
  transform: rotate(4deg);
}

.decor-bottom {
  width: 110vw;
  height: 200px;
  background-color: #2d3748;
  margin-top: 0;
  margin-bottom: -100px;
  margin-left: -5vw;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: rotate(-4deg);
}

.decor-bottom-reverse {
  transform: rotate(4deg);
}

.text-img__wrapper {
  display: flex;
  column-gap: 50px;
}

.text-img__wrapper-reverse {
  flex-direction: row-reverse;
}

.text-img__content {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.text-img__subtitle {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.text-img__title {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
}

.text-img__text {
  margin-bottom: 32px;
  font-size: 19px;
}

.text-img__text p:not(:last-child) {
  margin: 0px 0px 15px 0px;
}

.text-img__btn-wrap {
  display: flex;
  column-gap: 20px;
}

.text-img__image {
  max-width: 600px;
  width: 100%;
  flex: 1 1 55%;
}

.text-img__img {
  position: relative;
  padding: 0px 0px 66% 0px;
}

.text-img__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ::::::::::::::::::::::::::::::::::::::: */
.text {
  padding: 150px 0;
  text-align: center;
}

.text__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
}

.text__title {
  letter-spacing: -.02em;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3em;
  color: #fff;
}

.text__box {
  max-width: 800px;
}

.text__box p:not(:last-child) {
  margin: 0px 0px 20px 0px;
}

.text__wrap .btn {
  width: auto;
  padding: 0 30px;
}

/* ::::::::::::::::::::::::::::::::::::::: */

.cards {
  padding: 150px 0;
}

.cards__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cards__item {
  min-width: 265px;
  max-width: 350px;
  width: 100%;
  transition: all 0.3s ease 0s;
}

.cards__box {
  padding: 60px 20px 50px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
  border-radius: 5px;
  border: 1px solid #E1E5EE;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}

.cards__icon svg path {
  transition: all 0.3s ease 0s;
}

.cards__item:hover {
  box-shadow: 0 10px 25px 0 rgba(255, 255, 255, 0.3);
}

.cards__item:first-child:hover .cards__icon svg path {
  fill: #7f9cf5;
}

.cards__item:nth-child(2):hover .cards__icon svg path {
  fill: #56e614;
}

.cards__item:last-child:hover .cards__icon svg path {
  fill: #f1f525;
}

.cards__title {
  font-size: 20px;
  font-weight: 500;
}

.cards__text {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

/* ::::::::::::::::::::::::::::::::::::::: */
.text-center {
  padding: 100px 0;
  border-top: 1px solid rgba(225, 229, 238, 0.3);
  border-bottom: 1px solid rgba(225, 229, 238, 0.3);
}

.text-center__text {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin: 0 auto 20px;
}

.text-center__text p {
  font-size: 16px;
  font-weight: 400;
}

.text-center__text p:not(:last-child) {
  margin: 0px 0px 20px 0px;
}

.text-center__btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* ::::::::::::::::::::::::::::::::::::::: */
.text-img-center {
  padding: 150px 0;
}

.text-img-center__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-img-center__title {
  margin: 0px 0px 20px 0px;
  font-size: 2rem;
  font-weight: 500;
}

.text-img-center__subtitle {
  text-align: center;
  margin: 0px 0px 40px 0px;
  max-width: 600px;
  width: 100%;
  font-size: 16px;
}

.text-img-center__image {
  margin: 0px 0px 30px 0px;
  max-width: 940px;
  width: 100%;
}

.text-img-center__img {
  position: relative;
  padding: 0px 0px 26% 0px;
}

.text-img-center__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-img-center__content {
  max-width: 940px;
  width: 100%;
}

.text-img-center__content p:not(:last-child) {
  margin: 0px 0px 10px 0px;
}

.text-img-center__title-small {
  font-size: 1.5rem;
}

.text-img-center__text {
  font-size: 16px;
  font-weight: 400;
}

/* ::::::::::::::::::::::::::::::::::::::: */

.text-left {
  padding: 150px 0;
}

.text-left__wrapper {
  display: flex;
  gap: 20px;
}

.text-left__titles {
  flex: 1 0 400px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.text-left__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
}

.text-left__subtitle {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.text-left__content {
  font-size: 16px;
}

.text-left__content p:not(:last-child) {
  margin: 0px 0px 20px 0px;
}

/* :::::::::::::::::::BLOGS:::::::::::::::::::: */
.blogs {
  padding: 100px 0;
}

.blogs__title {
  margin: 0px 0px 50px 0px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.blogs__list {
  display: flex;
  gap: 60px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.blogs__item {
  margin-right: auto;
  flex: 0 1 48%;
  min-width: 300px;
  width: 100%;
}

.blogs__box {
  display: block;
  height: 100%;
  box-shadow: 0 0 32px -8px rgba(255, 255, 255, 0.32);
  transition: all 0.3s ease 0s;
}

.blogs__box:hover {
  box-shadow: 0 0 32px -8px rgba(255, 255, 255, 0.5);
}

.blogs__box:hover .blogs__img img {
  transform: scale(1.05);
}

.blogs__image {
  margin: 0px 0px 30px 0px;
}

.blogs__img {
  position: relative;
  padding: 0px 0px 58% 0px;
  overflow: hidden;
}

.blogs__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease 0s;
}

.blogs__content {
  padding: 0 15px 25px;
}

.blogs__subtitle {
  margin: 0px 0px 15px 0px;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}

.blogs__desr {
  margin: 0px 0px 30px 0px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.blogs__name {
  font-style: italic;
}

.blogs__text {
  font-size: 16px;
  line-height: 1.3;
}

.blogs__text p:not(:last-child) {
  margin: 0px 0px 15px 0px;
}

/* :::::::::::::::::::BLOG:::::::::::::::::::: */
.blog {
  padding: 50px 0;
}

.blog__wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.blog__wrapper-center {
  flex-direction: column;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}

.blog__image {
  max-width: 610px;
  width: 100%;
}

.blog__wrapper-center .blog__image {
  max-width: 940px;
  width: 100%;
}

.blog__img {
  position: relative;
  padding: 0px 0px 100% 0px;
}

.blog__wrapper-center .blog__img {
  padding: 0px 0px 36% 0px;
}

.blog__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__content {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  flex: 0 0 460px;
}

.blog__wrapper-center .blog__content {
  padding: 20px 0;
}

.blog__subtitle {
  margin: 0px 0px 20px 0px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog__title {
  margin: 0px 0px 30px 0px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.blog__text {
  margin: 0px 0px 60px 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.37;
}

.blog__text p:not(:last-child) {
  margin: 0px 0px 15px 0px;
}

.blog__descr {
  font-size: 16px;
  font-weight: 400;
}

.blog__wrapper-center .blog__descr {
  text-align: right;
}

.blog__name {
  font-style: italic;
}

/* ::::::::::::::::::FAQ::::::::::::::::::::: */

.faq {
  padding: 100px 0;
}

.faq__title {
  margin: 0px 0px 30px 0px;
  text-align: center;
  font-size: 2rem;
}

.faq__wrapper {
  box-shadow: 0 1px 8px rgba(0, 0, 0, .25);
}

.faq__item {
  margin: 0px 0px 10px 0px;
  border: 1px solid #7f9cf5;
  border-radius: 4px;
  box-shadow: 0 0 4px #fff;
}

input[name='panel'] {
  display: none;
}

label {
  position: relative;
  display: block;
  padding: 10px 50px 10px 20px;
  font-family: "Unbounded", sans-serif;
  text-align: center;
  font-size: 22px;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.865, 0.140, 0.095, 0.870);
}

label:after {
  content: '+';
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  color: #eee;
  text-align: center;
  border-radius: 50%;
  background: #7f9cf5;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .75);
}

label:hover {
  color: #fff;
}

input:checked+label {
  color: #fff;
}

input:checked+label:after {
  content: '-';
  line-height: .8em;
}

.faq__content {
  overflow: hidden;
  height: 0px;
  position: relative;
  box-shadow: inset 4px 0 0 0 #7f9cf5, inset 0 3px 6px rgba(0, 0, 0, .75);
  transition: all .3s cubic-bezier(0.865, 0.140, 0.095, 0.870);
}

.faq__content:not(:last-of-type) {
  box-shadow: inset 0 -2px 2px rgba(0, 0, 0, .25), inset 4px 0 0 0 #7f9cf5, inset 0 3px 6px rgba(#000, .75);
}

.faq__content.faq__header {
  padding: 1em 0;
}

.faq__content.faq__body {
  font-size: .825em;
  line-height: 1.4em;
}

input[name='panel']:checked~.faq__content {
  padding: 15px;
  overflow-y: scroll;
}

input[name='panel']:checked~.faq__content.faq__content--small {
  height: 150px;
}

input[name='panel']:checked~.faq__content.faq__content--med {
  height: 200px;
}

input[name='panel']:checked~.faq__content.faq__content--large {
  height: 350px;
}

/* ::::::::::::::::::Disclaimer::::::::::::::::::::: */

.disclaimer {
  margin: 0px 0px 60px 0px;
  padding: 10px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.disclaimer__title {
  margin: 0px 0px 30px 0px;
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
}

.disclaimer__content {
  padding: 15px;
}

.disclaimer__subtitle {
  margin: 0px 0px 20px 0px;
  font-size: 1rem;
  font-weight: 500;
}

.disclaimer__content p:not(:last-child) {
  margin: 0px 0px 10px 0px;
}

/* ::::::::::::::::::Footer::::::::::::::::::::: */

.footer {
  padding: 50px 0;
  background-color: #2d3748;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid;
  padding-top: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo img {
  padding: 0px 10px 0px 0px;
  width: 48px;
}

.footer__decor {
  margin: 20px 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  height: 1px;
}

.footer__link {
  font-size: 12px;
}

.footer__link:hover {
  color: #fff;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__list {
  display: flex;
}

.footer__item:not(:last-child) {
  margin: 0px 20px 0px 0px;
}

@media (min-width: 767px) {

  .menu__list {
    align-items: center;
    width: 100%;
  }

  .menu__list>li {
    padding: 10px 0;
  }
}

@media (max-width: 1100px) {
  .title {
    font-size: 40px;
  }

  .cards__title {
    font-size: 18px;
  }

  .text-img__title {
    font-size: 1.5rem;
  }

  .text-img__wrapper {
    gap: 15px;
  }

  .text-left__title {
    font-size: 1.4rem;
  }
}

@media (max-width: 900px) {
  .text-img__wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .text-img__image {
    flex: 1 1 auto;
    margin-bottom: 30px;
  }

  .text-img__btn-wrap {
    justify-content: center;
    gap: 15px;
  }

  .container-diagonal {
    padding: 180px 15px;
  }

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

  .blog__wrapper-reverse,
  .blog__wrapper-center {
    flex-direction: column;
  }

  .blog__img {
    padding: 0px 0px 80% 0px;
  }

  .blog__wrapper-center .blog__img {
    padding: 0px 0px 50% 0px;
  }

  .blog__content {
    padding: 0;
    flex: auto;
  }
}

@media (max-width: 767px) {
  .menu__icon {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease 0s;
  }

  .menu__icon span {
    height: 1px;
    background-color: #fff;
    width: 100%;
  }

  .menu__icon._active {
    transform: rotate(90deg);
  }

  .menu__body {
    position: fixed;
    top: 10px;
    transform: translateX(-200%);
    left: 10px;
    width: 80%;
    max-height: 100%;
    padding: 25px 15px;
    background-color: #2d3748;
    transition: all 0.5s ease 0s;
    opacity: 0;
    overflow: scroll;
    border: 1px solid #7f9cf5;
    box-shadow: 0 0 10px #fff;
  }

  .menu__body._active {
    opacity: 1;
    transform: translateX(0);
  }

  .menu__list {
    flex-direction: column;
  }

  .menu__list>li {
    width: 100%;
    text-align: center;
    transition: all 0.3s ease 0s;
  }

  .menu__list>li:last-child {
    margin-bottom: 0;
  }

  .menu__link {
    padding: 15px 0;
  }

  .main {
    margin: 95px 0px 0px 0px;
  }

  .title {
    font-size: 30px;
  }

  .cards__title {
    font-size: 16px;
  }

  .header__container {
    justify-content: space-between;
  }

  .header__wrapper {
    justify-content: space-between;
    column-gap: 0;
  }

  .header__menu {
    flex: none;
  }

  .icons {
    margin: 0 auto;
  }

  .header__top {
    margin: 0 auto;
  }

  .header__icons {
    gap: 15px;
  }

  .header__logo span {
    font-size: 16px;
  }

  .header__logo img {
    width: 36px;
  }

  .first,
  .links,
  .text,
  .cards,
  .text-img-center,
  .text-center,
  .text-left,
  .blog {
    padding: 50px 0;
  }

  .first__wrap {
    flex-direction: column;
    row-gap: 30px;
  }

  .first__content {
    text-align: center;
  }

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

  .links__wrapper {
    padding: 50px 3vw;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    background-color: #fff;
  }

  .container-diagonal {
    padding: 130px 15px;
  }

  .decor-top,
  .decor-bottom {
    height: 150px;
  }

  .text__title {
    font-size: 1.5rem;
  }

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

  .text-img-center__title {
    font-size: 1.5rem;
  }

  .text-img-center__img {
    padding: 0px 0px 35% 0px;
  }

  .text-left__title {
    font-size: 1.1rem;
  }

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

  .text-left__titles {
    flex: 1 0 auto;
  }

  .blogs {
    padding: 50px 0;
  }

  .blogs__item {
    flex: 1 1 auto;
  }

  .blogs__title {
    font-size: 1.8rem;
    line-height: 1;
  }

  .blogs__subtitle {
    font-size: 1.3rem;
  }

  .blog__text {
    margin: 0px 0px 30px 0px;
  }

  input[name='panel']:checked~.faq__content.faq__content--small {
    height: 250px;
  }

  input[name='panel']:checked~.faq__content.faq__content--med {
    height: 350px;
  }

  input[name='panel']:checked~.faq__content.faq__content--large {
    height: 500px;
  }

  .disclaimer {
    padding: 50px 0px 0px 0px;
    margin: 0;
  }

  .footer {
    padding: 1rem 0;
  }

  .footer__wrap {
    align-items: first baseline;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }

  .footer__text {
    order: 3;
    font-size: 16px;
  }

  .footer__list {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .btn {
    width: 145px;
  }
}
.first__content_links {
    padding-top: 50px;
    line-height: 2;
    font-size: 17px;
}
.first__content_links a{
    color: #fff;
}
.first__content_links a:hover{
    color: #456de4;
    transition: 0.3s;
}