@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Light.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: #2D5F7A;
    -webkit-tap-highlight-color: transparent;
}
html.pre-translated body {
    visibility: hidden;
  }
  
html {
    font-size: 16px;
}

.navbar {
    display: block;
    text-align: center;
    padding-top: 10px;
}

.logo img {
    height: 60px;
    cursor: pointer;
}

.logo {
    cursor: default;
}

.menu-list {
    position: sticky;
    top: 0;
}

.dropdown {
    margin: 0 10px 0;
}

.menu-button {
    display: block;
    width: 100%;
    border: none;
    padding: 10px;
    margin-top: 5px;
    background-color: #f2f2f257;
    border: 0.4px solid #cfcfcf82;
    text-align: center;
    cursor: pointer;
    font-size: 0.8rem;
}

.drop-list {
    display: none;
}

.drop-list li {
    padding: 15px;
    border-block-end: 1px solid rgba(203, 201, 201, 0.161);
    cursor: default;
}

.drop-list a {
    display: block;
    cursor: default;
    width: 100%;
    height: 100%;
}

.drop-list li:hover {
    background-color: rgba(203, 201, 201, 0.161);
}


.nav-link.active {
    color: #6db17a;
}

.head-nav {
    display: flex;
    justify-content: center;
    margin: 50px 14px 5px;
    padding-bottom: 10px;
    position: relative;
    cursor: default;
}


.head-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #93939381;
}

.head-nav span {
    color: #827777;
    font-size: x-large;
}



.has-submenu {
    position: relative;
}

.icon-caret {
    position: absolute;
    text-align: center;
    padding: 19px;
    right: 0;
    top: 1px;

    width: 50px !important;
    height: 50px;
    transition: transform 0.3s ease;
    transform-origin: center;
    transition: transform 0.3s ease;

    transform: rotate(-90deg);


}



.icon-caret.open {
    transform: rotate(0deg);

}



.submenu {
    display: none;

    list-style-type: none;
    margin: 0;
    padding: 0;
    top: 100%;
    left: 0;
    background-color: none;
}


.submenu.open {
    display: block;

    z-index: 1;
}

.submenu a {
    margin: 0;
    padding: 5px;
    color: #7a807db3;
    font-size: 14px;
}

.submenu li {
    margin: 5px;
    padding: 0;
    color: #7a807db3;
    border-block-end: none;
    transition: transform 0.2s ease;
}



.vertical-nav {
    display: grid;
    margin: 20px auto;
    padding: 0 10px 0;
    gap: 10px;
    min-height: calc(100vh - 246px);
}

.img-ratio-23-32-32 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;

    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.wide {

    padding-bottom: 50%;

    video {
        object-fit: contain;
    }

    .video-container {
        object-fit: contain;
    }
}


.video-container.wide {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
}

.controls {
    display: inline-block;
    position: absolute;
    bottom: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    background-color: #1c1c1c85;
    ;
    box-shadow: 0 0 50px 50px #1c1c1c85;
}

.controls.visible {
    opacity: 1;
    pointer-events: auto;
}

.controls i {
    color: #fff;
    background-color: transparent;
}

.test1 {
    display: flex;
    justify-content: space-between;
}

.test2 {
    padding-bottom: 7px;
    padding-left: 10px;
    padding-right: 10px;
}

.empty-container-3 {
    display: flex;
    direction: row;
}

.time-display {
    font-size: 14px;
    color: #fff;
    padding-left: 10px;
    cursor: default;
}


.play-pause-container,
.stop-container,
.wide-button,
.fullscreen-container,
.all-controls-container {
    display: flex;
    align-items: center;
}

.play-pause-button,
.stop-button,
.wideButton,
.fullscreen-button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border: none;
}

.timeline {
    width: 100%;
    cursor: pointer;
}

.timeline {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #ffffff;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease;

}


.timeline::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d6d9db;
    cursor: pointer;
    transition: background 0.3s ease;
}


.timeline::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d6d9db;
    cursor: pointer;
    transition: background 0.3s ease;
}


.timeline::-ms-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
}


.timeline:hover {
    background: #b3b3b3;
}

.timeline::-webkit-slider-thumb:hover {
    background: #d6d9db;
}

.timeline::-moz-range-thumb:hover {
    background: #d6d9db;
}

.timeline::-ms-thumb:hover {
    background: #d6d9db;
}




.fullscreen-icon {
    font-size: 20px;
    line-height: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.fullscreen-icon:hover {
    background: rgba(255, 255, 255, 0.5);
}


.video-container:fullscreen,
.video-container:-webkit-full-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
}

.video-container:fullscreen video,
.video-container:-webkit-full-screen video {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
}

.video-container:fullscreen .controls,
.video-container:-webkit-full-screen .controls {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    pointer-events: auto;
}

