<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap");

@font-face {
  font-family: "Uni Neue";
  src: url("./uni-neue/UniNeueHeavy.woff2") format("woff2"),
    url("./uni-neue/UniNeueHeavy.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Uni Neue";
  src: url("./uni-neue/UniNeueBook.woff2") format("woff2"),
    url("./uni-neue/UniNeueBook.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Uni Neue";
  src: url("./uni-neue/UniNeueBold.woff2") format("woff2"),
    url("./uni-neue/UniNeueBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  list-style-type: none;
}

button {
  padding: 0;
  border: none;
  background: none;
  transition: 0.3s;
}

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

.button--c2a {
  color: #1e1e41;
  border-color: #ffd672;
  background-color: #ffd672;
  box-shadow: 0 4px 0 rgb(255 214 114 / 20%);
}

input {
  border: none;
  background-color: transparent;
  resize: none;
  outline: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #1e1e41;
  transition: 0.2s;
}

a:hover {
  text-decoration: underline;
  color: #ff9799;
}

.button {
  color: #1e1e41;
  border-color: #ffd672;
  background-color: #ffd672;
  box-shadow: 0px 4px 0px rgba(255, 214, 114, 0.2);
  border: 1px solid #ffd672;
  margin-bottom: 0;
  padding: 8px 22px;
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-family: Nunito, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  vertical-align: middle;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover {
  color: #1e1e41;
  border-color: #ffe8ae;
  background-color: #ffe8ae;
}

.centered {
  padding-right: calc((100% - 1080px) / 2);
  padding-left: calc((100% - 1080px) / 2);
}

/* main media query */

@media screen and (max-width: 1120px) {
  .centered {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 991px) {
  .centered {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .centered {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* header style */

.header {
  padding-top: 16px;
  padding-bottom: 16px;
  position: sticky;

  display: flex;
  z-index: 88;
  top: 0;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f2f2f2;
  background: #fff;
  box-shadow: 0 14px 0 rgb(0 0 0 / 3%);
  transition: 0.3s;
}

.header__left {
  display: flex;
}

.select-language {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.select-text {
  margin-right: 12px;
  font-weight: 700;
  color: #1e1e41;
}

.select-item-main {
  position: relative;
  margin-left: 6px;
  margin-right: 10px;
  font-weight: 400;
}

.select-item-main .a {
  color: #000;
}

.arrow {
  border: solid #ffa46a;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.down {
  transform: rotate(45deg);
  margin-bottom: 3px;
  transition: 0.3s;
}

.select-language:hover .down {
  margin-bottom: -2px;
  transform: rotate(-135deg);
}

.select-item-wrapper {
  position: relative;
  display: flex;
  padding-right: 5px;
  align-items: center;
}

.select-item-wrapper img {
  height: 16px;
}

.select-list {
  position: absolute;
  border: 1px solid #1e1e41;
  border-radius: 2px 4px 2px 4px;
  background-color: #ffffff;
  padding: 7px;
  width: max-content;
  top: 20px;
  left: -2px;
  transition: 0.3s;
  box-shadow: 0px 4px 0px rgb(0 0 0 / 5%);
}

.select-list &gt; :not(:last-child) {
  margin-bottom: 5px;
}

.select-item {
  display: flex;
  align-items: center;
  margin-left: 3px;
}

.select-item a {
  margin-left: 6px;
}

.select-item img {
  width: 16px;
  height: 16px;
}

.select-list {
  opacity: 0;
  visibility: hidden;
}

.select-language:hover .select-list {
  opacity: 1;
  visibility: visible;
}

.select-language:active .select-list {
  opacity: 1;
  visibility: visible;
}

.header__right {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}

.header__logo {
  width: 110px;
  height: 36px;
}

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

.header__login-link {
  margin-right: 15px;
  margin-left: 25px;
  color: #1e1e41;
  font-weight: 400;
}

.header__text {
  margin-right: 50px;
  color: #a7a7a7;
}

/* banner section */

.banner {
  position: relative;
  background-color: #1e1e41;
  background-size: contain;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.banner__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner__wrapper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: -20%;
  background: url("./image/elipse.svg") no-repeat;
  background-size: cover;
}

.banner__right {
  width: 100%;
  margin-top: 125px;
  margin-bottom: 85px;
  z-index: 2;
}

.banner__right h1 {
  text-align: right;
}

.banner__right h1 strong {
  color: rgb(30, 30, 65);
  font-size: 50px;
  font-weight: 800;
  font-family: "Uni Neue", sans-serif;
}

.small-title {
  display: block;
  margin-bottom: 12px;
  text-align: right;
  font-family: "Overpass", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #1c1c1c;
}

.big-title {
  line-height: 100%;
  margin-bottom: 40px;
  display: block;
}

.show-desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 50px;
}

.show-desktop p {
  color: #1e1e41;
  text-align: right;
  line-height: 26px;
  max-width: 481px;
}

.domain-search {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.domain-search__block {
  max-width: 531px;
  width: 100%;
}

.domain-search__form {
  display: flex;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  border: 1px solid #dedede;
  border-radius: 6px 20px;
  background: #fff;
}

.domain-search__input {
  padding: 10px 12px;
  width: calc(100% - 160px);
  height: 54px;
  font-family: Overpass, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: lowercase;
  color: #1e1e41;
  border: 0;
  background: transparent;
  appearance: none;
}

.domain-search__input::placeholder {
  color: #1e1e41;
}

.domain-search__input:focus::placeholder {
  color: #c4c4c4;
}

.domain-search__button {
  justify-content: center;
  width: 156px;
  height: 54px;
  border-radius: 5px 10px;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0px 4px 0px rgba(255, 214, 114, 0.2);
}

.domain-search__text {
  padding: 8px 25px;
  margin: 0 26px;
  font-size: 12px;
  font-weight: 700;
  color: #1e1e41;
}

.domain-search__text-link {
  color: #ff7d81 !important;
}

.banner__image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background {
  bottom: 0;
  left: -200px;
  position: absolute;
  animation: slideLeft 0.7s ease-in-out;
}

@keyframes slideLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.hero-img {
  position: absolute;
  bottom: 0;
  left: -235px;
  animation: slideLeft 0.7s ease-in-out;
}

.banner__image-bottom {
  display: flex;
  justify-content: space-between;
  position: absolute;
  align-items: center;
  max-width: 464px;
  width: 100%;
  bottom: 0;
  left: 0;
  animation: slideTop 0.7s ease-in-out;
}

@keyframes slideTop {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

.square {
  position: relative;
  bottom: -8px;
  height: 33px;
  width: 33px;
  background-color: #94abff;
}

.triangle-1 {
  position: relative;
  bottom: -8px;
  height: 50px;
  width: 50px;
  background: #ffa46a;
  transform: rotate(-44.45deg);
  border-radius: 0px 0px 0px 50px;
}

.triangle-3 {
  position: relative;
  bottom: -4px;
  height: 50px;
  width: 50px;
  background: #92e990;
  transform: rotate(-16.89deg);
  border-radius: 0px 0px 0px 50px;
}

.square-1 {
  width: 50px;
  height: 50px;
  background: #a67ee1;
}

.square-2 {
  height: 50px;
  width: 50px;
  background: #ff87ba;
  border-radius: 0px 0px 40px 0px;
}

.triangle {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #bcefff 50%, #ff7d81 50%);
}

.circle {
  height: 44px;
  width: 44px;
  background: #ffd672;
  border-radius: 50%;
}

.domain-search__text {
  padding: 8px 0;
}

/* media quary banner section */

@media screen and (min-width: 1580px) {
  .banner {
    padding-right: calc((100% - 1080px) / 2);
    padding-left: calc((100% - 1080px) / 2);
  }

  .banner__wrapper {
    overflow: unset;
  }
}

@media screen and (max-width: 1580px) {
  .banner__right {
    padding: 0 150px;
  }

  .banner__image-bottom {
    left: 15px;
  }

  .hero-img {
    left: -190px;
  }

  .hero-background {
    left: -155px;
  }
}

@media screen and (max-width: 991px) {
  .banner {
    margin-bottom: 30px;
  }

  .banner__right {
    padding: 20px;
    margin: 0;
  }

  .banner__right h1 strong {
    min-height: 10px;
    font-size: 35px;
  }

  .banner__right h1 p {
    min-height: 10px;
    font-size: 35px;
  }

  .banner__wrapper::before {
    width: 90%;
  }

  .small-title {
    margin-bottom: 8px;
  }

  .header__left {
    flex-direction: column;
  }

  .header__text {
    margin-right: 0;
  }

  .select-language {
    margin-left: 0;
    z-index: 2;
  }

  .domain-search__input {
    padding: 10px 8px;
    width: calc(100% - 110px);
    letter-spacing: 0.05em;
  }

  .domain-search__button {
    width: 110px;
  }

  .domain-search {
    margin-bottom: 20px;
  }

  .hero-img {
    height: 100%;
    left: -162px;
  }

  .hero-background {
    height: 100%;
  }

  .square {
    height: 22px;
    width: 22px;
  }

  .triangle-1,
  .square-1,
  .square-2,
  .triangle-3,
  .triangle {
    height: 30px;
    width: 30px;
  }

  .circle {
    height: 33px;
    width: 33px;
  }

  .banner__image-bottom {
    max-width: 300px;
  }
}

@media screen and (max-width: 781px) {
  .banner__wrapper {
    flex-direction: column;
    background-color: #ffe8ae;
  }

  .banner__wrapper::before {
    content: none;
  }

  .banner__right {
    order: 1;
    width: 100%;
  }

  .show-desktop,
  .header__text {
    display: none;
  }

  .hero-img {
    left: -106px;
  }
  .hero-background {
    left: -100px;
  }
}

@media screen and (max-width: 767px) {
  .domain-search__text {
    display: none;
  }
}

@media screen and (max-width: 392px) {
  .header__left {
    align-items: center;
  }

  .header__button {
    padding: 5px 10px;
  }

  .header__right {
    justify-content: center;
  }

  .header__login-link {
    margin-left: 0px;
    margin-bottom: 5px;
  }

  .select-language {
    margin-bottom: 10px;
  }
}

/* usp section */

.usp-section {
  padding-top: 55px;
  padding-bottom: 35px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.usp-section__carousel {
  display: flex;
}

.usp-section__item-wrapper {
  min-width: 216px;
}

.usp-section__title {
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}

.usp-section__title &gt; strong {
  font-size: 32px;
  font-family: "Uni neue", sans-serif;
  font-weight: 800;
  color: #1e1e41;
}

.usp-section__list {
  display: flex;
}

.usp-section__item {
  margin-right: 5px;
}

.usp-section__top {
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.usp-section__wrapper {
  touch-action: pan-y pan-x;
}

.usp-section__list-title {
  font-family: "Uni neue", sans-serif;
  padding-left: 10px;
  width: calc(100% - 50px);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.usp-section__block &gt; p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 90%;
}

.usp-section__icon {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #1e1e41;
  border-radius: 2px 8px;
  background-color: #ffa46a;
}

.icon-2 {
  background-color: #bcefff;
}

.icon-3 {
  background-color: #ffd672;
}

.icon-4 {
  background-color: #ffa6c2;
}

.icon-5 {
  background-color: #92e990;
}

.white-dots {
  display: flex;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.glide__bullet {
  width: 7px;
  height: 7px;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  margin: 0 5px;
  background: #1e1e41;
  transition: 0.25s ease-in-out;
  position: relative;
  z-index: 9;
}

.glide__bullet-active {
  width: 26px;
}

.own-carousel__container {
  display: none;
}

/* media usp-section */

@media screen and (max-width: 1200px) {
  .usp-section__carousel {
    display: none;
  }

  .usp-section__item-wrapper {
    min-width: unset;
  }

  .own-carousel__container {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .usp-section {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .usp-section__title {
    padding-right: 20px;
    padding-left: 20px;
  }

  .usp-section__title strong {
    font-size: 24px;
  }

  .usp-section__wrapper {
    margin-left: 10px;
  }
}

@media screen and (max-width: 401px) {
  .usp-section__item {
    margin: 0 20px;
  }
}

/* FAQ */

.faq-section {
  color: #fff;
  background: #1e1e41;
}

.faq-section__title {
  font-family: "Uni neue", sans-serif;
  font-weight: 800;
  font-size: 32px;
  padding-top: 55px;
  margin-bottom: 40px;
}

.faq-section-top {
  margin-bottom: 20px;
}

.faq-section__wrapper {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.faq-section__wrapper:last-child {
  border-bottom: none;
}

.faq-section__question {
  font-family: "Uni neue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  width: 33.33%;
}

.faq-section__text {
  max-width: 600px;
  color: #fff;
  line-height: 1.65;
}

.faq-section__search {
  display: flex;
  align-self: center;
}

.faq-search {
  margin-left: 8%;
  flex-basis: 50%;
}

.faq-section__form {
  max-width: 531px;
}

/* media query faq-section */

@media screen and (max-width: 991px) {
  .faq-section__wrapper {
    flex-direction: column;
  }

  .faq-section__text {
    max-width: unset;
  }

  .faq-search {
    flex-basis: unset;
    width: 100%;
  }

  .faq-section__question {
    width: 100%;
    margin-bottom: 10px;
  }

  .faq-search {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .faq-section__search {
    flex-direction: column;
    align-items: center;
  }

  .faq-section__search img {
    margin: 0 auto;
  }
}

/* help-section */

.help-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
}

.help-section__left {
  padding: 60px 290px 60px 0;
  position: relative;
  z-index: 2;
  width: 50%;
  background: #ffe8ae;
}

.help-section__left p,
.help-section__right p {
  line-height: 1.65;
  margin-bottom: 30px;
  color: #1e1e41;
}

.help-section__left::after {
  position: absolute;
  top: 0;
  right: 100%;
  z-index: -1;
  width: 6000px;
  height: 100%;
  background: #ffe8ae;
  content: "";
}

.help-section__title {
  color: rgb(30, 30, 65);
  margin-bottom: 20px;
  font-family: "Uni neue", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

.help-section__link {
  padding: 0 26px 0 0;
  margin-top: 30px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #ff7d81;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.help-section__link::after {
  content: "";
  position: absolute;
  background: url("./image/arrow-right.png"), no-repeat;
  height: 25px;
  width: 25px;
  top: 50%;
  right: -5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  transform: translateY(-50%);
}

.help-section__img1 {
  position: absolute;
  right: -158px;
  bottom: 0;
  max-width: 478px;
}

.help-section__img2 {
  position: absolute;
  right: -165px;
  bottom: -170px;
  max-width: 409px;
}

.help-section__right {
  padding: 60px 180px 60px 70px;
  position: relative;
  z-index: 2;
  width: 50%;
  color: #1e1e41;
  background-color: #ffd0df;
}

.help-section__right::after {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 6000px;
  height: 100%;
  background: #ffd0df;
  content: "";
}

/* help section media query */

@media screen and (max-width: 1109px) {
  .help-section {
    height: 530px;
  }

  .help-section__left {
    padding: 40px 230px 40px 0;
  }

  .help-section__right {
    padding: 40px 140px 40px 40px;
  }

  .help-section__img1 {
    max-width: 400px;
  }

  .help-section__img2 {
    right: -140px;
    bottom: -70px;
    max-width: 305px;
  }
}

@media screen and (max-width: 991px) {
  .help-section {
    height: unset;
  }
  .help-section__left {
    padding: 40px 10px 240px;
  }

  .help-section__right {
    padding: 40px 10px 240px 40px;
  }

  .help-section__img1 {
    right: 0;
    bottom: -60px;
    max-width: 300px;
  }

  .help-section__img2 {
    right: -50px;
    bottom: -120px;
    transform: rotate(30deg);
  }
}

@media screen and (max-width: 767px) {
  .help-section__left {
    width: 100%;
  }

  .help-section__left::after {
    right: -20px;
  }

  .help-section__right {
    padding-left: 0;
    width: 100%;
  }

  .help-section__right::after {
    left: -20px;
  }
}

/* footer */

.footer {
  padding-top: 55px;
  padding-bottom: 50px;
  position: relative;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  color: #fff;
  background: #1e1e41;
}

.footer__col1 {
  width: 15%;
}

.footer__logo {
  margin-bottom: 10px;
  display: block;
  width: 103px;
}

.footer__col1 p {
  color: #dedede;
  margin-bottom: 30px;
}

.footer__gdpr {
  padding: 10px 0 0 50px;
  position: relative;
  max-width: 115px;
  min-height: 53px;
  line-height: 1.1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.footer__gdpr strong {
  font-family: "Uni Neue", sans-serif;
}

.footer__gdpr span {
  font-size: 12px;
}

.footer__gdpr-img {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 38px;
  transform: translateY(-50%);
}

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

.footer__col2 {
  padding-top: 15px;
  width: 19%;
}

.footer__plan {
  padding: 17px;
  max-width: 163px;
  color: #1e1e41;
  border-radius: 10px 20px;
  background: #94abff;
}

.footer__plan strong {
  font-family: "Uni Neue", sans-serif;
  color: #1e1e41;
  border-radius: 10px 20px;
  background: #94abff;
}

.footer__plan span {
  margin-bottom: 8px;
  margin-bottom: 14px;
  display: block;
  font-size: 14px;
  line-height: 1.6;
}

.footer__col3 {
  padding-top: 10px;
  width: 17.5%;
}

.footer__title {
  margin-bottom: 8px;
  font-family: "Uni neue", sans-serif;
  font-weight: 700;
  line-height: 1.65;
}

.footer__menu-item {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.65;
}

.footer__menu-link {
  color: #dedede;
}

.footer__menu-link:hover {
  color: #ffa46a;
}

.footer__menu {
  margin-bottom: 20px;
}

.footer__col4 {
  padding-top: 10px;
  width: 17%;
}

.footer__col5 {
  padding-top: 10px;
  width: 17%;
}

.footer__col6 {
  padding-top: 10px;
  width: 14%;
}

.footer__social {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer__social-item {
  margin-right: 15px;
}

.footer__social-link {
  display: block;
}

.footer__rated {
  margin-top: 25px;
}

.footer__rated img {
  width: 149px;
}

.footer__card {
  width: 149px;
  margin-bottom: 25px;
}

/* footer media query */

@media screen and (max-width: 991px) {
  .footer__col1,
  .footer__col2 {
    width: 33.333%;
  }

  .footer__col3 {
    order: 4;
    width: 33.333%;
  }

  .footer__col4 {
    order: 5;
    width: 33.333%;
  }

  .footer__col5 {
    order: 6;
    width: 33.333%;
  }

  .footer__col6 {
    margin-bottom: 20px;
    width: 33.333%;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 25px;
    padding-bottom: 110px;
    text-align: center;
  }

  .footer__bottom {
    padding: 0 0 30px;
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 264px;
    text-align: left;
    transform: translateX(-50%);
  }

  .footer__col1,
  .footer__col2,
  .footer__col3,
  .footer__col4,
  .footer__col5 {
    order: inherit;
    width: 100%;
  }

  .footer__logo {
    margin: 0 auto 10px;
  }

  .footer__col6 {
    width: 100%;
  }

  .footer__plan {
    margin: 10px auto 25px;
    padding: 10px 15px 15px;
    text-align: left;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__card {
    margin: 0 auto 25px;
  }
}
</pre></body></html>