* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fira Sans BGR", sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    flex-direction: column;
    display: flex;
}

small {
    font-size: 18px;
}

header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 130px;
    transition: 0.5s ease;
    flex-wrap: wrap;
}

header .brand {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    left: 0;
    text-align: left;
}

header .navigation {
    position: relative;
}

header .navigation .navigation-items a {
    position: relative;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    font-weight: bold;
}

header .navigation .navigation-items a:before {
    content: '';
    position: absolute;
    background: #fff;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: 0.5s ease;

}

header .navigation .navigation-items .search {
    font-size: 32px;
}

header .navigation .navigation-items a:hover:before {
    width: 100%;
}

.menu-btn {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    margin-left: auto;
    z-index: 100;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    transition: 0.3s;
    border-radius: 3px;
}

.menu-btn span:nth-child(1) {
    top: 0;
}

.menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-btn span:nth-child(3) {
    bottom: 0;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1.5px;
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
    margin-top: -1.5px;
}

/* navbar */
.navigation-items .nav-links {
    display: inline-flex;
    height: inherit;
    margin: auto;
    align-items: center;
}

.nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    margin-left: 30px;

}

/* drop menu first page */
.navigation-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation-items ul li {
    position: relative;
}

.nav-dropdown {
    display: none;
    min-width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.nav-links>li>.nav-dropdown {
    margin-left: -50px;
    position: absolute;
}

.nav-dropdown .nav-dropdown {
    position: static;
    box-shadow: none;
    margin-left: 20px;
}

.navigation-items ul li a:not(:only-child):not(.search):after {
    content: ' ▾';
    vertical-align: middle;
}

.nav-dropdown li a:not(:only-child):not(.search):after {
    content: ' ▸';
}

.navigation-items ul li a:not(:only-child)+.menu-bar {
    margin-top: 0;
}

.navigation-items ul li a:has(+ .menu-bar):after {
    content: none;
}

.nav-dropdown li {
    padding: 5px 0px;
}

.nav-dropdown li a {
    display: block;
    word-wrap: break-word;
    white-space: normal;
    text-align: left;
    padding-left: 0;
}

.nav-links>li {
    display: inline-block;
    padding: 0 2px;
}

.navigation-items ul li img {
    cursor: pointer;
}

.search-container {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 500px;
}

.search-container.active {
    display: block !important;
    animation: slideDown 0.3s ease-out;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 300px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #007bff;
}

.search-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.search-button:hover {
    background: #0056b3;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#scrollUpButton {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 0px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.2); 
    color: #111699;
    border: none;
    padding: 15px;
    border-radius: 20%;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

#scrollUpButton svg {
    width: 24px;
    height: 24px;
    fill: #111699;
}


#scrollUpButton svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

#scrollUpButton:hover svg {
    transform: scale(1.4);
}

section {
    padding: 100px 150px;
    flex: 1;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #0a4d80;
}

.home:before {
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(12, 46, 148, 0.651);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home .content {
    z-index: 888;
    color: #fff;
    width: 65%;
    margin-top: 20%;
    display: none;
    margin-left: auto;
    margin-right: auto;
    top: 50%;
    position: static;
    text-align: center;
    justify-content: center;
}

.home .content.active {
    display: block;

}

.home .content .title-video {
    text-align: center;
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 50px;
    margin-bottom: 35px;
    text-decoration: none;
    cursor: pointer;
    display: block;
    justify-content: center;
    width: 100%;
}


.home .content .title-video span {
    font-size: 1.2em;
    font-weight: 62px;


}

.home .content p {
    margin-bottom: 65px;

}

.home .content a {
    font-size: 50px;
    color: #fff;
    z-index: 999;
}

.home .content a:hover {
    color: #fff;
    text-decoration: underline;
}

.home .media-icon {

    z-index: 888;
    position: fixed;
    right: 0px;
    top: 30%;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
    background: linear-gradient(50deg, rgba(255, 255, 255, 0.4) 12%, rgba(255, 255, 255, 0.1) 77%);
    box-shadow: 0px 4px 24px 1px rgba(0, 0, 0, 0.28);
    width: 60px;
    align-items: center;
    border-radius: 8px;
}


.home .media-icon a {
    color: #111699;
    font-size: 2.0em;
    transition: 0.3s ease;
    padding-top: 1px;
}

.home .media-icon a:hover {
    transform: scale(1.4);
}

#phone-number {
    transition: 0.5s ease;
    background: linear-gradient(50deg, rgba(255, 255, 255, 0.4) 12%, rgba(255, 255, 255, 0.1) 77%);
    box-shadow: 0px 4px 24px 1px rgba(0, 0, 0, 0.28);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    white-space: nowrap;
    position: fixed;
    font-size: 16px;
    line-height: 1;
    color: #111699;
    font-weight: 900;
}