.pip-button {
    background-color: transparent;
    border: none;
    padding-top: 5px;
    padding-right: 10px;
    padding-left: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.pip-button .material-icons {
    font-size: 20px;
    color: #fff;
}

.description-container {
    margin-bottom: 10px;
}

.description-toggle {
    cursor: pointer;
    background-color: #f5f5f5;
    padding: 5px;
    font-weight: bold;
    user-select: none;
    height: 2.5rem;
    text-align: center;
    align-content: center;
    font-size: 1.5rem;
}

.description {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 1px;
    padding-left: 5px;
    padding-right: 5px;
    border-left: 0.7px solid #000;
    border-right: 0.7px solid #000;
    border-bottom: 0.7px solid #000;
    scrollbar-width: none;
    border-color: #a7a4a4b4;
    cursor: default;
    display: none;
}

.description.open {
    display: block;
}

.description::-webkit-scrollbar {
    display: none;

}

.description p {
    text-align: justify;
    text-indent: 10px;
    margin: 2px 0;
    font-size: small;
}



.scroll-to-top-btn {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: -60px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: rgba(215, 230, 230, 0.415);
    color: rgba(0, 0, 0, 0.579);
    font-size: 26px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s, transform 0.6s;
}


.scroll-to-top-btn:hover {
    background-color: #cdcfce;
    color: #7a797995;
    transform: scale(1.1);
}

.scroll-to-top-btn.visible {
    display: flex;
    opacity: 1;
    transform: translateX(-90px);
}

.scroll-to-top-btn.hidden {
    opacity: 0;
    transform: translateX(0);
}

.share-btn-content {
    padding: 0 5px 0;
}

.share-btn {
    width: 40px;
    height: 40px;
    text-align: center;
    background: none;
    border: none;
    cursor: default;
    transition: transform 0.2s ease, color 0.2s ease;
}

.share-btn svg {
    transition: transform 0.2s ease, color 0.2s ease;
}

.share-btn svg:hover {
    transform: scale(1.15);
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 70px;
    padding-bottom: 10px;
}

.inst-you-link a {
    display: block;
    line-height: 0;
    align-content: center;
}

.bi-youtube {
    padding-top: 3px;
}

.container-link-policy {
    position: relative;
    display: flex;
    flex: 1;
    margin-left: 15px;
}

.link-policy {
    position: absolute;
    display: none;
    flex-direction: column;
    align-content: center;
    bottom: 120%;
    padding-bottom: 10px;
}

.link-policy span {
    white-space: nowrap;
    color: #959595;
    transition: color 0.2s;
    font-size: 14px;
}

.link-policy span:hover {
    color: #292929;
}

.link-policy a {
    padding-bottom: 5px;
}

.toggle-icon-document {
    cursor: pointer;
    width: 28px;
    height: 28px;
}

.icon-container {
    cursor: pointer;
    width: 32px;
    height: 32px;
}

.icon-container svg path {
    transition: fill 0.3s ease;
}

.icon-container:hover svg path {
    fill: #4A90E2;
}

.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.share-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 350px;
    position: relative;
}

.url-block {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

#current-url {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.copy-icon-container {
    position: relative;
    margin-left: 10px;
    cursor: pointer;
}

#copy-icon {
    font-size: 1.3rem;
    color: #2D5F7A;
    transition: color 0.2s;
}

#copy-icon:hover {
    color: #6db179;
}

.tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #2D5F7A;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links a:hover {
    color: #6db179;
}

.share-modal-content h3 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.indent {
    margin: 20px 0 0;
}

@media (min-width: 550px) {

    .img-ratio-23-32-32 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .navbar {
        all: unset;
    }

    .menu-button {
        display: none;
    }

    .has-submenu {
        margin-right: 15px;
    }

    .navbar {
        display: grid;
        grid-template-areas:
            'logo drop-list';
        padding-top: 10px;
        padding-right: 80px;
        margin-left: 20px;
        align-items: center;
    }

    .drop-list li {
        border-block-end: none;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .drop-list li:hover {
        background-color: transparent;
    }

    .logo {
        padding-left: 30px;
    }

    .logo img {
        transition: transform 0.3s ease;
    }

    .logo :hover {
        transform: scale(1.2);
    }

    .vertical-nav {
        padding: 0 60px 0;
    }

    .share-btn-content {
        padding: 0 55px 0;
    }

    .head-nav {
        margin: 20px 60px 5px;
        padding-bottom: 10px;
    }

    .img-ratio-23-32-32 {
        all: unset;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .icon-caret {
        transform: unset;
        transition: unset;
        right: -20px;
    }

    .icon-caret.open {
        transform: rotate(180deg);

    }

    .submenu {
        position: absolute;
        list-style-type: none;
        margin: 0;
        padding: 0;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fcfbfb;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2),
            0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .submenu a {
        margin: 0;
        padding: 5px;
        color: #7a807db3;
        font-size: 14px;
        text-align: center;
    }

    .submenu li {
        margin: 0;
        padding: 0;
        color: #7a807db3;
        border-block-end: none;
        transition: none;
    }

    .submenu li :hover {
        background-color: #f1f0f0d4;
    }

    .nav-link {
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #6db17a;
        transition: width 0.3s ease, left 0.3s ease;
        transform: translateX(-50%);
    }


    .nav-link:hover::after {
        width: 100%;
        left: 50%;
    }

    .social-icons {
        padding-top: 100px;
    }

}

@media (min-width: 1024px) {

    .img-ratio-23-32-32 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1200px) {

    .img-ratio-23-32-32 {
        grid-template-columns: repeat(4, 1fr);
    }
}