html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


:root {
    --primary1: #2862C6;
    --primary2: #FC4343;
    --primary3: #FFC95A;
    --primary4: #5192EC;
    --primary5: #FBDE18;
    --primary6: #C54292;
    --primary7: #EE667A;
    --primary8: #FDB510;
    --primary9: #1EB742;
    --primary10: #F14750;
    --color-p: #939393;
}

h1 {
    font-weight: 900;
}

h2 {
    font-weight: 800;
}

h3, h4 {
    font-weight: 800;
}

h5 {
    font-weight: 700;
    font-size: 24px;
}

p {
    font-size: 16px;
    color: var(--color-p);
}

.heart-animation {
    animation: pulse 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.global-wave-container {
    width: 100%;
}

.global-wave-container-item {
    height: 230px;
    width: 100%;
    background-color: var(--primary1);
}

@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 22px;
    }

    h5 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}

/* Flex Containers */
.flex {
    display: flex;
}

.flex-inline {
    display: inline-flex;
}

/* Flex Directions */
.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column {
    flex-direction: column;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

/* Flex Wrap */
.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

/* Justify Content */
.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

/* Align Items */
.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.items-stretch {
    align-items: stretch;
}

/* Align Content */
.content-start {
    align-content: flex-start;
}

.content-end {
    align-content: flex-end;
}

.content-center {
    align-content: center;
}

.content-between {
    align-content: space-between;
}

.content-around {
    align-content: space-around;
}

.content-stretch {
    align-content: stretch;
}

/* Align Self */
.self-auto {
    align-self: auto;
}

.self-start {
    align-self: flex-start;
}

.self-end {
    align-self: flex-end;
}

.self-center {
    align-self: center;
}

.self-baseline {
    align-self: baseline;
}

.self-stretch {
    align-self: stretch;
}
/*------------*/

/*Header - START*/
header {
    background: #FFFFFF;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 15px 20px 15px 20px;
    border-radius: 20px 20px 20px 20px;
    width: 90%;
    height: 78px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    z-index: 1000;
    gap: 20px;
    border: 1px solid #E5E5E5;
    max-width: 1200px;
}

.logo {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    height: 40px;
    cursor: pointer;
}

nav {
    width: 90%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary1);
    font-weight: 500;
    font-size: 16px;
}

nav ul li a:hover {
    color: var(--primary8);
}

.default-btn {
    background-color: var(--primary1);
    font-family: "Catamaran", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 30px 30px 30px 30px;
    padding: 16px 38px 16px 38px;
    gap: 10px;
    text-decoration: none;
}

.default-btn:hover {
    color: white;
}

.menu-mobile-container {
    display: none;
    font-size: 30px;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -70%;
    width: 70%;
    height: 100vh;
    background-color: #4da6ff;
    padding: 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 1001;
}

.sidebar-menu.active {
    left: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.menu-logo {
    display: block;
    margin: 20px auto;
    max-width: 150px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.menu-list li {
    margin: 15px 0;
}

.menu-list a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    display: block;
    padding: 10px;
    transition: 0.3s;
}

.menu-list-desktop a.active, .menu-list a.active,
.menu-list-desktop a:hover, .menu-list a:hover {
    color: var(--primary3);
}

.menu-toggle {
    position: fixed;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    z-index: 1002;
}

@media (max-width: 1020px) {
    header {
        justify-content: space-between;
        height: 90px !important;
    }

    .menu-list-desktop, .assist-container {
        display: none;
    }

    .assist-mobile {
        display: block;
    }

    .menu-mobile-container {
        display: block !important;
    }

    .logo {
        height: 50px !important;
    }

    .m-nav-container {

    }
}

@media (max-width: 600px) {
    .default-btn {
        width: fit-content !important;
        padding: 12px 20px 12px 20px;
        font-size: 14px;
    }
}

/*Header - END*/

/*Footer*/
footer {
    color: white;
    margin-top: 40px;
}

.footer-wave-container {
    margin-bottom: -1px;
}

.footer-content {
    background-color: var(--primary1);
}

.footer-content-links {
    width: 100%;
    gap: 20px;
    padding-top: 30px;
}

.footer-content-links-card {
    width: 320px;
    min-height: 250px;
    gap: 10px;
}

.footer-content-links-card p {
    color: white;
}

.social-cards {
    gap: 10px;
}

.social-cards-item {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background-color: var(--primary4) !important;
    color: white !important;
    font-size: 20px !important;
}

.localization-card, .contacts-card {
    gap: 10px;
}

.localization-card i, .contacts-card i {
    color: var(--primary3);
    font-size: 20px;
}

.footer-content-links-card a:hover, .footer-content-links-card span:hover {
    color: var(--primary3) !important;
}

.footer-content-links-card .default-btn {
    background-color: var(--primary9);
    max-width: 180px;
}

.footer-content-links-card a {
    color: white;
}

.footer-content-copyright {
    padding: 20px;
    border-top: 1px solid #FFFFFF33;
    gap: 20px;
    color: white;
    width: 90%;
    max-width: 1224px;
}

.footer-content-copyright p {
    color: white;
}

.footer-content-copyright a {
    color: var(--primary3) !important;
}

.footer-content-copyright div {
    gap: 10px;
}

.footer-content-copyright img {
    width: 150px;
}

@media (max-width: 600px) {
    .footer-content-copyright {
        flex-direction: column;
        align-items: center;
    }

    .footer-content-copyright div {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content-links-card {
        min-height: 185px;
        align-items: center;
        text-align: center;
    }
}
/*Footer - END*/

/* Videos */
.videos-container {
    width: 100%;
}

.video-container {
    gap: 30px;
    margin-top: 20px;
}

.video-container iframe {
    border-radius: 20px;
}

.video-item {
    width: 560px;
}

@media (max-width: 600px) {
    .videos-container h1 {
        text-align: center;
    }

    .video-container {
        padding: 0px 20px;
        text-align: center;
    }

    .video-container h1 {
        text-align: center !important;
    }

    .video-container iframe, .video-item {
        width: 100%;
    }
}
/*Videos - END*/