*,
*::before,
*::after {
  user-select: none;
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-block: 0.67em;
  line-height: 1.2; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 50%; } }

body {
  font-family: "Josefin Sans", sans-serif;
  color: #6D5D4B;
  font-weight: 300;
  line-height: 1.6; }

.container {
  display: grid;
  grid-template-rows: max-content max-content max-content repeat(3, min-content);
  grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end]; }
  @media only screen and (max-width: 62.5em) {
    .container {
      grid-template-rows: max-content max-content max-content max-content repeat(3, min-content); } }
  @media only screen and (max-width: 50em) {
    .container {
      grid-template-rows: max-content calc(max-content); } }

.home__main {
  display: grid;
  grid-column: full-start / full-end;
  grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr));
  grid-template-rows: minmax(45vh, 90vh);
  justify-items: center;
  align-items: center;
  background-image: url(/img/background_main.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  margin-top: 10vh; }
  @media only screen and (max-width: 37.5em) {
    .home__main {
      grid-template-rows: minmax(45vh, 30vh);
      grid-auto-rows: 40vh; } }
  .home__main--top {
    grid-column: 1 / -1;
    position: absolute;
    top: 8vh;
    left: 0;
    padding: 1rem;
    color: #fff;
    -webkit-text-stroke: 2px #000;
    paint-order: stroke fill; }
    .home__main--top-content--title {
      animation: moveInRight 1s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
  .home__main--left {
    height: 80%;
    width: 90%;
    animation: moveInRight 1s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
    .home__main--left-content {
      height: 100%;
      width: 100%;
      background-image: url(/img/main_left.webp);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center; }
  .home__main--right {
    height: 80%;
    width: 90%;
    animation: moveInLeft 1s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
    .home__main--right-content {
      height: 100%;
      width: 100%;
      background-image: url(/img/main_right.webp);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center; }

.page-404 {
  display: grid;
  grid-column: full-start / full-end;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #f8f9fa;
  text-align: center;
  padding: 2rem; }
  .page-404__container {
    max-width: 600px;
    margin: 0 auto; }
  .page-404__title {
    font-size: 6rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 1rem; }
  .page-404__text {
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 2rem; }
  .page-404__link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s; }
    .page-404__link:hover {
      background-color: #0062cc; }

.other-page-style-one {
  display: grid;
  padding: 10rem;
  grid-column: full-start / full-end;
  grid-template-columns: repeat(auto-fit, minmax(30vw, 1fr));
  grid-template-rows: minmax(0, max-content);
  gap: 2rem;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  padding: 2rem;
  display: flex;
  align-items: center;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .other-page-style-one {
      padding: 1rem;
      min-height: auto; } }
  .other-page-style-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 0; }
  .other-page-style-one__container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 1; }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__container {
        border-radius: 16px;
        margin: 0; } }
  .other-page-style-one__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 70vh; }
    @media only screen and (max-width: 1024px) {
      .other-page-style-one__content {
        grid-template-columns: 1fr;
        min-height: auto; } }
  .other-page-style-one__left {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__left {
        padding: 2rem; } }
  .other-page-style-one__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 2rem; }
    .other-page-style-one__badge i {
      font-size: 1rem; }
  .other-page-style-one__title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem; }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__title {
        font-size: 2.5rem; } }
    .other-page-style-one__title-highlight {
      background: linear-gradient(135deg, #2563eb, #10b981);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block; }
  .other-page-style-one__subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6; }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem; } }
  .other-page-style-one__features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem; }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__features {
        gap: 1rem;
        margin-bottom: 2rem; } }
  .other-page-style-one__feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease; }
    .other-page-style-one__feature:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
      border-color: rgba(37, 99, 235, 0.2); }
    .other-page-style-one__feature-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #2563eb, #10b981);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.1rem; }
    .other-page-style-one__feature-content h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 0.25rem; }
    .other-page-style-one__feature-content p {
      font-size: 0.9rem;
      color: #64748b;
      margin: 0; }
  .other-page-style-one__highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(16, 185, 129, 0.1));
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid #f59e0b;
    margin-bottom: 3rem; }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__highlight {
        margin-bottom: 2rem;
        padding: 1rem; } }
    .other-page-style-one__highlight-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #f59e0b, #ef4444);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.1rem; }
    .other-page-style-one__highlight p {
      margin: 0;
      font-size: 1rem;
      color: #1e293b;
      line-height: 1.5; }
      .other-page-style-one__highlight p strong {
        color: #2563eb; }
  .other-page-style-one__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem; }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__actions {
        flex-direction: column;
        margin-bottom: 2rem; } }
  .other-page-style-one__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer; }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__btn {
        justify-content: center;
        padding: 1.25rem 2rem; } }
    .other-page-style-one__btn i {
      font-size: 1.1rem; }
    .other-page-style-one__btn--download {
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: white;
      box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); }
      .other-page-style-one__btn--download:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4); }
    .other-page-style-one__btn--contact {
      background: transparent;
      color: #10b981;
      border-color: #10b981; }
      .other-page-style-one__btn--contact:hover {
        background: #10b981;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3); }
  .other-page-style-one__stats {
    display: flex;
    gap: 2rem; }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__stats {
        justify-content: space-between;
        gap: 1rem; } }
  .other-page-style-one__stat {
    text-align: center; }
    .other-page-style-one__stat-number {
      font-size: 2rem;
      font-weight: 700;
      background: linear-gradient(135deg, #2563eb, #10b981);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
      @media only screen and (max-width: 768px) {
        .other-page-style-one__stat-number {
          font-size: 1.5rem; } }
    .other-page-style-one__stat-label {
      font-size: 0.9rem;
      color: #64748b;
      margin-top: 0.25rem; }
      @media only screen and (max-width: 768px) {
        .other-page-style-one__stat-label {
          font-size: 0.8rem; } }
  .other-page-style-one__right {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative; }
    @media only screen and (max-width: 1024px) {
      .other-page-style-one__right {
        padding: 2rem; } }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__right {
        padding: 1.5rem; } }
  .other-page-style-one__image-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem; }
  .other-page-style-one__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease; }
    .other-page-style-one__image--agrem-gest {
      background-image: url("../img/agrem-gest.webp"); }
    .other-page-style-one__image:hover {
      transform: scale(1.05); }
  .other-page-style-one__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease; }
    .other-page-style-one__image-overlay:hover {
      opacity: 1; }
  .other-page-style-one__play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease; }
    .other-page-style-one__play-button:hover {
      transform: scale(1.1);
      background: white; }
  .other-page-style-one__testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    max-width: 400px;
    width: 100%; }
    @media only screen and (max-width: 768px) {
      .other-page-style-one__testimonial {
        padding: 1.5rem; } }
    .other-page-style-one__testimonial-content p {
      font-style: italic;
      color: #334155;
      margin-bottom: 1rem;
      line-height: 1.5;
      font-size: 0.95rem; }
      .other-page-style-one__testimonial-content p::before {
        content: '"';
        font-size: 2rem;
        color: #2563eb;
        line-height: 0; }
      .other-page-style-one__testimonial-content p::after {
        content: '"';
        font-size: 2rem;
        color: #2563eb;
        line-height: 0; }
    .other-page-style-one__testimonial-author strong {
      display: block;
      color: #1e293b;
      font-size: 0.9rem;
      margin-bottom: 0.25rem; }
    .other-page-style-one__testimonial-author span {
      color: #64748b;
      font-size: 0.8rem; }

