:root {
  --black: #000;
  --white: #fff;
  --primary: #0064e0;
  --light-grey: #f7f8fc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: var(--light-grey);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

input,
textarea,
button {
  outline: none;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(138, 138, 138, 0.12);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 1230px) {
  .container {
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}

a {
  text-decoration: none;
  color: var(--primary);
}
a:hover {
  color: var(--primary);
}

.btn_primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 400;
  cursor: pointer;
}
.btn_primary:hover {
  color: var(--white);
  opacity: 0.92;
}
.btn_secondary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(56, 93, 226, 0.2);
  color: var(--primary);
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 200;
  cursor: pointer;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 999;
  padding: 16px 0px;
  -webkit-transition: 150ms;
  transition: 150ms;
}
.header-page {
  background: rgba(247, 248, 252, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 990;
  border-bottom: 1px solid #e5e9ed;
}
.header__wrapper {
  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;
}
@media screen and (max-width: 1024px) {
  .header__logo img {
    height: 40px;
  }
}
.header.active {
  background: rgba(247, 248, 252, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 990;
  border-bottom: 1px solid #e5e9ed;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  font-style: normal;
  line-height: 120%;
  /* 18px */
  letter-spacing: -0.15px;
}
.menu__element {
  padding: 12px 16px 12px 16px;
}
.menu__element a {
  color: #000000;
  -webkit-transition: 200ms;
  transition: 200ms;
}
.menu__element a:hover {
  color: var(--primary);
}

.mobmenu {
  visibility: hidden;
  position: fixed;
  opacity: 0;
  position: fixed;
  width: 100%;
  background: white;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 0;
  top: 0;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  bottom: 100%;
  -webkit-transition-property: bottom;
  transition-property: bottom;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}
.mobmenu.slidebar {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  visibility: visible;
  bottom: 100%;
}
.mobmenu.act {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}
.mobmenu__menu {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 90%;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
}
.mobmenu__element {
  padding: 5px 10px !important;
}
.mobmenu__element .a {
  color: rgb(0, 0, 0);
  font-size: 3rem;
  font-weight: 500;
}
.mobmenu__button {
  position: absolute;
  bottom: 28px;
  width: 100%;
  margin-right: 28px;
}

.bottom {
  display: block;
  width: auto;
  text-align: center;
  margin-left: 5%;
  margin-right: 5%;
}

.path {
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.path:nth-of-type(1).active {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 6px 11px;
  transform-origin: 6px 11px;
}

.path:nth-of-type(2).active {
  display: none;
}

.path:nth-of-type(3).active {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 2px 16px;
  transform-origin: 2px 16px;
}

.services {
  padding: 100px 0px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .services {
    padding: 60px 0px;
  }
}
.services__blur {
  position: absolute;
  left: -100px;
  top: -200px;
}
.services__title {
  text-align: center;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .services__title {
    padding-bottom: 48px;
  }
}
.services__title h2 {
  color: var(--black);
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 118%;
  letter-spacing: -0.36px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .services__title h2 {
    font-size: 32px;
  }
}

.services-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .services-cards {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .services-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 12px;
  }
}
.services-cards__element {
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 32px 32px 26px 32px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  cursor: pointer;
}
.services-cards__element:hover {
  background: var(--primary);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.services-cards__element:hover .services-cards__title span {
  color: var(--white);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.services-cards__element:hover .services-cards__text p {
  color: var(--white);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .services-cards__element {
    text-align: center;
  }
}
.services-cards__icon {
  padding-bottom: 32px;
}
.services-cards__title span {
  color: var(--black);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.17px;
}
.services-cards__text p {
  color: var(--black);
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: -0.17px;
}

@media screen and (max-width: 768px) {
  .swscroll {
    position: relative;
    margin-right: 32px;
    margin-left: 32px;
  }
}

.contactus {
  background: var(--light-grey);
}
.contactus__wrap {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .contactus__wrap {
    padding: 60px 0px 16px;
  }
}
.contactus__blur {
  position: absolute;
  right: 0;
  top: -700px;
}
.contactus__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 2fr;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .contactus__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.contactus__title {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .contactus__title {
    text-align: center;
  }
}
.contactus__title h2 {
  color: var(--black);
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 118%;
  letter-spacing: -0.36px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .contactus__title h2 {
    font-size: 32px;
  }
}
.contactus__text {
  color: var(--black);
  font-family: Manrope;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: -0.17px;
}
@media screen and (max-width: 1024px) {
  .contactus__text {
    text-align: center;
  }
  .contactus__text br {
    display: none;
  }
}

.contact-form__divided {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
}
@media screen and (max-width: 768px) {
  .contact-form__divided {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.contact-form__divider {
  margin-top: 12px;
  margin-bottom: 12px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.contact-form__input input {
  padding: 16px 20px;
  font-family: "Manrope";
  border-radius: 16px;
  border: 1px solid #f1f1f1;
  background: var(--white);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--black);
  text-overflow: ellipsis;
  font-size: 17px;
  font-style: normal;
  font-weight: 200;
  line-height: 180%;
  letter-spacing: -0.17px;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.contact-form__input input:hover {
  border: 1px solid #e2e8ff;
}
.contact-form__input input:hover::-webkit-input-placeholder {
  -webkit-transition: 200ms;
  transition: 200ms;
  color: var(--black);
}
.contact-form__input input:hover::-moz-placeholder {
  -moz-transition: 200ms;
  transition: 200ms;
  color: var(--black);
}
.contact-form__input input:hover:-ms-input-placeholder {
  -ms-transition: 200ms;
  transition: 200ms;
  color: var(--black);
}
.contact-form__input input:hover::-ms-input-placeholder {
  -ms-transition: 200ms;
  transition: 200ms;
  color: var(--black);
}
.contact-form__input input:hover::placeholder {
  -webkit-transition: 200ms;
  transition: 200ms;
  color: var(--black);
}
.contact-form__input input:focus {
  border: 1px solid var(--primary);
  caret-color: var(--primary);
}
.contact-form__input input:focus::-webkit-input-placeholder {
  color: transparent;
}
.contact-form__input input:focus::-moz-placeholder {
  color: transparent;
}
.contact-form__input input:focus:-ms-input-placeholder {
  color: transparent;
}
.contact-form__input input:focus::-ms-input-placeholder {
  color: transparent;
}
.contact-form__input input:focus::placeholder {
  color: transparent;
}
.contact-form__input input::-webkit-input-placeholder {
  color: #5f5f5f;
}
.contact-form__input input::-moz-placeholder {
  color: #5f5f5f;
}
.contact-form__input input:-ms-input-placeholder {
  color: #5f5f5f;
}
.contact-form__input input::-ms-input-placeholder {
  color: #5f5f5f;
}
.contact-form__input input::placeholder {
  color: #5f5f5f;
}
.contact-form__textarea {
  margin-top: 12px;
  padding: 16px 16px 20px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--white);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-transition: 200ms;
  transition: 200ms;
}
.contact-form__textarea:hover {
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-form__textarea:focus-within {
  border: 1px solid var(--primary);
}
@media screen and (max-width: 1024px) {
  .contact-form__textarea {
    border-radius: 16px 16px 24px 24px;
  }
}
.contact-form__textarea textarea {
  width: 100%;
  font-family: "Manrope";
  color: var(--black);
  text-overflow: ellipsis;
  font-size: 17px;
  font-style: normal;
  font-weight: 200;
  line-height: 180%;
  letter-spacing: -0.17px;
  background: none;
  border: 0;
  resize: vertical;
  -webkit-transition: 200ms;
  transition: 200ms;
}
.contact-form__textarea textarea::-webkit-input-placeholder {
  color: #5f5f5f;
  -webkit-transition: 200ms;
  transition: 200ms;
}
.contact-form__textarea textarea::-moz-placeholder {
  color: #5f5f5f;
  -moz-transition: 200ms;
  transition: 200ms;
}
.contact-form__textarea textarea:-ms-input-placeholder {
  color: #5f5f5f;
  -ms-transition: 200ms;
  transition: 200ms;
}
.contact-form__textarea textarea::-ms-input-placeholder {
  color: #5f5f5f;
  -ms-transition: 200ms;
  transition: 200ms;
}
.contact-form__textarea textarea::placeholder {
  color: #5f5f5f;
  -webkit-transition: 200ms;
  transition: 200ms;
}
.contact-form__submit input {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  padding: 16px 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Manrope";
  color: var(--white);
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  cursor: pointer;
}
.contact-form__submit input:hover {
  opacity: 0.92;
}

.txtarea:hover::-webkit-input-placeholder {
  color: var(--black);
}

.txtarea:hover::-moz-placeholder {
  color: var(--black);
}

.txtarea:hover:-ms-input-placeholder {
  color: var(--black);
}

.txtarea:hover::-ms-input-placeholder {
  color: var(--black);
}

.txtarea:hover::placeholder {
  color: var(--black);
}
.txtarea:focus {
  caret-color: var(--primary);
}
.txtarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.txtarea:focus::-moz-placeholder {
  color: transparent;
}
.txtarea:focus:-ms-input-placeholder {
  color: transparent;
}
.txtarea:focus::-ms-input-placeholder {
  color: transparent;
}
.txtarea:focus::placeholder {
  color: transparent;
}

.txtarea:focus .tex {
  caret-color: var(--primary);
}

.texactive {
  border: 1px solid var(--primary);
}

.footer {
  background: var(--white);
  padding-top: 60px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 0px;
    padding-top: 40px;
  }
}
.footer__logo img {
  width: 220px;
}
.footer__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .footer__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__bottom {
    display: block;
  }
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__left {
    border-bottom: 1px solid rgba(95, 95, 95, 0.12);
    margin-bottom: 20px;
  }
}
.footer__text {
  color: #101010;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 25.2px */
  letter-spacing: -0.14px;
}
.footer__text p {
  margin-bottom: 4px;
}
@media screen and (max-width: 1024px) {
  .footer__text p {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .footer__text p {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__text {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 14px;
  }
}
.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.footer__credits span {
  color: #5f5f5f;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: -0.14px;
}
@media screen and (max-width: 1024px) {
  .footer__credits {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(95, 95, 95, 0.12);
  }
}
@media screen and (max-width: 768px) {
  .footer__credits {
    text-align: center;
  }
}
.footer__copyrights {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer__copyrights {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer__copyrights {
    text-align: center;
  }
}
.footer__copyrights span {
  color: #5f5f5f;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: -0.14px;
}

.column__title {
  margin-bottom: 8px;
}
.column__title span {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.15px;
}
.column__link a {
  color: #5f5f5f;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: -0.14px;
}
.column__iconlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .column__iconlink {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.column__socials {
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .column__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer-menu__element {
  margin-bottom: 4px;
}
.footer-menu__element a {
  color: #5f5f5f;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: -0.14px;
}
.footer-menu__element a:hover {
  color: var(--primary);
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.footer-divider {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  height: 1px;
  background: rgba(95, 95, 95, 0.12);
}
@media screen and (max-width: 1024px) {
  .footer-divider {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.cols {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 820px) {
  .cols {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cols__element {
  padding: 72px;
}
@media screen and (min-width: 1900px) {
  .cols__element {
    padding: 144px;
  }
}
@media screen and (max-width: 1024px) {
  .cols__element {
    padding: 56px;
  }
}
.cols__element:nth-of-type(1) {
  background: var(--primary);
}
.cols__element:nth-of-type(2) {
  background: #005cce;
}
.cols__element:nth-of-type(3) {
  background: #0157c1;
}
.cols__title h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cols__title h2 {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 520px) {
  .cols__title h2 {
    font-size: 18px !important;
  }
}
.cols__text p {
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: -0.17px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .cols__text p {
    font-weight: 300;
  }
}
@media screen and (max-width: 768px) {
  .cols__text p {
    font-size: 15px;
  }
}

.main-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1900px) {
  .main-section {
    height: auto;
    padding: 216px 0;
  }
}
@media screen and (max-width: 1020px) {
  .main-section {
    height: auto;
    padding: 120px 0;
  }
}
.main-section__wrap {
  text-align: center;
}
.main-section__tag {
  margin-bottom: 24px;
}
.main-section__tag a {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  font-weight: 300;
  border-radius: 6rem;
}
@media screen and (max-width: 768px) {
  .main-section__tag a {
    font-size: 14px;
  }
}
@media screen and (max-width: 380px) {
  .main-section__tag a {
    font-size: 12px;
  }
}
.main-section__title {
  margin-bottom: 24px;
}
@media screen and (max-width: 820px) {
  .main-section__title {
    margin-bottom: 18px;
  }
}
.main-section__title h1 {
  color: var(--black);
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width: 820px) {
  .main-section__title h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 540px) {
  .main-section__title h1 {
    font-size: 36px;
  }
  .main-section__title h1 br {
    display: none;
  }
}
.main-section__text {
  margin-bottom: 24px;
}
.main-section__text p {
  color: var(--black);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.17px;
}
@media screen and (max-width: 540px) {
  .main-section__text p {
    font-size: 15px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  width: 500px;
  border-radius: 16px;
  -webkit-animation: fadeIn 0.5s ease-in-out, fadeOut 0.5s ease-in-out 2.5s forwards;
  animation: fadeIn 0.5s ease-in-out, fadeOut 0.5s ease-in-out 2.5s forwards;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.successMessage {
  text-align: center;
  padding: 20px 12px;
  background: #fff;
  border: 1px;
  border-radius: 16px;
  border: 1px solid #f1f1f1;
}

.successMessage img {
  width: 50px;
}

.page {
  padding-top: 80px;
  padding-bottom: 80px;
}
