html {
    @media(max-width: 768px) {
        scroll-padding-top: 64px; 
    }
}

body {
    background-color: #051e42;
    color: #fff;
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
    position: relative;
    overflow: auto;
}

.wrapper {
    background-image: url('../img/bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
}

a {
    color: #fff;
}

h2 {
    color: #74d2e7;
    font-family: "arvo", serif;
    font-size: 1.5rem;
    font-weight: 700;
    font-style: normal;  
    
    @media(min-width: 768px) {
        font-size: 1.75rem;
    }
}

#hdr {
    align-items: center;
    border-bottom: 1px solid transparent;
    display: flex;
    height: 5rem;
    justify-content: space-between;
    left: 0;
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;

    @media(min-width: 768px) {
        height: 7rem;
        padding: 0 2rem;
        position: absolute;
    }

    @media(max-width: 768px) {
        transition: all 150ms ease-in-out;

        &.hdr-sm {
            background-color: rgba(5, 30, 66, .95);
            border-bottom-color: rgba(116, 210, 231, .5);
            height: 4rem;
            padding: 0 1.25rem;
        }
    }

    .logo {
        img {
            width: 100px;

            @media(min-width: 768px) {
                width: 110px;
            }

            @media(min-width: 992px) {
                width: auto;
            }

            @media(max-width: 768px) {
                transition: all 150ms ease-in-out;

                .hdr-sm & {
                    width: 70px;            
                }
            }
        }
    }

    .contact {
        align-items: center;
        background: #78d64c;
        background: linear-gradient(
            95deg in oklab,
            lab(77% -47 60) 2% 2%, lab(73% -20 -51) 60% 60%, lab(39% -13 -25) 110% 110%
          );
        border: 1px solid lab(39% -13 -25);
        border-radius: 1.75rem;
        color: #051e42;
        display: flex;
        font-size: .9rem;
        font-weight: 900;
        height: 33px;
        line-height: 33px;
        justify-content: space-between;
        padding: 0 1rem;
        text-decoration: none;
        text-transform: uppercase;
        transition: border 200ms ease-in-out;

        @media(min-width: 768px) {
            font-size: 1rem;
            height: 36px;
            line-height: 36px;
            padding: 0 2rem;
        }

        @media(min-width: 992px) {
            font-size: 1.125rem;
            height: 40px;
            line-height: 40px;
            padding: 0 2.5rem;
        }

        @media(max-width: 768px) {
            transition: all 150ms ease-in-out;

            .hdr-sm & {
                font-size: .75rem;
                height: 28px;
                line-height: 28px;

            }
        }

        &:hover {       
            border: 1px solid #78d64c;
        }
    }

    .nav {
        align-items: center;
        background-color: #004262;
        border-top: 1px solid #17729f;
        bottom: 0;
        box-shadow: 0px -6px 25px 0px rgba(5, 30, 66, 0.25);
        display: flex;
        height: 50px;
        justify-content: center;
        left: 0;
        overflow: hidden;
        position: fixed;
        width: 100%;
        z-index: 10;

        @media(min-width: 768px) {
            background-color: transparent;
            border-top: none;
            box-shadow: none;
            height: auto;
            position: relative;
            width: auto;
        }

        a {
            align-items: center;
            display: flex;
            flex-grow: 1;
            font-size: .8rem;
            font-weight: 700;
            height: 100%;
            justify-content: center;
            margin: 0;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            transition: color 200ms ease-in-out;

            @media(min-width: 768px) {
                display: block;
                font-size: 1rem;
                margin: 0 1rem;
            }

            @media(min-width: 992px) {             
                margin: 0 1.5rem;
            }

            &:not(:last-child) {
                border-right: 1px solid #17729f;

                
                @media(min-width: 768px) {
                    border-right: none;
                }
            }

            &:hover {
                color: #74d2e7;
            }
        }
    }
}

