@font-face {
  font-family: 'Ibarra Real Nova';
  src: url("../fonts/IbarraRealNova-Bold.woff2") format("woff2"), url("../fonts/IbarraRealNova-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Public Sans';
  src: url("../fonts/PublicSans-Regular.woff2") format("woff2"), url("../fonts/PublicSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* GENERAL */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

ul {
  padding: 0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: "Arial", sans-serif;
  background-color: #FAFAFA;
}

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

.container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0px 20px;
}

.header-nav {
  background-color: #33323D;
  margin-top: 0;
  padding: 40px 0px;
  position: absolute;
  right: 0;
  display: none;
  top: 100px;
  width: 223px;
  z-index: 10;
}

.header-top__open .header-nav {
  display: block;
}

.header-nav__item {
  list-style-type: none;
  margin-bottom: 32px;
  text-align: center;
}

.header-nav__item:last-child {
  margin-bottom: 0;
}

.header-nav__link {
  font-family: "Public Sans";
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.header-nav__link:hover {
  color: #5fb4a2;
}

.header-nav__link.active {
  color: #5fb4a2;
}

@media only screen and (min-width: 580px) {
  /* header-nav */
  .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: transparent;
    padding: 0;
    position: relative;
    top: 0;
    right: 90px;
  }
  .header-nav__link {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #33323D;
    white-space: nowrap;
  }
  .header-nav__item {
    margin-bottom: 0;
    margin-left: 30px;
  }
  .header-hamburg__btn {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .header-nav {
    position: relative;
    right: 120px;
  }
  .header-nav__item {
    margin-right: 15px;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.header-hamburg__btn {
  background-image: url(../../img/hamburg-menu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 24px;
  height: 14px;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.header-top__open .header-hamburg__btn {
  background-image: url("../../img/X.svg");
}

/* hero-section */
.site-hero {
  margin-bottom: 115px;
  position: relative;
  z-index: -1;
}

.site-hero::before {
  content: '';
  background-image: url(../../img/mobile-img1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 310px;
  top: -25px;
  position: absolute;
}

.site-hero__title {
  font-family: "Ibarra Real Nova";
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.357143px;
  color: #33323D;
  padding-top: 320px;
  width: 311px;
  margin-bottom: 32px;
}

.site-hero__btn {
  background: #33323D;
  padding: 17px 30px 17px 80px;
  outline: none;
  border: none;
  font-family: "Public Sans";
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.site-hero__btn::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: 20px 16px;
  background-position: center center;
  width: 48px;
  height: 48px;
  background-image: url(../../img/V.svg);
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  top: 0;
}

.site-hero__btn:hover {
  background-color: #5fb4a2;
}

.site-hero__btn:hover.site-hero__btn::before {
  background-image: url(../../img/btn-white.svg);
}

/* site-hero-tablet */
@media only screen and (min-width: 580px) {
  .site-hero {
    background-image: url(../../img/tablet-img1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 480px;
    position: relative;
    z-index: 5;
    margin-bottom: 140px;
  }
  .site-hero::before {
    display: none;
  }
  .site-hero__holder {
    position: absolute;
    background-color: #FAFAFA;
    padding-top: 25px;
    left: 0;
    bottom: 0;
  }
  .site-hero__title {
    padding-top: 0;
    font-size: 30px;
  }
}

@media only screen and (min-width: 720px) {
  .site-hero {
    height: 600px;
  }
  .site-hero__holder {
    padding-top: 35px;
    padding-right: 40px;
  }
  .site-hero__title {
    font-size: 40px;
    width: 410px;
  }
}

@media only screen and (min-width: 720px) {
  .site-hero__title {
    width: 480px;
  }
}

@media only screen and (min-width: 940px) {
  .site-hero {
    background-image: url(../../img/desktop-img1.jpg);
  }
  .site-hero__title {
    width: 310px;
  }
}

/* main-section */
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 115px;
}

.about-desc {
  padding-top: 32px;
  padding-bottom: 68px;
  border-top: 1px solid rgba(51, 50, 61, 0.15);
  border-bottom: 1px solid rgba(51, 50, 61, 0.15);
}

.self__img-box {
  background-image: url("../../img/self.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  min-height: 400px;
}

.about-heading {
  font-family: "Ibarra Real Nova";
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.357143px;
  color: #33323D;
  margin-bottom: 28px;
}

.about-text {
  font-family: "Public Sans";
  font-size: 16px;
  line-height: 30px;
  color: #33323D;
  mix-blend-mode: normal;
  opacity: 0.8;
  margin-bottom: 32px;
}

.about-btn {
  font-family: "Public Sans";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #33323D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #33323D;
  padding: 16px 32px;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.about-btn:hover {
  background-color: #33323D;
  color: #fff;
}

.self__img-box {
  margin-bottom: 32px;
}

.self__picture {
  width: 100%;
}

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

@media only screen and (min-width: 560px) {
  .self__img-box {
    background-position: center center;
  }
}

@media only screen and (min-width: 768px) {
  .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .self__img-box {
    background-image: url("../../img/self-img-tablet@2x.jpg");
    width: 281px;
    height: 590px;
    margin-bottom: 0;
  }
  .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .about-text {
    width: 339px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 968px) {
  .self__img-box {
    background-image: url("../../img/self@2x.jpg");
    width: 50%;
    height: 590px;
  }
  .about-desc {
    margin-right: 60px;
  }
}

/* interesting-doing */
.doing {
  margin-bottom: 150px;
  margin-top: 50px;
}

.doing-heading {
  font-family: "Ibarra Real Nova";
  font-size: 40px;
  line-height: 42px;
  text-align: center;
  letter-spacing: -0.357143px;
  color: #33323D;
  margin-bottom: 40px;
}

.doing-button {
  text-align: center;
}

.doing-btn {
  font-family: "Public Sans";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #33323D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #33323D;
  padding: 16px 32px;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.doing-btn:hover {
  background-color: #33323D;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .doing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .doing-heading {
    margin-bottom: 0;
    text-align: left;
    position: relative;
    width: 350px;
    margin-top: 0;
  }
  .doing-heading::after {
    position: absolute;
    content: '';
    right: -40%;
    top: 50%;
    background-color: rgba(51, 50, 61, 0.15);
    height: 1px;
    width: 113px;
  }
}

@media only screen and (min-width: 900px) {
  .doing-heading::after {
    width: 280px;
    right: -80%;
  }
}

@media only screen and (min-width: 1100px) {
  .doing-heading::after {
    width: 484px;
    left: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .doing-heading::after {
    width: 510px;
    left: 110%;
  }
}

/* footer-section */
.footer {
  background-color: #33323D;
  padding: 24px 0;
}

.footer-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-container {
  margin-bottom: 42px;
  padding-left: 0;
}

.footer-container__content {
  list-style: none;
  margin-bottom: 32px;
  text-align: center;
}

.footer-container__content:last-child {
  margin-bottom: 0;
}

.footer-container__link {
  font-family: "Public Sans";
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.footer-container__link:hover {
  color: #5fb4a2;
}

.footer-container__link.active {
  color: #5fb4a2;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-social__link {
  margin-right: 15px;
}

.footer-social__link:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 768px) {
  .footer-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer-logo {
    margin-bottom: 0;
    margin-right: 48px;
  }
  .footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .footer-container__content {
    margin-bottom: 0;
    margin-right: 42px;
  }
  .footer-social {
    margin-left: auto;
  }
}

/* get-section */
.get {
  border-top: 1px solid rgba(51, 50, 61, 0.15);
  border-bottom: 1px solid rgba(51, 50, 61, 0.15);
  padding: 32px 0;
  margin-bottom: 34px;
  mix-blend-mode: normal;
}

.get-title {
  font-family: "Ibarra Real Nova";
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.357143px;
  color: #33323D;
  margin-bottom: 24px;
  margin-top: 0;
}

.get-desc {
  font-family: "Public Sans";
  font-size: 15px;
  line-height: 30px;
  color: #33323D;
  margin-bottom: 24px;
  mix-blend-mode: normal;
  opacity: 0.8;
  margin-top: 0;
}

.get-social__link {
  text-decoration: none;
  margin-right: 15px;
}

.get-social__link:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 980px) {
  .get {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .get-desc {
    width: 635px;
  }
}

/* contact-section*/
.contact-me {
  padding-bottom: 80px;
}

.contact-me__heading {
  margin: 0;
  margin-bottom: 24px;
  font-weight: bold;
  font-family: "Ibarra Real Nova";
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.5px;
  color: #33323D;
}

.contact-form__input-box {
  display: block;
  margin-bottom: 24px;
}

.contact-form__label {
  display: block;
  font-size: 13px;
  line-height: 30px;
  color: rgba(51, 50, 61, 0.8);
}

.contact-form__input {
  margin-top: 8px;
  width: 100%;
  border: none;
  font-size: 13px;
  line-height: 30px;
  display: block;
  padding: 9px 0 9px 16px;
  background-color: rgba(51, 50, 61, 0.1);
  outline: none;
  color: #717079;
}

.contact-form__input::-webkit-input-placeholder {
  font-size: 13px;
  line-height: 30px;
  color: rgba(51, 50, 61, 0.4);
}

.contact-form__input:-ms-input-placeholder {
  font-size: 13px;
  line-height: 30px;
  color: rgba(51, 50, 61, 0.4);
}

.contact-form__input::-ms-input-placeholder {
  font-size: 13px;
  line-height: 30px;
  color: rgba(51, 50, 61, 0.4);
}

.contact-form__input::placeholder {
  font-size: 13px;
  line-height: 30px;
  color: rgba(51, 50, 61, 0.4);
}

.contact-form__txt {
  min-height: 96px;
  resize: none;
}

.contact-form__btn {
  padding: 17px 24px;
  border: none;
  background-color: #33323D;
  color: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  border: 1px solid #33323D;
}

.contact-form__btn:hover {
  background-color: #eaeaeb;
  color: #33323D;
}

.contact-form__btn:active {
  opacity: 0.6;
}

@media only screen and (min-width: 980px) {
  .contact-me {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contact-form__input {
    min-width: 635px;
  }
}

.main-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-section__box {
  padding: 34px 0 48px 0;
  margin-top: 32px;
  margin-bottom: 70px;
  padding-left: 0;
  border-top: 1px solid rgba(51, 50, 61, 0.15);
  border-bottom: 1px solid rgba(51, 50, 61, 0.15);
}

.main-section__img {
  width: 100%;
}

.main-section__box-title {
  font-family: "Ibarra Real Nova";
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.357143px;
  color: #33323D;
  margin-bottom: 24px;
}

.main-section__box-text {
  font-family: "Public Sans";
  font-size: 15px;
  line-height: 30px;
  color: #33323D;
  opacity: 0.8;
  margin-bottom: 28px;
}

.main-section__box-link {
  font-family: "Public Sans";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #33323D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #33323D;
  padding: 16px 32px;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.main-section__box-link:hover {
  background-color: #33323D;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .main-section__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .main-section__content:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .main-section__content:nth-child(even) .main-section__box {
    margin-left: 0;
    margin-right: 70px;
  }
  .main-section__img {
    width: 50%;
  }
  .main-section__box {
    padding: 34px 0 50px 0;
    margin-left: 70px;
    margin-bottom: 40px;
  }
  .main-section__box-title {
    margin-bottom: 30px;
  }
  .main-section__box-text {
    margin-bottom: 35px;
  }
}

@media only screen and (min-width: 920px) {
  .main-section__content {
    margin-bottom: 80px;
  }
  .main-section__content:nth-child(even) .main-section__box {
    margin-left: 90px;
  }
  .main-section__img {
    max-width: 540px;
  }
  .main-section__box-text {
    width: 350px;
  }
  .main-section__box {
    padding: 60px 0 110px 0;
    margin-right: 90px;
  }
  .main-section__img {
    max-height: 460px;
  }
}

.manage-section__img, .bookmark-section__img, .detail-section__img, .last-section__img {
  margin-bottom: 40px;
  width: 100%;
}

.manage-site__title, .bookmark-site__title, .detail-site__title, .last-site__title {
  font-family: "Ibarra Real Nova";
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.357143px;
  color: #33323D;
  margin-bottom: 24px;
}

.manage-site__text, .bookmark-site__text, .detail-site__text, .last-site__text {
  font-family: "Public Sans";
  font-size: 15px;
  line-height: 30px;
  color: #33323D;
  opacity: 0.8;
  margin-bottom: 24px;
}

.manage-section__links, .bookmark-section__links, .detail-section__links, .last-section__links {
  list-style-type: none;
  padding-bottom: 5px;
}

.manage-section__link, .bookmark-section__link, .detail-section__link, .last-section__link {
  font-family: "Public Sans";
  font-size: 13px;
  line-height: 30px;
  color: #5FB4A2;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}

.manage-section__btn {
  font-family: "Public Sans";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #33323D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #33323D;
  padding: 16px 32px;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.manage-section__btn:hover {
  background-color: #33323D;
  color: #fff;
}

.manage-section__info-site, .bookmark-section__info-site, .detail-section__info-site, .last-section__info-site {
  padding: 30px 0 50px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(51, 50, 61, 0.15);
  border-top: 1px solid rgba(51, 50, 61, 0.15);
}

.manage-background__title, .manage-background__content, .bookmark-background__content, .detail-background__content, .last-background__content, .bookmark-background__title, .detail-background__title, .last-background__title {
  font-family: "Ibarra Real Nova";
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -0.285714px;
  color: #33323D;
  margin-bottom: 24px;
}

.manage-background__desc, .bookmark-background__desc, .detail-background__desc, .last-background__desc {
  font-family: "Public Sans";
  font-size: 15px;
  line-height: 30px;
  color: #33323D;
  opacity: 0.8;
  margin-bottom: 40px;
}

.manage-background__img, .bookmark-background__img, .detail-background__img, .last-background__img {
  width: 100%;
}

.manage-background__img:not(:last-child), .bookmark-background__img:not(:last-child), .detail-background__img:not(:last-child), .last-background__img:not(:last-child) {
  margin-bottom: 32px;
}

@media only screen and (min-width: 768px) {
  .manage-site__text, .bookmark-site__text, .detail-site__text, .last-site__text {
    width: 535px;
  }
}

@media only screen and (min-width: 980px) {
  .manage-section__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .manage-section__info-site, .bookmark-section__info-site, .detail-section__info-site, .last-section__info-site {
    margin-right: 90px;
    padding-top: 25px;
    height: 450px;
    margin-bottom: 0;
  }
  .manage-site__text, .bookmark-site__text, .detail-site__text, .last-site__text {
    width: 350px;
  }
}

@media only screen and (min-width: 1110px) {
  .manage-section__info-site, .bookmark-section__info-site, .detail-section__info-site, .last-section__info-site {
    margin-right: 125px;
  }
}

.fylo, .insure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 64px 0 65px 0;
  border-top: 1px solid rgba(51, 50, 61, 0.15);
  border-bottom: 1px solid rgba(51, 50, 61, 0.15);
}

.fylo-left, .insure-left {
  border-right: 1px solid rgba(51, 50, 61, 0.15);
  width: 50%;
  height: 100%;
  padding: 32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fylo-left__info {
  padding-left: 25px;
}

.fylo-right, .insure-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
  margin-left: auto;
  padding: 32px 0;
}

.fylo-right__info {
  padding-right: 25px;
}

.fylo-title, .insure-title {
  font-family: "Ibarra Real Nova";
  font-size: 25px;
  line-height: 36px;
  letter-spacing: -0.285714px;
  color: #33323D;
  margin-bottom: 5px;
}

.fylo-content, .insure-content {
  font-family: "Public Sans";
  font-size: 14px;
  line-height: 30px;
  color: #33323D;
  mix-blend-mode: normal;
  opacity: 0.5;
}

@media only screen and (min-width: 768px) {
  .fylo-title, .insure-title {
    font-size: 32px;
  }
  .fylo-content, .insure-content {
    font-size: 16px;
  }
}

.bookmark-section__btn {
  font-family: "Public Sans";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #33323D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #33323D;
  padding: 16px 32px;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.bookmark-section__btn:hover {
  background-color: #33323D;
  color: #fff;
}

.bookmark-background__img:not(:last-child) {
  margin-bottom: 32px;
}

@media only screen and (min-width: 768px) {
  .bookmark-site__text {
    width: 535px;
  }
}

@media only screen and (min-width: 980px) {
  .bookmark-section__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .bookmark-section__info-site {
    margin-right: 90px;
    padding-top: 25px;
    height: 450px;
    margin-bottom: 0;
  }
  .bookmark-site__text {
    width: 350px;
  }
}

@media only screen and (min-width: 1110px) {
  .bookmark-section__info-site {
    margin-right: 125px;
  }
}

.insure-left ::before {
  content: '';
  position: absolute;
  background-image: url(../../img/<.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 16px;
  left: -35px;
  top: 60px;
  cursor: pointer;
}

.insure-right ::after {
  content: '';
  position: absolute;
  background-image: url(../../img/>.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 16px;
  right: -35px;
  top: 60px;
  cursor: pointer;
}

.detail-section__btn {
  font-family: "Public Sans";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #33323D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #33323D;
  padding: 16px 32px;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.detail-section__btn:hover {
  background-color: #33323D;
  color: #fff;
}

.detail-background__img:not(:last-child) {
  margin-bottom: 32px;
}

@media only screen and (min-width: 768px) {
  .detail-site__text {
    width: 535px;
  }
}

@media only screen and (min-width: 980px) {
  .detail-section__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .detail-section__info-site {
    margin-right: 90px;
    padding-top: 25px;
    height: 450px;
    margin-bottom: 0;
  }
  .detail-site__text {
    width: 350px;
  }
}

@media only screen and (min-width: 1110px) {
  .detail-section__info-site {
    margin-right: 125px;
  }
}

.last-section__btn {
  font-family: "Public Sans";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #33323D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #33323D;
  padding: 16px 32px;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.last-section__btn:hover {
  background-color: #33323D;
  color: #fff;
}

.last-background__img:not(:last-child) {
  margin-bottom: 32px;
}

@media only screen and (min-width: 768px) {
  .last-site__text {
    width: 535px;
  }
}

@media only screen and (min-width: 980px) {
  .last-section__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .last-section__info-site {
    margin-right: 90px;
    padding-top: 25px;
    height: 450px;
    margin-bottom: 0;
  }
  .last-site__text {
    width: 350px;
  }
}

@media only screen and (min-width: 1110px) {
  .last-section__info-site {
    margin-right: 125px;
  }
}
/*# sourceMappingURL=main.css.map */