.floating_btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000; }
  .floating_btn a {
    text-decoration: none; }
  .floating_btn .contact_icon {
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 3px #999;
    transition: all 0.3s ease; }
    .floating_btn .contact_icon:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    .floating_btn .contact_icon .my-float {
      font-size: 30px;
      animation: pulse 2s infinite; }

@keyframes pulse {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 10vh;
  grid-column: full-start / full-end;
  background-color: #7cc5e2;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50; }
  .header__logo {
    grid-column: 1 / 2; }
    .header__logo--image {
      width: 8rem;
      left: 1rem;
      position: fixed;
      top: 1rem; }
  .header__navigation {
    grid-column: 2 / 7;
    justify-self: center; }
    @media (max-width: 50rem) {
      .header__navigation {
        display: none; } }
    .header__navigation--list {
      list-style: none; }
    .header__navigation--item {
      display: inline-block; }
    .header__navigation--link {
      border-radius: 3px;
      text-decoration: none;
      padding: 1.5rem 3rem;
      font-size: 2.5rem;
      color: #272727; }
      .header__navigation--link:hover {
        color: #f59e0b; }

.navigation {
  display: none; }
  @media only screen and (max-width: 768px) {
    .navigation {
      display: block; } }
  .navigation__checkbox {
    display: none; }
  .navigation__button {
    background-color: #fff;
    height: 7rem;
    width: 7rem;
    position: fixed;
    top: 2rem;
    right: 2rem;
    border-radius: 50%;
    z-index: 200;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none; }
  .navigation__background {
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    position: fixed;
    z-index: 100;
    top: 6.5rem;
    right: 6.5rem;
    background-image: radial-gradient(#f6c386, #1d4ed8);
    will-change: transform;
    transform: translateZ(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease-out; }
  .navigation__nav {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    opacity: 1;
    width: 0;
    transition: all .8s;
    margin-left: -300px; }
  .navigation__list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    width: 100%; }
  .navigation__item {
    margin: 1rem; }
  .navigation__link:link, .navigation__link:visited {
    display: inline-block;
    white-space: nowrap;
    font-size: 3rem;
    padding: 1rem 2rem;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
    background-size: 240%;
    transition: all .4s; }
  .navigation__link:hover, .navigation__link:active {
    background-position: 100%;
    color: #1d4ed8;
    transform: translateX(1rem);
    -webkit-tap-highlight-color: transparent;
    outline: none; }
  .navigation__checkbox:checked ~ .navigation__background {
    transform: scale(180); }
  .navigation__checkbox:checked ~ .navigation__nav {
    opacity: 1;
    width: 100%;
    margin-left: 0; }
  .navigation__icon {
    position: relative;
    margin-top: 3.4rem; }
    .navigation__icon, .navigation__icon::before, .navigation__icon::after {
      width: 3rem;
      height: 2px;
      background-color: #64748b;
      display: inline-block; }
    .navigation__icon::before, .navigation__icon::after {
      content: "";
      position: absolute;
      left: 0;
      transition: all .2s; }
    .navigation__icon::before {
      top: -.8rem; }
    .navigation__icon::after {
      top: .8rem; }
  .navigation__button:hover .navigation__icon::before {
    top: -1rem; }
  .navigation__button:hover .navigation__icon::after {
    top: 1rem; }
  .navigation__checkbox:checked + .navigation__button .navigation__icon {
    background-color: transparent; }
  .navigation__checkbox:checked + .navigation__button .navigation__icon::before {
    top: 0;
    transform: rotate(135deg); }
  .navigation__checkbox:checked + .navigation__button .navigation__icon::after {
    top: 0;
    transform: rotate(-135deg); }

.footer {
  grid-column: full-start / full-end;
  background-color: #fff;
  text-align: center;
  padding: 5rem; }
  .footer p {
    color: #334155;
    font-size: 1.5rem; }

.section__cards {
  grid-column: full-start / full-end;
  background-color: #fff;
  padding: 10rem; }
  .section__cards__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    grid-template-rows: minmax(45vh, 75vh);
    grid-auto-rows: 75vh;
    justify-items: center;
    align-items: center;
    border-radius: 5rem; }
    .section__cards__content__card {
      height: 55vh;
      width: 25rem;
      border-radius: 5rem;
      transition: all .8s;
      box-shadow: 1rem 2rem 6rem rgba(0, 0, 0, 0.2); }
      @media only screen and (max-width: 768px) {
        .section__cards__content__card {
          width: 35rem; } }
      .section__cards__content__card-1 {
        animation: moveInUp 1s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
      .section__cards__content__card-2 {
        animation: moveInUp 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
      .section__cards__content__card-3 {
        animation: moveInUp 2s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
      .section__cards__content__card-4 {
        animation: moveInUp 2.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
      .section__cards__content__card:hover {
        background-image: linear-gradient(to bottom left, #f6c386, #1d4ed8); }
        .section__cards__content__card:hover .section__cards__content__card--body-icon,
        .section__cards__content__card:hover .section__cards__content__card--body-title,
        .section__cards__content__card:hover .section__cards__content__card--footer-text {
          transition: all .3s;
          color: #fff; }
      .section__cards__content__card--head {
        background-color: aqua;
        position: relative; }
        .section__cards__content__card--head-icon {
          width: 10rem;
          position: absolute;
          height: 10rem;
          transform: translate(-50%, -50%);
          left: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 2.5rem;
          color: #fff;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center center; }
          .section__cards__content__card--head-icon-1 {
            background-image: url(/img/features-number-01.png); }
          .section__cards__content__card--head-icon-2 {
            background-image: url(/img/features-number-02.png); }
          .section__cards__content__card--head-icon-3 {
            background-image: url(/img/features-number-03.png); }
          .section__cards__content__card--head-icon-4 {
            background-image: url(/img/features-number-04.png); }
      .section__cards__content__card--body {
        height: 25vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-bottom: 2px solid #10b981;
        border-image: linear-gradient(to right, transparent, #10b981, transparent) 1; }
        .section__cards__content__card--body-icon {
          font-size: 4rem; }
        .section__cards__content__card--body-title {
          font-size: 2rem; }
      .section__cards__content__card--footer {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 25vh;
        padding: 3rem; }
        .section__cards__content__card--footer-text {
          font-size: 1.8rem;
          text-align: center; }

.section__about {
  display: grid;
  grid-column: full-start / full-end;
  grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr));
  grid-template-rows: minmax(45vh, 90vh);
  grid-auto-rows: 90vh;
  justify-items: center;
  align-items: center; }
  @media only screen and (max-width: 768px) {
    .section__about {
      grid-template-rows: 110vw 110vw;
      gap: 2rem; } }
  .section__about--left {
    height: 80%;
    width: 80%;
    animation: moveInRight 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
    .section__about--left-content {
      height: 100%;
      width: 100%;
      background-image: url(/img/about_left.webp);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center; }
    @media only screen and (max-width: 768px) {
      .section__about--left {
        order: 2; } }
  .section__about--right {
    height: 70%;
    width: 80%; }
    .section__about--right-content-title {
      display: flex;
      align-items: center;
      line-height: 7rem;
      font-size: 4rem;
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      animation: changeGradientColor .4s linear infinite;
      backface-visibility: hidden; }
    .section__about--right-content-subtitle {
      font-size: 2rem;
      display: flex;
      line-height: 4rem;
      align-items: center;
      animation: moveInUp 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
    .section__about--right-content-text {
      display: flex;
      align-items: center;
      font-size: 1.8rem;
      animation: moveInUp 1s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
    .section__about--right-content-footer {
      display: flex;
      align-items: center;
      height: 12vh; }

.btn-primary {
  padding: 1rem 2rem;
  font-size: 2rem;
  border: none;
  background-image: linear-gradient(to right top, #059669, #7cc5e2);
  border-radius: 2rem;
  font-family: inherit;
  color: #fff;
  transition: all .3s;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 1rem 0.4rem 1rem rgba(0, 0, 0, 0.5); }
  .btn-primary:hover {
    color: #64748b;
    transform: scale(1.2);
    background-image: linear-gradient(to left bottom, #7cc5e2, #7cc5e2); }

.section__services {
  grid-column: full-start / full-end; }
  .section__services__head {
    padding: 0 2rem 0 2rem;
    text-align: center;
    width: 90%;
    margin: 0 auto; }
    .section__services__head--title {
      font-size: 4rem;
      line-height: 5rem; }
    .section__services__head--description {
      font-size: 3rem;
      width: 40rem;
      line-height: 5rem;
      margin: 0 auto; }
  .section__services__cards {
    display: grid;
    grid-column: full-start / full-end;
    grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr));
    justify-items: center;
    align-items: center; }
    @media only screen and (max-width: 768px) {
      .section__services__cards {
        grid-auto-rows: 20rem;
        grid-template-rows: minmax(15rem, 25rem);
        margin-top: 5rem; } }
    .section__services__cards__card {
      cursor: pointer;
      text-decoration: none;
      padding: 1rem;
      display: grid;
      grid-template-columns: 1fr 4fr;
      animation: scaleDecrease 1s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
      .section__services__cards__card--one {
        width: 40rem; }
      .section__services__cards__card--two {
        width: 45rem; }
      .section__services__cards__card--icon-icon {
        color: #059669;
        font-size: 3rem;
        background-color: #7cc5e2;
        border-radius: 50%;
        align-items: center;
        padding: 2rem; }
      .section__services__cards__card--content {
        padding: 1rem; }
        .section__services__cards__card--content-title {
          font-size: 2rem;
          color: #1d4ed8; }
        .section__services__cards__card--content-text {
          color: #1d4ed8;
          font-size: 1.8rem; }

.section__contact {
  grid-column: full-start / full-end;
  background-image: url(/img/contact-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .section__contact__form {
    background-color: #fff;
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.7);
    width: 65%;
    animation: moveInDown 1s cubic-bezier(0.99, 0.13, 0.08, 0.88);
    backface-visibility: hidden;
    transition: all;
    margin: 10rem auto;
    height: max-content;
    padding: 3rem;
    border-radius: 10px; }
    @media (max-width: 50rem) {
      .section__contact__form {
        width: 90%; } }
    .section__contact__form--title {
      text-align: center;
      font-size: 4rem;
      line-height: 0.5rem;
      width: 60vw;
      text-align: center;
      margin: 0 auto; }
      @media (max-width: 50rem) {
        .section__contact__form--title {
          width: 70vw;
          line-height: 3rem; } }
    .section__contact__form--description {
      line-height: 5rem;
      text-align: center;
      font-size: 3rem;
      width: 45vw;
      text-align: center;
      margin: 0 auto; }
      @media (max-width: 50rem) {
        .section__contact__form--description {
          width: 70vw;
          line-height: 3rem; } }
    .section__contact__form__content {
      height: 50%;
      display: grid;
      color: #000;
      grid-template-columns: 3fr 1fr; }
      .section__contact__form__content--right {
        height: 100%; }
        .section__contact__form__content--right-block {
          height: 33.33%;
          align-items: center;
          justify-content: center;
          justify-content: center;
          justify-items: center;
          align-content: center;
          border-left: 1px solid rgba(51, 65, 85, 0.2);
          border-right: 1px solid rgba(51, 65, 85, 0.2);
          display: flex;
          align-items: center;
          flex-direction: column;
          justify-content: center; }
          @media only screen and (max-width: 768px) {
            .section__contact__form__content--right-block {
              padding: .5rem;
              height: max-content;
              align-self: center; }
              .section__contact__form__content--right-block:first-child {
                margin-top: 2rem; } }
          .section__contact__form__content--right-block:first-child {
            border-top: 1px solid rgba(51, 65, 85, 0.2); }
          .section__contact__form__content--right-block:last-child {
            border-bottom: 1px solid rgba(51, 65, 85, 0.2); }
          .section__contact__form__content--right-block-icon {
            font-size: 4rem;
            background-image: linear-gradient(to right, #7cc5e2, #059669);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent; }
          .section__contact__form__content--right-block-text {
            text-align: center;
            font-size: 1.5rem;
            color: #334155; }
      .section__contact__form__content--group {
        display: grid;
        background-color: transparent;
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
        grid-template-rows: minmax(1fr, 1fr); }
        @media only screen and (max-width: 768px) {
          .section__contact__form__content--group {
            grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr)); } }
        .section__contact__form__content--group-one {
          background-color: transparent; }
        .section__contact__form__content--group-two {
          background-color: transparent; }
        .section__contact__form__content--group__content {
          margin: 1rem 0; }
          .section__contact__form__content--group__content--input {
            width: 30rem;
            font-size: 1.5rem;
            padding: 1rem;
            font-family: inherit;
            border: 1px solid rgba(51, 65, 85, 0.2);
            color: #334155; }
            @media (max-width: 50rem) {
              .section__contact__form__content--group__content--input {
                width: 80%; } }
            .section__contact__form__content--group__content--input:placeholder-shown {
              color: rgba(51, 65, 85, 0.5);
              font-family: inherit; }
          .section__contact__form__content--group__content--label {
            display: block;
            font-family: inherit;
            font-size: 1.5rem;
            color: #334155; }
            @media only screen and (max-width: 768px) {
              .section__contact__form__content--group__content--label {
                display: none; } }
          .section__contact__form__content--group__content--textarea {
            width: 80%;
            border: 1px solid rgba(51, 65, 85, 0.2);
            font-family: inherit;
            font-size: 1.5rem;
            color: #334155;
            height: 10rem; }
            @media (max-width: 50rem) {
              .section__contact__form__content--group__content--textarea {
                width: 100%; } }
          .section__contact__form__content--group__content--button {
            text-align: center;
            padding: 2rem 0; }
      .section__contact__form__content--input {
        display: inline-block; }
      .section__contact__form__content--label {
        display: inline-block; }

.visible {
  opacity: 1; }

.hidden {
  opacity: 0;
  animation: none; }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInUp {
  0% {
    opacity: 0;
    transform: translateY(10rem); }
  80% {
    transform: translateY(1rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes moveInDown {
  0% {
    opacity: 0;
    transform: translateY(-20rem); }
  80% {
    transform: translateY(5rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes changeGradientColor {
  0% {
    background-image: linear-gradient(to right, #1d4ed8, #f6c386); }
  25% {
    background-image: linear-gradient(to right, #536bc4, #bfa69b); }
  50% {
    background-image: linear-gradient(to right, #8989af, #8989af); }
  100% {
    background-image: linear-gradient(to right, #bfa69b, #536bc4); } }

@keyframes scaleIncrease {
  0% {
    transform: scale(0.5); }
  50% {
    transform: scale(0.75); }
  80% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@keyframes scaleDecrease {
  0% {
    transform: scale(1.2); }
  50% {
    transform: scale(1.1); }
  80% {
    transform: scale(0.8); }
  100% {
    transform: scale(1); } }

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 600; }
  .popup__box {
    background-color: #fff;
    height: max-content;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .popup__box__content--message {
      padding: 6rem;
      position: relative;
      font-size: 3rem;
      text-align: center; }
    .popup__box__content--close {
      position: absolute;
      right: 1.5rem;
      top: 0.5rem;
      font-size: 4rem;
      cursor: pointer;
      text-decoration: none;
      color: #059669;
      z-index: 601; }