#hero {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 50px);
    justify-content: center; 
    position: relative;
    text-align: center;

    @media(min-width: 768px) {
        height: 78vh;
    }

    @media(min-width: 992px) {
        height: 100vh;
    }

    .content {
        max-width: 975px;
    }

    h1 {
        font-family: "arvo", serif;
        font-size: 2rem;
        font-weight: 700;
        font-style: normal;    
        letter-spacing: 2px;

        @media(min-width: 768px) {
            font-size: 2.75rem;
        }

        @media(min-width: 1400px) {
            font-size: 4rem;
        }

        &:after {
            border: 2px solid #74d2e7;
            content: '';
            display: block;   
            margin: 2rem auto 0;
            width: 175px;

            @media(min-width: 1400px) {
                border-width: 3px;
                margin-top: 2.25rem;
            }
        }
    }

    p {
        font-size: 1.125rem;
        margin: 2rem auto 0;
        padding: 0 2.35rem;
        text-align: center;

        @media(min-width: 768px) {
            font-size: 1.4rem;
        }


        @media(min-width: 992px) {
            font-size: 1.5rem;
        }

        @media(min-width: 1400px) {
            font-size: 1.75rem;
            margin-top: 2.25rem;
            padding: 0 4rem;
        }
    }
}

#investments {
    background-color: rgba(0, 66, 98, 0.7);
    padding: 2rem .75rem 4rem;
    position: relative;
    text-align: center;

    @media(min-width: 768px) {
        padding: 3.5rem 2rem 7rem;
    }

    h2 {
        @media(min-width: 1200px) {
            margin-bottom: 1.5rem;
        }       
    }

    .slide-logo {
        align-items: center;
        display: flex;
        height: 100px;
        justify-content: center;

        @media(max-width: 768px) {
            padding: 0 50px;
        }
    }
  
    .swiper-slide {
        opacity: .15;
        transition: opacity 500ms ease-in-out;
       
        &.swiper-slide-active,
        &.swiper-slide-duplicate-active {
            opacity: 1;
        }
    }

    @media(min-width: 992px) {
        .swiper-slide:has(+ .swiper-slide-active),
        .swiper-slide:has(+ .swiper-slide-duplicate-active) {
            opacity: 1;
        }
    
        .swiper-slide-active + .swiper-slide,
        .swiper-slide-duplicate-active + .swiper-slide {
            opacity: 1;
        }
    }

    .swiper-button {
        transition: opacity 200ms ease-in-out;

        &:hover {
            opacity: .75;
        }
    }

    .swiper-modal {
        bottom: 1.125rem;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);

        @media(min-width: 768px) {
            bottom: 2.25rem;
        }

        .btn-link {
            color: #74d2e7;
            text-transform: uppercase;
        }
    }
}

.modal-logos {
    .modal-dialog {
        @media (min-width: 576px) {
            max-width: 500px;
        }

        @media (min-width: 768px) {
            max-width: 700px;
        }

        @media (min-width: 1200px) {
            max-width: 1200px;
        }
    }

    .modal-control {
        display: flex;
        justify-content: flex-end;
        padding: 5px;
    }

    .modal-header {
        align-items: center;
        border: none;
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
        padding: 0;
    }

    .modal-title {
        color: #05264a;
        font-family: "arvo", serif;
        font-size: 1.75rem;
        font-weight: 700;
        font-style: normal;
        margin: 0 0 1.25rem;
        text-align: center;
    }

    .modal-content {
        background-color: transparent;
    }

    .modal-container {
        height: 542px;
        overflow-y: auto;

        &::-webkit-scrollbar-track {
            -webkit-box-shadow: none;
            background-color: transparent;
            border-radius: 6px;
        }

        &::-webkit-scrollbar {
            background-color: transparent;
            width: 6px;
        }

        &::-webkit-scrollbar-thumb {
            -webkit-box-shadow: none;
            background-color: #05264a;
            border-radius: 6px;
        }
    }

    .modal-body {
        background-color: #fff;
        border-radius: 0.5rem;
        color: #05264a;

        @media (min-width: 768px) {
            padding: 2rem 0.5rem 2.75rem;
        } 

        .grid {
            align-items: center;
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(1, 1fr);
            padding: 0 1rem;

            @media (min-width: 768px) {
                padding: 0 2rem;
            }
        }

        .grid-item {
            grid-column: auto / span 12;
            padding: 1rem;

            @media (min-width: 576px) {
                grid-column: auto / span 6;
                padding: 1.5rem;
            }  

            @media (min-width: 1200px) {
                grid-column: auto / span 4;
                padding: 1rem 3rem;
            }   
            
            &.grid-sm {
                grid-column: auto / span 12;
            }

            &.grid-md {
                grid-column: auto / span 6;
            }
        }

        .grid-title {
            font-weight: 600;
            margin: 4rem 0 2rem;
            text-align: center;
            text-transform: uppercase;
        }
    }

    .btn-close {
        background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2374d2e7'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center / 1.25em auto no-repeat;
        height: 1.25em;
        opacity: .75;
        width: 1.25em;
    }
}

