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

* {
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Roboto", sans-serif;
  margin-top: 8rem;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

@media screen and (min-width: 1403px) {
  body {
    margin-top: 10rem;
  }
}
body {
  color: #0b2c53;
}

p:not(:last-child) {
  margin-bottom: 1rem;
}

a {
  text-decoration: underline;
  color: #1977d3;
}

.basic-list li:not(:last-child) {
  margin-bottom: 1rem;
}

.checklist {
  padding: 0;
  list-style: none;
}
.checklist li {
  display: flex;
  gap: 1.5rem;
  text-align: justify;
}
.checklist li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.checklist li img {
  width: 3rem;
  height: 3rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Lora", serif;
  font-weight: 600;
  line-height: normal;
}

input,
textarea {
  padding: 0 1rem;
  border-radius: 0.5rem;
  border: 2px solid #1977d3;
  background: transparent;
  outline: none;
}

dialog {
  color: #0b2c53;
}

.heading-hero {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
}

.heading-xxl {
  font-size: clamp(6rem, 10vw, 12rem);
}

.heading-lg {
  font-size: clamp(3rem, 4vw, 6.5rem);
}

.heading-md {
  font-size: clamp(2.4rem, 3vw, 4rem);
}

.heading-sm {
  font-size: clamp(2rem, 2vw, 3rem);
}

.heading-xs {
  font-size: 2rem;
}

.text-blue {
  color: #1977d3;
}

.text-emphasize {
  font-family: "Lora", serif;
}

.text-justify {
  text-align: justify;
}

/*=== CONTAINER ===*/
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5.8vw;
}

/*=== PADDING ===*/
.padding-y {
  padding-block: min(10vh, 10rem);
}

.padding-e {
  padding-bottom: min(10vh, 10rem);
}

/*=== MARGIN ===*/
.margin-50 {
  margin-bottom: min(5vw, 7rem) !important;
}

/*=== BACKGROUND COLOR ===*/
.bg-light-blue {
  background-color: #f5f8fb;
}

.bg-light-beige {
  background-color: #faf9f6;
}

.bg-dark-blue {
  background-color: #0b2c53;
}

/*=== ON SCROLL ===*/
.hidden {
  opacity: 0;
  transform: translateY(5rem);
  transition: all 0.8s;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 250ms;
}

/*=== FORM ===*/
.form-single-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 360px) {
  .form-single-group {
    flex-direction: row;
    gap: 1rem;
  }
  .form-single-group > input:first-child {
    flex: 1;
  }
}