#email {
    transition: 0.5s ease;
    background: linear-gradient(50deg, rgba(255, 255, 255, 0.4) 12%, rgba(255, 255, 255, 0.1) 77%);
    box-shadow: 0px 4px 24px 1px rgba(0, 0, 0, 0.28);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    white-space: nowrap;
    position: fixed;
    font-size: 16px;
    line-height: 1;
    color:#111699;
    font-weight: 900;
}

.home video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video1 {
    opacity: 1;
}

.video2 {
    opacity: 0;
}

.video3 {
    opacity: 0;
}


.slider-navigation {
    z-index: 888;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: center;

}

.slider-navigation .nav-btn {
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
    background: #2696E9;
}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
    transform: scale(1.2);
}

.video-slide {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
    display: none;

}

.video-slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
    display: block;
}
.video-slide a {
    pointer-events: auto;
}

.video-slide .background {
    pointer-events: none;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    pointer-events: none;
}

.news {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
}

.news {
    width: 100%;
}

:root {
    --bluePrimary: rgb(18, 44, 72);
    --grayFont: #707070;
}

hr {
    width: 40%;
    margin: 15px auto;
    border: none;
    height: 2px;
    opacity: 0.7;
    color: var(--grayFont);
    background-color: var(--grayFont);
}

.news {
    background-color: white;
    height: fit-content;
    padding-top: 30px;
    text-align: center;
    padding-bottom: 60px;
}

.newsHeader {
    margin: 0 auto;
    color: #0a2946;
    cursor: pointer;
}

.newsHeader a {
    text-decoration: none;
    color: #0a2946;
}

.news {
    max-width: 100%;
    overflow-x: hidden;
}

.container.padding {
    padding: 0 10px;
}

.contactInformation {
    width: 100%;
}

.contactInformation {
    align-items: center;
}

input[type="url"],
input[type="text"] {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

footer {
    width: 100%;
    height: 45%;
    background: linear-gradient(to bottom, #0647AD, #111699);
}

.footerContainer {
    justify-content: space-between;

    padding-top: 0;
    margin-top: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footerNavigationContainer1 {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 30px 0;
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
}

.footerNavigationContainer1.left {
    justify-content: flex-start;
}

.footerNavigationContainer1.center {
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.footerNavigationContainer1.right {
    justify-content: flex-end;
}

.footerNavigation1 {
    text-decoration: none;
    padding: 0px;
}

.footerNavigation1 ul {
    text-decoration: none;
    list-style: none;
    display: block;
    justify-content: center;
    padding: 0;
}

.footerNavigation1 ul li {
    margin-bottom: 20px;
}

.footerNavigation1 ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    opacity: 0.7;
    transition: 0.6s;
}

.footerNavigation1 ul li span {
    color: white;
    text-decoration: none;
    font-size: 18px;
    opacity: 0.7;
    transition: 0.6s;
}

.footerNavigation1 ul li a:hover {
    opacity: 1;
}

.footerBottom1 {
    padding: 10px;
    text-align: center;
    width: 100%;
}

.footerBottom1 p {
    color: white;
    font-size: 18px;
    margin: 0;
}

.img_footer img {
    margin: auto;
    padding: 10px;
    border-radius: 20px;
    width: 110px;
    height: 110px;
    cursor: pointer;
}

.footerNavigation1 .nested-footer {
    display: none;
    padding-left: 10px;
    padding-top: 10px;
    width: 370px;
    word-wrap: break-word;
    word-break: break-word;
}

.caret-footer {
    cursor: pointer;
    user-select: none;
    display: inline-block;
}

.caret-footer::before {
    content: '\25B6';
    display: inline-block;
    margin-right: 10px;
    color: white;
}

.caret-down::before {
    content: '\25BC';
}

@media screen and (max-width: 1200px) {
    .swiper-slide {
        height: 250px;
    }

    .mySwiper {
        --swiper-slidesPerView: 3;
    }
}

@media screen and (max-width: 992px) {
    .swiper-slide {
        height: 220px;
    }

    .mySwiper {
        --swiper-slidesPerView: 2;
    }
}

@media screen and (max-width: 768px) {
    .swiper-slide {
        height: 200px;
    }

    .mySwiper {
        --swiper-slidesPerView: 2;
        --swiper-spaceBetween: 10;
    }
}

@media screen and (max-width: 576px) {
    .swiper-slide {
        height: 180px;
    }

    .mySwiper {
        --swiper-slidesPerView: 1;
        --swiper-spaceBetween: 0;
    }
}

@media screen and (max-width: 480px) {
    .swiper-slide {
        height: 150px;
    }

    .mySwiper {
        padding: 10px 0;
    }

    .swiper-pagination {
        bottom: -5px;
    }

    .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 4px;
    }
}

@media screen and (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .swiper-pagination {
        bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .footerContainer {
        flex-direction: column;
        width: 100%;
    }

    .footerNavigationContainer1 {
        flex-direction: column;
        gap: 20px;
    }

    .footerNavigation1 ul{
        width: 100%;
    }

    .footerNavigation1 ul li {
        margin-bottom: 10px;
    }

    .img_footer {
        display: flex;
        justify-content: center;
    }
}


@media (max-width: 1000px) {
    .highlights-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1850px) {
    header #logo {
        width: 173px;
        height: 144px;
    }
    header {
        padding: 15px 90px;
    }
    header .brand {
        font-size: 1.3em;
    }

    .nav-links li a {
        margin-left: 16px;
    }
}

@media (max-width: 1600px) {
    header #logo {
        width: 163px;
        height: 134px;
    }
    header {
        padding: 15px 70px;
    }

    header .brand {
        font-size: 1.2em;
    }

    .nav-links li a {
        font-size: 14px;
        margin-left: 20px;
    }

    .nav-dropdown {
        min-width: 230px;
    }
}

@media (max-width: 1500px) {
    header {
        padding: 15px 30px;
    }

    header .brand {
        font-size: 1.1em;
    }

    .nav-dropdown {
        min-width: 210px;
    }
}

@media (max-width: 1400px) {
    header #logo {
        width: 143px;
        height: 114px;
    }
    header {
        padding: 15px 20px;
    }

    header .brand {
        margin-right: 10px;
    }

    .nav-links li a {
        font-size: 12px;
        margin-left: 15px;
    }

    .nav-dropdown .nav-dropdown {
        margin-left: 10px;
    }
}