#news {
    padding: 2rem;
    position: relative;

    @media(min-width: 768px) {
        padding: 3rem;
    }

    @media(min-width: 1400px) {
        padding: 4rem;
    }

    @media(min-width: 1600px) {
        padding: 7rem 8rem;
    }

    h2 {
        text-align: center;
    }

    .swiper-news {
        margin-top: 2rem;
    }

    .news-item,
    .rss_item {
        background-color: #004262;
        border-radius: 12px;
        margin: 0;
        overflow: hidden;
    }

    .news-content {
        padding: 2rem;

        @media(min-width: 992px) {
            padding: 2.25rem;
        }

        @media(min-width: 1600px) {
            padding: 3rem;
        }
    }

    .news-date {
        color: #74d2e7;
        font-size: .95rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-transform: uppercase;

        @media(min-width: 1400px) {
            font-size: 1rem;
        }
    }

    .news-title {
        font-family: "arvo", serif;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.75rem;

        @media(min-width: 1400px) {
            font-size: 1.5rem;
            line-height: 2rem;
        }

        @media(min-width: 1600px) {
            font-size: 1.75rem;
            line-height: 2.125rem;
        }
    }

    .news-desc {
        font-size: .95rem;
        margin-top: .5rem;

        @media(min-width: 1400px) {
            margin-top: .75rem;
            font-size: 1rem;
        }
    }

    .news-img,
    .rss_image {  
		height: auto !important;
        width: 100% !important;
        
        a {
            width: 100% !important;
        }
        
        img,
        amp-img {
            aspect-ratio: 16 / 9;
			height: auto !important;
            width: 100% !important;
        }
    }

    a {
        color: #74d2e7;
        transition: color 250ms ease-in-out;
    
        &:hover {
            color: #d6ebf0;
        }
    }

    .swiper-button-next {
        @media(min-width: 1600px) {
            right: 80px;
        }
    }

    .swiper-button-prev {
        @media(min-width: 1600px) {
            left: 80px;
        }
    }

    .feed {
        ul {
            margin: 0;
            padding: 0;
        }
        
        .rss_item {
            @media(min-width: 768px) {
                min-height: 655px;
            }

            .rss_image {
                height: auto !important;
                margin: 0;

                a {
                    display: block;
                    height: auto !important;
                }
            }
        }

        .title {
            a {
                color: #fff;
                font-family: "arvo", serif;
                font-size: 1.25rem;
                font-weight: 700;
                display: flex;
                line-height: 1.75rem;
                padding: 2rem 2rem 0;
                text-decoration: none;

                @media(min-width: 992px) {
                    padding: 2.25rem 2.25rem 0;
                }
        
                @media(min-width: 1400px) {
                    font-size: 1.5rem;
                    line-height: 2rem;
                }
        
                @media(min-width: 1600px) {
                    font-size: 1.75rem;
                    line-height: 2.125rem;
                    padding: 3rem 3rem 0;
                }
            }
        }

        .rss_content {
            margin-top: .5rem;
            padding: 0 2rem 2rem;

            @media(min-width: 992px) {
                padding: 0 2.25rem 2.25rem;
            }

            @media(min-width: 1400px) {
                margin-top: .75rem;
            }

            @media(min-width: 1600px) {
                padding: 0 3rem 3rem;
            }

            p {
                font-size: .95rem;
                margin: 0;

                @media(min-width: 1400px) {
                    font-size: 1rem;
                }
            }
        }
    }
	
	.feed-hakkoda .rss_item .rss_image span {
		background-image: url(/wp-content/uploads/2025/04/news-hakkoda.jpg) !important;
	}
	
	.feed-radarfirst .rss_item .rss_image span {
		background-image: url(/wp-content/uploads/2025/04/news-radarfirst.jpg) !important;
	}
	
	.feed-humantic .rss_item .rss_image span {
		background-image: url(/wp-content/uploads/2025/04/news-humantic.jpg) !important;
	}
	
	.feed-cresta .rss_item .rss_image span {
		background-image: url(/wp-content/uploads/2025/04/news-cresta.jpg) !important;
	}
	
	.feed-axiado .rss_item .rss_image span {
		background-image: url(/wp-content/uploads/2025/04/news-axiado.jpg) !important;
	}
	
	.feed-sifly .rss_item .rss_image span {
		background-image: url(/wp-content/uploads/2025/05/news-sifly.jpg) !important;
	}
}