/*=== COLUMN TEXT ===*/
.column-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.column-content__text {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-bottom: 4rem;
}
.column-content__text:not(:last-child) {
  border-bottom: 1px solid #e5e4e3;
}
.column-content__text h3 {
  color: #1977d3;
}
.column-content__text p {
  text-align: justify;
}
@media (min-width: 768px) {
  .column-content__text > * {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .column-content__text {
    flex-direction: row;
    justify-content: space-between;
  }
}

/*------HEADER------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #e5e4e3;
  background-color: #fff;
  z-index: 12;
}
.header a {
  text-decoration: none;
}
.header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*------NAV BAR------*/
.nav {
  display: block;
  height: 8rem;
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  height: 50%;
}
.nav__logo img {
  height: 100%;
}
.nav__toggle {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
}
.nav__toggle-menu, .nav__toggle-close {
  color: #0b2c53;
  font-size: 2.2rem;
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
.nav__link {
  color: #0b2c53;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: #faf9f6;
}

/*------NAV BAR MOBILE------*/
@media screen and (max-width: 1403px) {
  .nav__menu {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 6rem;
    width: 100%;
    height: calc(100vh - 7.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
}
/*------SHOW NAVBAR------*/
.show-menu {
  opacity: 1;
  top: 7.5rem;
  pointer-events: initial;
}

/*------SHOW ICON------*/
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*------DROPDOWN------*/
.dropdown__button {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 2rem;
  transition: transform 0.4s;
}

.dropdown__content,
.dropdown__group,
.dropdown__list {
  display: grid;
}

.dropdown__container {
  background-color: #fff;
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown__content {
  row-gap: 2.5rem;
}

.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 1.5rem;
}
.dropdown__group:first-child {
  margin-top: 2rem;
}
.dropdown__group:last-child {
  margin-bottom: 2rem;
}

.dropdown__title {
  font-weight: 500;
}

.dropdown__list {
  row-gap: 1rem;
}

.dropdown__link {
  color: #0b2c53;
  transition: color 0.3s;
}

.dropdown__link:hover {
  color: #0b2c53;
}

.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

.dropdown__tabs {
  display: none;
}

.dropdown__tab-title {
  padding: 2rem 2rem;
  color: #0b2c53;
  border-radius: 0.5rem;
}

.dropdown__tab-title.tab-title--active {
  background-color: #cdddec;
}

/*------BREAKPOINTS------*/
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
@media screen and (min-width: 1403px) {
  .nav {
    height: 10rem;
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    gap: 3rem;
    height: 100%;
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    border-bottom: solid 1px transparent;
    padding: 0;
    font-weight: 500;
  }
  .nav__link:hover {
    background-color: initial;
    border-bottom: solid 1px #1977d3;
  }
  .dropdown__button {
    gap: 0.5rem;
    pointer-events: none;
  }
  .dropdown__container {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 10.3rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__container-sm {
    left: initial;
    right: initial;
  }
  .dropdown__container-sm .dropdown__group {
    padding-block: 2rem;
    padding-inline: 1.5rem;
  }
  .dropdown__container .dropdown__content {
    grid-template-columns: 0.5fr 1fr;
    column-gap: 1.5rem;
    max-width: 1024px;
    padding: 0 1.5vw;
    margin-inline: auto;
  }
  .dropdown__container-sm .dropdown__content {
    display: block;
    width: 100%;
    min-width: 35rem;
    margin-inline: auto;
    padding: 0 1vw;
  }
  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child,
  .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 1.5rem;
  }
  .dropdown__item {
    border-bottom: solid 2px transparent;
    cursor: pointer;
  }
  .dropdown__arrow {
    display: none;
  }
  .dropdown__item:hover {
    border-bottom: solid 2px #1977d3;
  }
  .dropdown__item:hover > .dropdown__container {
    top: 10rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
  .dropdown__tabs {
    display: grid;
  }
  .dropdown__tab-content {
    background-color: #faf9f6;
    border-radius: 0.5rem;
    width: 100%;
    padding: 2rem 4rem;
  }
  .dropdown__tab-list {
    display: none;
  }
  .dropdown__tab-list.tab-list--active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.btn-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  border-radius: 3rem;
  background-color: #1977d3;
  border: 2px solid transparent;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
  }
}
.btn-primary--outline {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 3rem;
  background-color: transparent;
  border: 2px solid #1977d3;
  color: #1977d3;
}
@media (min-width: 768px) {
  .btn-primary--outline {
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
  }
}
.btn-primary:hover {
  cursor: pointer;
}

.accordion {
  width: 100%;
  padding: 1.5rem;
}
@media (min-width: 1200px) {
  .accordion {
    min-width: 530px;
  }
}
.accordion__content {
  border-bottom: 2px solid #0b2c53;
  overflow: hidden;
}
.accordion__content header {
  padding: 2.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion__content i {
  color: #1977d3;
}
.accordion__title {
  font-family: "Lora", serif;
  font-weight: 500;
}
.accordion__description {
  text-align: justify;
  height: 0;
  transition: all 0.5s ease-out;
}

.hero {
  background: linear-gradient(294deg, #fff 21.44%, #f1f8ff 107.59%);
  /*=== HERO SLIDER ===*/
  /*=== HERO TIMELINE ===*/
  /*=== HERO BUTTONS ===*/
}
@media (min-width: 992px) {
  .hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.hero__slider {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-basis: 100%;
}
.hero__slider-content {
  position: relative;
}
.hero__slider-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url("../images/logo/tmec-logo-icon-only.png");
  background-size: contain;
  background-position: 50% 0;
  background-repeat: no-repeat;
}
.hero__slide {
  display: none;
  flex-direction: column;
  align-items: center;
  transform: translateY(15rem);
}
.hero__slide-content {
  color: #5d7da1;
}
.hero__slide--active {
  display: flex;
}
.hero__slide-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero__slide-content h3 {
  color: #244b7a;
  font-weight: 500;
}
.hero__slide-content a {
  color: #5d7da1;
  text-decoration: underline;
}
.hero__slide-img {
  width: auto;
  height: 34.4rem;
}
.hero__timeline-bg {
  position: relative;
}
.hero__timeline {
  position: relative;
}
.hero__timeline-container:not(:last-child) {
  position: relative;
  height: 10.7rem;
}
.hero__timeline-container:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #cdddec;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}
.hero__timeline-stamp {
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: #cdddec;
}
.hero__timeline-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__timeline-main .hero__timeline-stamp {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #1977d3;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s;
}
.hero__timeline-main .hero__timeline-stamp.stamp-active {
  opacity: 1;
  transform: scale(1);
}
.hero__timeline-main .hero__timeline-container::after {
  width: 2px;
  background-color: #1977d3;
  height: 0;
  top: 0;
  overflow: hidden;
}
.hero__timeline-main .hero__timeline-container.timeline-go::after {
  animation: timeline 5s linear forwards;
}
.hero__buttons {
  display: flex;
  gap: 2rem;
}

/*=== FEATURES ===*/
.features {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 992px) {
  .features {
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-between;
  }
}
.features__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

/*=== POPULAR CLINICAL SITES ===*/
.clinical-sites {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (min-width: 992px) {
  .clinical-sites {
    gap: 0;
    flex-direction: row;
    justify-content: space-between;
  }
}
.clinical-sites__list {
  flex: 0.7;
}
.clinical-sites__list h3 {
  color: #1977d3;
  padding-block: 2.5rem;
}
.clinical-sites__list h3:not(:last-child) {
  border-bottom: 2px solid #1977d3;
}
.clinical-sites__globe {
  align-self: center;
  position: relative;
}
.clinical-sites__img.hidden {
  transform: translateY(7%);
  transition: all 1s;
}
.clinical-sites__img.show {
  opacity: 1;
  transform: translateX(0);
}
.clinical-sites__doctor-icon {
  position: absolute;
  width: 25%;
}
.clinical-sites__doctor-icon--1 {
  top: 0;
  left: 0;
}
.clinical-sites__doctor-icon--2 {
  top: 0;
  right: 0;
}
.clinical-sites__doctor-icon--3 {
  bottom: 0;
  left: 0;
}
.clinical-sites__doctor-icon--4 {
  bottom: 0;
  right: 0;
}
.clinical-sites__doctor-icon.hidden {
  transform: scale(0);
  transition: all 1s;
}
.clinical-sites__doctor-icon.show {
  opacity: 1;
  transform: scale(1);
}

/*=== ANIMATIONS ===*/
.slide-up {
  animation: slide-up 1s forwards;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes timeline {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.swiper-pagination-bullet {
  text-align: left;
}

@media (min-width: 992px) {
  .tabs {
    display: flex;
  }
}
.tabs__content {
  flex-basis: 100%;
}
.tabs__list-item {
  padding: 2rem;
  background-color: #f8fcff;
  cursor: pointer;
}
.tabs__list-item h3 {
  font-weight: 500;
  color: #cdddec;
}
.tabs__list-item.tab-active {
  position: relative;
  background-color: #fff;
}
.tabs__list-item.tab-active h3 {
  color: #1977d3;
}
.tabs__list-item.tab-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background-color: #1977d3;
}
.tabs__content {
  background: #fff;
  padding: 3rem 5rem;
}
.tabs__content-item {
  display: none;
}
.tabs__content-item.content-active {
  display: block;
  animation: slide-up 0.8s forwards;
}

.footer {
  color: #cdddec;
}
.footer__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  justify-content: space-between;
  gap: 2rem;
}
.footer hr {
  opacity: 0.2;
}
.footer a {
  color: #cdddec;
  text-decoration: none;
}
.footer ul {
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .footer__form input {
    color: #cdddec;
  }
  .footer__form input::placeholder {
    color: #cdddec;
  }
}
.footer__connect {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 3rem;
}
.footer__connect-social {
  display: flex;
  gap: 1.5rem;
}
.footer__privacy {
  display: flex;
  gap: 3rem;
}
.footer__copyright {
  opacity: 0.4;
}

.simple-hero {
  background: linear-gradient(179deg, #f1f8ff -28.77%, #fff 95.22%);
  min-height: 53.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: 2.5vw;
}

.info-box {
  font-family: "Lora", serif;
  background-color: #fff;
  padding: 5vw 4vw;
  border-radius: 12px;
  border: 2px solid #e5e4e3;
}
.info-box p {
  padding-top: 3rem;
  position: relative;
}
.info-box p::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14.2rem;
  height: 1px;
  background-color: #1977d3;
}

.custom-slider {
  max-width: 950px;
  text-align: justify;
  position: relative;
}
.custom-slider-next, .custom-slider-prev {
  font-size: 3rem;
  color: #1977d3;
  cursor: pointer;
}
.custom-slider-next {
  position: absolute;
  right: 0;
}
.custom-slider .swiper-pagination {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .custom-slider .swiper-pagination {
    flex-direction: row;
    gap: 0;
  }
}
.custom-slider .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.custom-slider .swiper-pagination-bullet:not(:last-child)::after {
  display: none;
  content: "";
  height: 1px;
  margin: 0 17px;
  width: 5vw;
  background-color: #1977d3;
}
@media (min-width: 768px) {
  .custom-slider .swiper-pagination-bullet:not(:last-child)::after {
    display: inline-block;
  }
}
.custom-slider .swiper-pagination-bullet-active {
  color: #1977d3;
}
.custom-slider .swiper-pagination-bullet .heading-sm {
  font-family: "Lora", serif;
}

/*=== TIPS ===*/
.tips__subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  position: relative;
}
.tips__subtitle::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 1px;
  background-color: #0b2c53;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

@media (min-width: 992px) {
  .split-hero {
    display: flex;
  }
}
.split-hero__left, .split-hero__right {
  flex: 1;
}
.split-hero__right {
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .split-hero__right {
    padding-inline: 5.4vw;
  }
}
.split-hero__left {
  padding-inline: 5.4vw;
  background: linear-gradient(179deg, #f1f8ff -28.77%, #fff 95.22%);
}
@media (min-width: 992px) {
  .split-hero__left {
    display: block;
    text-align: left;
  }
}

.about-video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .about-video {
    position: absolute;
    left: 0;
    top: 0;
  }
}

@media (min-width: 992px) {
  .why-work-tmec {
    display: flex;
  }
}
.why-work-tmec .heading-lg {
  flex: 3;
}
.why-work-tmec-text-grid {
  flex: 7;
}

.why-work-tmec-text-grid {
  display: grid;
  gap: 1.5rem;
  text-align: justify;
}
@media (min-width: 992px) {
  .why-work-tmec-text-grid {
    gap: 3.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .why-work-tmec-text-grid--lg {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.slanted-cards-wrapper {
  flex-wrap: wrap;
}

.slanted-card {
  width: 100%;
  max-width: max-content;
  position: relative;
}
.slanted-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background-color: #0b2c53;
  padding: 2rem;
}
.slanted-card__content::before {
  content: "";
  position: absolute;
  height: 5rem;
  width: 100%;
  top: -4.9rem;
  background-color: #0b2c53;
  left: 0;
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
}
.slanted-card__content:hover {
  cursor: pointer;
}
.slanted-card__desc {
  overflow: hidden;
  height: 5rem;
  transition: height 0.5s;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 4.4vw;
}
.gallery-grid__item {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}
.gallery-grid__img {
  grid-column: 1/4;
  grid-row: 1/2;
}
.gallery-grid__caption {
  padding: 1rem;
  border-top: 2px solid #0b2c53;
  background: linear-gradient(180deg, #faf9f6 0%, rgba(255, 255, 255, 0) 100%);
  grid-column: 3/7;
  grid-row: 1/2;
  height: max-content;
}

@media (min-width: 768px) {
  .form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.form__group {
  display: flex;
  flex-direction: column;
}
.form__group input, .form__group textarea {
  border: 2px solid #e5e4e3;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  transition: border 0.5s;
}
.form__group input:focus, .form__group textarea:focus {
  border: 2px solid #1977d3;
}
.form__message {
  padding: 1rem 2rem;
  background-color: #f5f8fb;
  color: #1977d3;
  border-radius: 0.5rem;
}

/*=== LOADING ===*/
.loader {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
  border: 2px solid;
  border-color: #cdddec #cdddec transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 2px solid;
  border-color: transparent #1977d3 #1977d3;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.contact {
  background: linear-gradient(179deg, #f1f8ff 0%, #fff 20%);
}
.contact__layout {
  padding: 5rem 3rem;
  background-color: #fff;
  border: 1px solid #e5e4e3;
  border-radius: 1rem;
}

.modal {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e5e4e3;
  top: 50%;
  left: 50%;
  padding-inline: 3vw;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .modal {
    width: 50vw;
  }
}
.modal .ri-close-line {
  position: absolute;
  color: #1977d3;
  font-size: 3rem;
  top: 1.5vh;
  right: 2rem;
  cursor: pointer;
}