@media (max-width: 1200px) {
    header {
        padding: 15px 40px;
    }

    .nav-links li a {
        margin-left: 20px;
    }
}

@media (max-width: 1280px) {
    header {
        padding: 15px 20px;
    }

    .menu-btn {
        display: block;
    }

    .moved-to-main {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .moved-to-main>a {
        padding: 10px 15px;
        display: block;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
    }

    .moved-to-main .nav-dropdown {
        position: static;
        width: 100%;
        margin-left: 20px !important;
        box-sizing: border-box;
        padding-right: 15px;
    }

    .moved-to-main .nav-dropdown a {
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
        padding: 8px 15px;
    }

    .navigation {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #073a7e;
    }

    .navigation.active {
        display: block !important;
    }

    .navigation-items .nav-links {
        flex-direction: column;
        padding: 20px;
    }

    .nav-links>li {
        display: block;
        margin: 10px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-dropdown {
        position: static !important;
        width: 100%;
        min-width: auto;
        box-shadow: none;
        margin-left: 20px !important;
        margin-top: 5px;
        background: transparent;
        box-sizing: border-box;
        padding-right: 15px;
    }

    .nav-dropdown li a {
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
        padding: 8px 15px 8px 35px;
    }

    .nav-links li a {
        padding: 10px 0;
        display: block;
        width: 100%;
        margin-left: 0;
        padding: 10px 15px;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
    }

    .nav-dropdown .nav-dropdown {
        position: static;
        left: auto;
        top: auto;
        margin-left: 15px !important;
    }

    .search-container.mobile-search {
        position: static;
        width: 100%;
        min-width: 100%;
        margin: 0;
        padding: 10px 15px;
        box-shadow: none;
        background: transparent;
        box-sizing: border-box;
    }

    .mobile-search .search-box {
        width: 100%;
        display: flex;
        gap: 10px;
    }

    .mobile-search .search-input {
        flex: 1;
        min-width: 0;
    }

    .mobile-search .search-button {
        white-space: nowrap;
    }

    .nav-links li .search {
        display: block;
        width: 100%;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {

    header #logo {
        width: 80px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }

    header .brand:not(img) {
        font-size: 0.6em;
    }

    .menu-btn {
        margin: 0 30px;
    }

     small {
        font-size: 0.8em;
     }

    #logo {
        width: 100px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 100px 70px;
        flex: 1;
    }

    .home .content {
        width: 90%;
        margin-top: 30%;
    }

    .home .content .title-video {
        font-size: 2.2em;
        letter-spacing: 3px;
        line-height: 45px;
        margin-bottom: 25px;
        text-align: center;
        width: 100%;
        display: inline-block;
        white-space: normal;
        word-wrap: break-word;
    }

    .home video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width:1200px) {
    section {
        padding: 100px 70px;
        flex: 1;
    }

    .home .content {
        width: 95%;
        margin-top: 40%;
    }

    .home .content .title-video {
        font-size: 1.8em;
        letter-spacing: 2px;
        line-height: 40px;
        margin-bottom: 20px;
        text-align: center;
        display: inline-block;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }

    .home video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .news {
        width: 95%;
        padding: 20px 0 30px 0;
    }

    h1 {
        font-size: 24px;
    }

    .col-md-6,
    .col-md-5 {
        padding: 10px;
    }

    .card {
        margin: 0;
        padding: 10px;
        aspect-ratio: 1/1;
    }

    .card-img-top {
        height: 60%;
    }

    .card-body {
        height: 40%;
        padding: 10px 5px;
    }

    .card-body h4 {
        font-size: 14px !important;
        margin: 0;
    }

    .card-body p {
        font-size: 16px;
        margin: 5px 0;
    }
}

@media screen and (max-width: 768px) {
    .news-container {
        padding: 0 10px;
    }

    .col-md-6,
    .col-md-5 {
        margin: 5px 0 !important;
    }

    .card {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

.image-frame {
    width: 100%;
    height: 250px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid #dddddd52;
    background-color: rgba(247, 240, 240, 0.068); 
    position: relative; 
}

.image-frame::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    pointer-events: none; 
    border-radius: 5px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: scale-down; 
    object-position: center;
 
    border: none; 

}

@media (max-width: 768px) {
    .image-frame {
        height: 200px; 
    }

    .image-frame img {
        object-fit: scale-down; 
    }
}

@media (max-width: 480px) {
    .image-frame {
        height: 180px;
    }

    .image-frame img {
        object-fit: scale-down;
    }
}

@media (min-width: 769px) {
    .image-frame {
        height: 300px; 
    }

    .image-frame img {
        object-fit: scale-down; 
    }
}

.underline {
    border-bottom: 2px solid #C0C0C0; 
    padding-bottom: 5px; 
}

.old-site-button {
    position: absolute;
    top: 10px;
    right: 80px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.404);
    color: rgb(245, 244, 240);
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  

}

.old-site-button i {
    margin-left: 10px;
    font-size: 1.2em;
}

.old-site-button:hover {
    background-color: #042174;
    color: rgba(245, 241, 240, 0.911);
}

/* За мобилни устройства */
@media (max-width: 768px) {
    .old-site-button {
        top: 90px;
        left: 10px;
        padding: 5px 10px;
        font-size: 12px;
        width: 40%;
    }

   
}

@media (max-width: 480px) {
    .old-site-button {
        top: 90px;
        left: 5px;
        padding: 4px 8px;
        font-size: 10px;
    }

    .old-site-button i {
        font-size: 0.8em;
    }
}

@media (max-height: 768px) {
    .home .media-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .media-icon {
        position: relative;
        margin-top: -200px;
        justify-content: flex-start;
        gap: 10px;
        padding-top: 10px;
    }

    .media-icon a {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) {
    .media-icon {
        flex-direction: row; 
    }
}

@media (max-width: 1200px) {
    .slider-navigation {
        flex-direction: row;
        align-items: flex-start;
    }

    .slider-navigation .nav-btn {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 768px) {
    .home .content .title-video {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .home .content .title-video{
        font-size: 20px;
    }
}

/* Много малки телефони */
@media (max-width: 400px) {
    .home .content .title-video{
        font-size: 16px;
    }
}

.home-replacement {
    display: none;
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
    background-color: #0a4d80;
}

.video-container {
    margin-bottom: 30px;
    background-color: #0a4d80;
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.video {
    width: 100%;
    height: auto;
    background-color: #000;
    object-fit: cover;
    min-height: 200px;
    display: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 25px;
    font-size: 1.2em;
    background-color: rgba(0, 119, 204, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    opacity: 0.8;
    z-index: 10;
}

.play-btn:hover {
    background-color: rgba(0, 119, 204, 1);
    opacity: 1;
}

.play-btn:focus {
    outline: none;
}

@media (max-width: 768px) {
    .home {
        display: none;
    }

    .home-replacement {
        display: block;
        font-size: 1.5em;
    }

    .video-container {
        margin-bottom: 20px;
        background-color: #0a4d80;
    }

    .video {
        width: 100%;
        height: auto;
        max-height: 200px;
    }

    .play-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
	
}