#about {
    background-color: rgba(0, 66, 98, .7);
    padding: 2rem;

    @media(min-width: 768px) {
        padding: 3rem;
    }

    @media(min-width: 990px) {
        padding: 5rem;
    }  

    .about-row {
        display: grid;
        margin: 0 auto;
        max-width: 1100px;
        row-gap: 1.75rem;

        @media(min-width: 768px) {
            column-gap: 2rem;
            grid-template-columns: 35% 1fr;
            row-gap: 0;
        }  
        
        @media(min-width: 992px) {
            column-gap: 3rem;
            grid-template-columns: 30% 1fr;
        }
    }

    .about-col {
        img {
            border-radius: 12px;
            width: 95%;

            @media(min-width: 768px) {
                width: auto;
            }
        }

        p {
            font-size: .95rem;
            line-height: 1.5rem;

            @media(min-width: 768px) {
                font-size: 1rem;
            }  

            a {
                color: #74d2e7;
                font-weight: 700;
                transition: color 250ms ease-in-out;

                &:hover {
                    color: #9fedff;
                }
            }
        }
    }
}

#videos {
    padding: 2rem 1rem;
    text-align: center;

    @media(min-width: 768px) {
        padding: 4rem 0;
    }  

    @media(min-width: 992px) {
        padding: 4rem 0;
    } 

    @media(min-width: 1600px) {
        padding: 6rem 0 3rem;
    }  

    h2 {
        margin-bottom: -8px;

        @media(min-width: 768px) {
            margin-bottom: 0;
        }      
    }

    .swiper-container {
        border-radius: 12px;
        height: 100%;
        overflow-x: clip;
        width: 100%;

        @media(min-width: 768px) {
            border-radius: 0;
            margin-top: 4.5rem;
            overflow-y: visible;
        } 
    }

    .swiper-wrapper {
        align-items: center;
    }

    .swiper-slide {
        align-items: center;
        background: #004262;
        border-radius: 12px;
        color: #004262;

        display: flex;
        font-size: 18px;
        height: auto;
        justify-content: center;
        overflow: hidden;
        text-align: center;
        transform: scale(.9);
        transition: transform 250ms ease-in-out;
        z-index: 8;

        @media(min-width: 768px) {
            box-shadow: 0px 0px 10px 5px rgba(0, 29, 44, 0.5);
        } 

        video {
            height: 100%;
            position: relative;
            width: 100%;
            z-index: 8;
        }

        &.swiper-slide-duplicate-active,
        &.swiper-slide-active {
            .btn-video {
                display: flex;
            }
        }

        @media(min-width: 768px) {
            video {
                opacity: .15;
                transition: opacity 250ms ease-in-out;
            }
    
            &.swiper-slide-duplicate-active,
            &.swiper-slide-active {
                transform: scale(1.1);
                z-index: 9;
    
                video {
                    opacity: 1;
                }
            }
        } 

        .btn-video {
            align-items: center;
            background-color: #004262;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            height: 60px;
            justify-content: center;
            left: 50%;
            opacity: 1;
            position: absolute;
            transform: translate(-50%, -50%);
            transition: background-color 250ms ease-in-out,
                        opacity 500ms ease-in-out;
            top: 50%;
            width: 60px;
            z-index: 10;

            &:hover {
                background-color: #0e5a80;
            }

            .bi-play-fill,
            .bi-pause-fill {
                color: #fff;
                font-size: 2rem;
            }

            @media(min-width: 1200px) {
                height: 45px;
                width: 45px;

                .bi-play-fill,
                .bi-pause-fill {
                    font-size: 1.5rem;
                }
            }

            @media(min-width: 1400px) {
                height: 50px;
                width: 50px;

                .bi-play-fill,
                .bi-pause-fill {
                    font-size: 2rem;
                }
            }

            @media(min-width: 1600px) {
                height: 70px;
                width: 70px;

                .bi-play-fill,
                .bi-pause-fill {
                    font-size: 2.5rem;
                }
            }
        }
    }

    @media(min-width: 768px) {
        .swiper-slide-duplicate-active + .swiper-slide,
        .swiper-slide-active + .swiper-slide {
            transform: scale(1);
            z-index: 8;
        } 
    
        .swiper-slide:has(+ .swiper-slide-duplicate-active),
        .swiper-slide:has(+ .swiper-slide-active) {
            transform: scale(1);
            z-index: 8;
        } 
    
        .swiper-slide-duplicate-active + * + .swiper-slide,
        .swiper-slide-active + * + .swiper-slide {
            transform: scale(.9) translateX(-22px);
            z-index: 7;
        }    
    
        .swiper-slide:has(+ * + .swiper-slide-duplicate-active),
        .swiper-slide:has(+ * + .swiper-slide-active) {
            transform: scale(.9) translateX(22px);
            z-index: 7;
        } 
    
        .swiper-slide-active ~ .swiper-slide {
            border-bottom-left-radius: 0;
            border-top-left-radius: 0;
        }
    
        .swiper-slide:has(~ .swiper-slide-active) {
            border-bottom-right-radius: 0;
            border-top-right-radius: 0;
        }
    } 

    .swiper-video-button {
        &.swiper-button-prev {
            left: 1.5rem;

            @media(min-width: 768px) {
                left: 1.25rem;
            } 
        }

        &.swiper-button-next {
            right: 1.5rem;

            @media(min-width: 768px) {
                right: 1.25rem;
            } 
        }
    }

    .swiper-overlay {
        background-color: rgba(2, 56, 89, 0.25);
        height: 100%;
        left: 0;
        mix-blend-mode: overlay;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 9;

        @media(min-width: 768px) {
            display: none;
        } 
    }
}

#contact {
    padding: 2rem;

    @media(min-width: 768px) {
        padding: 3rem;
    } 

    @media(min-width: 992px) {
        padding: 5rem 10rem;
    } 

    .wpcf7-response-output {
        background-color: #78d64c;
        border: none;
        color: #fff;
        display: block;
        font-size: .8rem;
        line-height: 1.125em;
        margin: 0;
        padding: 5px;
        position: absolute;
        text-align: center;
        top: 0;
        transform: translateY(-100%);
        transition: transform 250ms ease-in-out;
        width: 100%;

        @media(min-width: 768px) {
            font-size: .95rem;
            line-height: 1.25em;
        }

        .sent & {
            transform: translateY(0);
        }

        .invalid & {
            background-color: #eb6891;
            transform: translateY(0);
        }
    }

    .contact-form {
        align-items: center;
        border: 1px solid #74d2e7;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        overflow: hidden;
        padding: 2rem 1.25rem;
        position: relative;

        @media(min-width: 768px) {
            border-radius: 16px;
            padding: 3rem 2.25rem;
        }

        @media(min-width: 992px) {
            padding: 4rem 3rem;
        } 

        @media(min-width: 1600px) {
            max-width: 1400px;
        }

        &.glow {
            animation: glow .4s 2 alternate;
            animation-delay: .25s;
        }

        p {
            width: 100%;
        }
    }

    .wpcf7-form-control-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 1rem auto 0;
        width: 100%;

        @media(min-width: 1400px) {
            width: 60%;
        } 

        @media(min-width: 1600px) {
            width: 50%;
        } 

        input,
        textarea {
            background-color: transparent;
            border: 1px solid #74d2e7;
            border-radius: 6px;
            color: #74d2e7;
            outline: none;
            padding: .75rem 1rem;
            width: 100%;

            @media(min-width: 768px) {
                border-radius: 10px;
            } 

            &::placeholder {
                color: #74d2e7;
            }

            &:focus {              
                &::placeholder {
                    color: transparent;
                }
            }

            &.wpcf7-not-valid {
                border: 1px solid #eb6891;
                color: #eb6891;
  
                &::placeholder {
                    color: #eb6891;
                }
            }
        }

        .wpcf7-not-valid-tip {
            color: #eb6891;
            font-size: .95rem;
            font-weight: normal;
            display: block;
            padding: 10px 10px 0;
        }
    }

    .btn-row {
        p {
            margin: 0;
            position: relative;

            .wpcf7-spinner {
                background-color: #051e42;
                height: 16px;
                left: 0;
                margin: 0 10px;
                position: absolute;
                top: 11px;
                width: 16px;

                &::before {
                    background-color: #14a4e5;
                    top: 3px;
                    left: 3px;
                    width: 5px;
                    height: 5px;
                    transform-origin: 5px 5px;
                }

                @media(min-width: 768px) {
                    left: 3px;
                    margin: 0 14px;
                }
            }
        }
    }

    .contact-btn {
        align-items: center;
        background: #78d64c;
        background: linear-gradient(
            95deg in oklab,
            lab(77% -47 60) 2% 2%, lab(73% -20 -51) 60% 60%, lab(39% -13 -25) 110% 110%
          );
        border: 1px solid lab(39% -13 -25);
        border-radius: 1.75rem;
        color: #051e42;
        display: flex;
        font-size: .95rem;
        font-weight: 900;
        height: 40px;
        justify-content: space-between;
        margin-top: 10px;
        padding: 0 2rem;
        text-decoration: none;
        text-transform: uppercase;
        transition: border 200ms ease-in-out;

        @media(min-width: 768px) {
            font-size: 1.125rem;
            padding: 0 2.5rem;
        } 

        &:hover {       
            border: 1px solid #78d64c;
        }
    }
}

.ftr {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-weight: 700;
    justify-content: center;
    margin-bottom: 5rem;
    padding: 1rem;

    @media(min-width: 768px) {
        margin-bottom: 0;
        padding: 3rem;
    } 

    .ftr-nav {
        display: none;

        @media(min-width: 768px) {
            display: block;
        } 

        a {
            color: #fff;
            margin: 0 1rem;
            text-decoration: none;
            text-transform: uppercase;
            transition: color 250ms ease-in-out;

            &:hover {
                color: #74d2e7;
            }
        }
    }

    .ftr-info {
        margin-top: 0;

        @media(min-width: 768px) {
            margin-top: 2rem;
        } 
    }
}

.nav-down {
	bottom: 1.5rem;
	left: 50%;
	position: absolute;
    transform: translateX(-50%);
}

.arrow {
    animation: arrow 2s infinite;
    background: url('../img/arrow.svg') no-repeat left top;
    display: none;
	height: 25px;
	opacity: 0;
	width: 50px;

    @media(min-width: 992px) {
        display: block;
    } 
}

@keyframes arrow {
    0% {opacity:0}
    40% {opacity:1}
    80% {opacity:0}
    100% {opacity:0}
}

.arrow:first-child  {
	animation-delay: -1s;
}

.arrow:nth-child(2)  {
	animation-delay: -0.5s;
}

.arrow:last-child  {	
	animation-delay: 0s;
}

.swiper-button-prev, 
.swiper-button-next {
    background-size: 20px 32px;
    width: 20px;
    height: 32px;
    margin-top: -16px;

    @media(min-width: 768px) {
        background-size: 27px 44px;
        width: 27px;
        height: 44px;
        margin-top: -22px;
    } 
}

.animate {
    animation-duration: 0.75s;
    animation-duration: 1s; 
    animation-delay: 0;
    animation-name: animate-fade;
    animation-timing-function: cubic-bezier(.26,.53,.74,1.48);
    animation-fill-mode: backwards;
}

.animate.slide { 
    animation-name: animate-slide; 
}

@keyframes animate-slide {
    0% {
        opacity: 0;
        transform: translate(0,20px);
    }
    100% {
        opacity: 1;
        transform: translate(0,0);
    }
}

.news-item {
    animation-delay: 0.25s;

    @media (min-width: 992px) {
        &:first-child {
            animation-delay: 0.25s;
        }
    
        &:nth-child(2) {
            animation-delay: 0.5s;
        }
    
        &:last-child {
            animation-delay: 0.75s;
        }
    }
}

@keyframes glow {
	to { background-color: rgba(116, 210, 231, .05) }
}

.vids {
  display: grid;
  gap: 1rem;
  width: 100%;
  padding: 0 2rem;
  margin: 1.5rem 0 0;

  @media (min-width: 768px) {
  	grid-template-columns: repeat(2, 1fr);  
    padding: 0 3rem;
  }

  @media (min-width: 1200px) {
    gap: 1.75rem;
  	grid-template-columns: repeat(3, 1fr);  
    padding: 0 4rem;
  }
	
  @media (min-width: 1600px) {
    padding: 0 8rem;
  }
}

.vids-img {
	img {
	  border-radius: 12px;	
	  display: block;
      height: auto;
      max-width: 100%;
	}
}

.vids-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35em;
  margin: .75rem auto 0;
  max-width: 265px;
  text-align: center;
	
  @media (min-width: 576px) {
    font-size: 1.25rem;
	margin: .75rem 0 0;
	max-width: none;
  }
	
  @media (min-width: 1200px) {
	margin: 1rem 0 0;
  }
	
  @media (min-width: 1400px) {
    font-size: 1.3rem;
  }
}

.vids-link {
	align-items: center;
	display: flex;
	color: #74d2e7;
  	font-size: 1rem;
	justify-content: center;
	margin-top: .35rem;
	
	@media (min-width: 576px) {
		font-size: 1.25rem;
	}
	
	@media (min-width: 1200px) {
		margin-top: .5rem;
	}
	
	  @media (min-width: 1400px) {
		font-size: 1.3rem;
	  }
	
	a {
		color: #74d2e7;
		display: flex;
		font-style: italic;
	}
	
	span {
		margin-left: 5px;
	}
}

.vids-btn-all {
	align-items: center;
	background: #78d64c;
	background: linear-gradient(95deg in oklab, lab(77% -47 60) 2% 2%, lab(73% -20 -51) 60% 60%, lab(39% -13 -25) 110% 110%);
	border: 1px solid lab(39% -13 -25);
	border-radius: 1.75rem;
	color: #051e42;
	display: inline-flex;
	font-size: .9rem;
	font-weight: 900;
	height: 33px;
	line-height: 33px;
	justify-content: space-between;
	margin-top: 2.25rem;
	padding: 0 1rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: border 200ms ease-in-out;
	
	@media (min-width: 768px) {
		font-size: 1rem;
		height: 36px;
		line-height: 36px;
		margin-top: 3rem;		
		padding: 0 2rem;
    }
	
	@media (min-width: 1200px) {
		font-size: 1.125rem;
		height: 40px;
		line-height: 40px;
		padding: 0 2.5rem;
	}
	
	&:hover {
		border: 1px solid #78d64c;
	}
}