﻿body {
    font-family: 'Poppins', 'Noto Sans Thai', sans-serif;
    background: #ffffff;
}

.full-width {
    width: 100%;
}


@media (min-width: 1300px) {
    .container {
        width: 1270px;
    }
}

@media (max-width: 460px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/*****************************************
* Fade Gradient
*****************************************/
.fade-gradient {
    position: relative;
}

    .fade-gradient::after {
        position: absolute;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1) );
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/*****************************************
* Fade Image
*****************************************/
.fadeimage-mouseover {
    overflow: hidden;
    cursor: pointer;
}

    .fadeimage-mouseover:hover img {
        transform: scale(1.1);
        transition: transform 3s ease-in;
    }



/*****************************************
* Loader
*****************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee9e2;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 999;
}


.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink-image {
    width: 300px;
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}


/*****************************************
* Main Content 
*****************************************/
#main-content {
    margin-top: 70px;
    min-height: 50vh;
}



@media(max-width: 460px) {
    #main-content {
        margin-top: 60px
    }
}


/*****************************************
* Menu Modal
*****************************************/
#menuModal {
    background: #eee9e2;
}

    #menuModal .modal-dialog {
        margin: 3rem 1.5rem 3rem 1.5rem;
    }

        #menuModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            background: transparent;
        }

            #menuModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
                opacity: 1;
            }

            #menuModal .modal-dialog .modal-content .menu-brand {
                text-align: center;
                margin-bottom: 30px;
            }

                #menuModal .modal-dialog .modal-content .menu-brand img {
                    width: 50%;
                }

            #menuModal .modal-dialog .modal-content #mobile-menu {
                list-style: none;
                padding-left: 0px;
            }

                #menuModal .modal-dialog .modal-content #mobile-menu li a {
                    color: #d69e17;
                    font-size: 1.5rem;
                    letter-spacing: 0px;
                    text-align: center;
                    padding: 2px 0px;
                    text-transform: unset;
                }


/*****************************************
* Navbar 
*****************************************/
.navbar {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    background: #eee9e2;
    transition: 0.5s ease all;
    height: 70px;
}

    .navbar .navbar-share {
        position: absolute;
        top: 24px;
        right: 46px;
    }

        .navbar .navbar-share img {
            width: 60px;
        }


    .navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(214,158,23, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }

    .navbar .navbar-top {
        position: absolute;
        top: 20px;
        right: 24px;
    }

        .navbar .navbar-top .external-link, .navbar .navbar-top .external-link:hover {
            border: 1px solid #45CBCA;
            padding: 5px 13px 4px 13px;
            color: #000000;
            border-radius: 7px;
            font-size: 0.9rem;
            margin: 0px 5px;
            text-decoration: none;
            background: #45CBCA;
            text-transform: uppercase;
        }



    .navbar.bg-transparent {
        background-color: rgba(0, 0, 0, 0);
    }


    .navbar .navbar-brand .navbar-logo {
        height: 46px;
        transition: 0.5s ease all;
    }


.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:visited {
    color: #d69e17;
    font-size: 14px;
    line-height: 14px;
    padding: 0.25rem 1rem;
    letter-spacing: 0px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}


    .navbar-light .navbar-nav .nav-link:hover {
        color: #000000;
    }


    .navbar-light .navbar-nav .nav-link.active {
        background-color: #3170e7 !important;
        border-color: #3170e7 !important;
        border-radius: 10px;
        outline: 0;
        position: relative;
        color: #ffffff;
    }


@media (max-width: 460px) {

    .navbar {
        padding: 0rem 1rem;
        height: 60px;
    }

    .navbar-light .navbar-toggler {
        border: none;
        outline: none;
    }

    .navbar .navbar-share {
        top: 26px;
        right: 60px;
    }

        .navbar .navbar-share img {
            width: 20px;
        }

    .navbar .navbar-top {
        top: 7px;
        right: 50px;
    }

    .navbar .navbar-brand {
        top: 8px;
    }


        .navbar .navbar-brand .navbar-logo {
            height: 36px;
        }

    .navbar-nav {
        margin: 10px auto 0px auto;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:visited {
        color: #ffffff;
        font-size: 1.5rem;
        letter-spacing: 0px;
    }


    .navbar-collapse {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:visited {
        color: #000000;
    }

    .nav-toolbar {
        display: none;
    }

    .nav-rightmenu {
        display: none;
    }
}

/*****************************************
* Footer
*****************************************/
#footer {
    color: #ffffff;
    background: #000000;
    padding: 40px 0px 0px 0px;
    margin-top: 0px;
    font-size: 16px;
    border-top: 8px solid #d69e17;
}

    #footer .container {
        padding-right: 0px;
        padding-left: 0px;
    }


@media (max-width: 460px) {

    #footer {
        /*border-radius: 60px 60px 0px 0px;*/
    }
}


.footer-bottom {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}


    .footer-bottom .footer-header {
        font-size: 24px;
        line-height: 28px;
        font-weight: normal;
        color: #d69e17;
    }

    .footer-bottom .footer-text {
        font-size: 16px;
        line-height: 20px;
        padding: 5px 0px 20px 0px;
    }

    .footer-bottom .footer-phone {
        font-size: 1.5rem;
        line-height: 2rem;
        padding: 5px 0px;
        margin-bottom: 20px;
    }

        .footer-bottom .footer-phone a, .footer-bottom .footer-phone a:hover {
            color: #ffffff;
            text-decoration: none;
        }

    .footer-bottom .left-panel {
        width: 70%;
        padding: 20px;
        display: flex;
        justify-content: flex-start;
    }

        .footer-bottom .left-panel .footer-logo {
            width: 150px;
        }

            .footer-bottom .left-panel .footer-logo img {
                width: 100%;
                margin-bottom: 20px;
            }

        .footer-bottom .left-panel .footer-brand {
            width: calc(100% - 150px);
            padding-left: 20px;
        }


        .footer-bottom .left-panel .qr-code {
            width: 40%;
        }


    .footer-bottom .right-panel {
        width: 30%;
        padding: 20px;
    }


.footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0px 20px 0px;
}

    .footer-social .social-item {
        width: 32px;
        height: 32px;
        margin: 0px 5px;
    }


.footer-copyright {
    color: #808080;
    text-align: center;
    padding: 20px 0px;
    border-top: 1px solid #d69e17;
}


@media (max-width: 460px) {

    .footer-bottom .left-panel, .footer-bottom .right-panel {
        width: 100%;
        padding: 10px 20px;
    }

        .footer-bottom .left-panel .footer-logo {
            width: 80px;
        }

        .footer-bottom .left-panel .footer-brand {
            width: calc(100% - 90px);
            padding-left: 20px;
        }

    .footer-bottom .footer-header {
        font-size: 18px;
        line-height: 20px;
    }

    .footer-bottom .footer-text {
        font-size: 14px;
        line-height: 16px;
    }
}


/*****************************************
* Main Header
*****************************************/
#main-header {
    position: relative;
}

#main-header {
}


.main-header-content {
    position: absolute;
    color: #fff;
    text-align: center;
    margin: 0;
    top: 80%;
    left: 10%;
    right: 10%;
    -ms-transform: translate(-50%, -80%);
    transform: translate(0%, -80%);
    z-index: 1;
}

    .main-header-content h1 {
        font-size: 40px;
        line-height: 44px;
        font-weight: 600;
        letter-spacing: 0px;
        text-transform: uppercase;
        color: #FFD93B;
    }

    .main-header-content p {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }


/*****************************************
* Trip Infomation
*****************************************/
#trip-infomation {
    padding: 50px 0px;
}

    #trip-infomation .title {
        text-align: center;
        font-size: 40px;
        line-height: 44px;
        font-weight: 600;
        color: #ff7d26;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }


.trip-infomation {
    /*border: 1px solid red;*/
    display: flex;
    justify-content: space-between;
}

    .trip-infomation .trip-info {
        /*border: 1px solid red;*/
        width: 58%;
        font-size: 18px;
        line-height: 22px;
    }

        .trip-infomation .trip-info .header {
            font-size: 22px;
            line-height: 26px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .trip-infomation .trip-info .paragraph {
            font-size: 18px;
            line-height: 22px;
            margin-bottom: 30px;
        }

    .trip-infomation .trip-booking {
        border: 1px solid #e9e9e9;
        width: 38%;
        border-radius: 20px;
        padding: 20px;
    }

        .trip-infomation .trip-booking .header {
            font-size: 22px;
            line-height: 26px;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .trip-infomation .trip-booking .trip-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }

            .trip-infomation .trip-booking .trip-price .start-price {
                width: 50%;
                font-size: 16px;
                font-weight: 600;
                line-height: 20px;
            }

            .trip-infomation .trip-booking .trip-price .price-rate {
                width: 40%;
                color: #ff7d26;
                font-size: 30px;
                line-height: 34px;
                font-weight: bold;
                padding-left: 10px;
                text-align: center;
            }

            .trip-infomation .trip-booking .trip-price .price-unit {
                font-size: 16px;
                line-height: 20px;
                font-weight: 600;
                text-align: right;
            }


        .trip-infomation .trip-booking .btn-booking {
            color: #ffffff;
            background: #3170e7;
            border: 2px solid #3170e7;
            padding: 13px 20px;
            display: block;
            border-radius: 10px;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 2px;
            font-size: 1.2rem;
            text-decoration: none;
            transition: 0.3s ease all;
            text-align: center;
            margin: 20px 0px;
        }

        .trip-infomation .trip-booking .help-support {
            font-size: 16px;
            line-height: 20px;
        }



/*****************************************
* What Included
*****************************************/
#whats-included {
    padding: 0px 0px 100px 0px;
}

.whats-included .header {
    font-size: 22px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

.included-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .included-lists .included-item {
        width: calc(100% / 3);
        padding: 5px;
    }

        .included-lists .included-item .included-name {
            font-size: 18px;
            line-height: 22px;
            text-align: center;
            padding: 10px 20px;
        }


/*****************************************
* Home Intro
*****************************************/
#home-intro {
    padding: 0px 0px 0px 0px;
}

.home-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #141414;
    background: #f0f0f0;
}

    .home-intro .home-intro-info {
        width: 50%;
        padding: 5%;
    }

        .home-intro .home-intro-info .headline {
            font-size: 60px;
            line-height: 60px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .home-intro .home-intro-info .redirect-link,
        .home-intro .home-intro-info .redirect-link:hover {
            color: #141414;
            font-size: 20px;
            line-height: 30px;
            margin-top: 20px;
            display: inline-block;
            border-bottom: 1px solid #141414;
            text-decoration: none;
        }

    .home-intro .home-intro-photo {
        width: 50%;
    }

@media (max-width: 460px) {

    .home-intro .home-intro-info {
        width: 100%;
        order: 2;
        padding: 40px 20px;
    }

        .home-intro .home-intro-info .headline {
            font-size: 30px;
            line-height: 30px;
        }

        .home-intro .home-intro-info .redirect-link, .home-intro .home-intro-info .redirect-link:hover {
            font-size: 16px;
            line-height: 16px;
            margin-top: 10px;
        }


    .home-intro .home-intro-photo {
        width: 100%;
        order: 1;
    }
}



/*****************************************
* Home Content
*****************************************/
.home-content {
    padding: 100px 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #141414;
    padding-bottom: 80px;
    border-bottom: 10px solid #000000;
}

    .home-content.no-border-bottom {
        border-bottom: none;
    }

    .home-content .home-content-title {
        width: 30%;
        font-size: 32px;
        line-height: 34px;
        font-weight: 700;
        text-transform: uppercase;
    }

        .home-content .home-content-title.big-text {
            font-size: 70px;
            line-height: 70px;
        }

        .home-content .home-content-title .sub-title {
            font-size: 12px;
            line-height: 16px;
            margin-top: 10px;
        }

    .home-content .home-content-info {
        width: 70%;
        font-size: 20px;
        line-height: 26px;
        padding: 0px 20px;
    }


        .home-content .home-content-info .redirect-link,
        .home-content .home-content-info .redirect-link:hover {
            color: #141414;
            font-size: 20px;
            line-height: 30px;
            margin-top: 20px;
            display: inline-block;
            border-bottom: 1px solid #141414;
            text-decoration: none;
        }

        .home-content .home-content-info .btn-moreinfo {
            padding: 14px 16px;
            color: #ffffff;
            background-color: #85610c;
            border: 1px solid #85610c;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-block;
            text-decoration: none;
            font-size: 15px;
            line-height: 16px;
            text-align: center;
            width: 170px;
            margin-top: 30px;
        }

    .home-content .home-content-gallery {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 20px 0px;
    }

        .home-content .home-content-gallery .gallery-item {
            width: calc(100% / 4);
        }

    .home-content .home-content-photo {
        margin-bottom: 40px;
        width: 100%;
    }


@media (max-width: 460px) {

    .home-content {
        padding: 30px 0px;
    }

        .home-content .home-content-title {
            width: 100%;
            font-size: 26px;
            line-height: 28px;
            margin-bottom: 10px;
        }

            .home-content .home-content-title.big-text {
                font-size: 60px;
                line-height: 60px;
                margin-bottom: 20px;
            }

        .home-content .home-content-info {
            width: 100%;
            font-size: 16px;
            line-height: 20px;
            padding: 0px;
        }

            .home-content .home-content-info .photo {
                width: 100%;
            }

            .home-content .home-content-info .btn-moreinfo {
                margin-top: 15px;
                font-size: 12px;
                line-height: 12px;
                font-weight: 600;
                width: 140px;
                padding: 12px 16px;
            }
}


/*****************************************
* Home Foundation
*****************************************/
#home-foundation {
    background: #ffffff;
    padding: 0px 80px;
}

@media (max-width: 460px) {
    #home-foundation {
        background: #ffffff;
        padding: 0px 20px;
    }
}


/*****************************************
* Partner
*****************************************/
#partner {
    padding: 100px 80px;
    background: #ffffff;
}

.parter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .parter .parter-item {
        width: calc(100%/5);
    }


@media (max-width: 460px) {
    #partner {
        padding: 40px 20px;
    }

    .parter .parter-item {
        width: calc(100%/3);
    }
}




/*****************************************
* Donation
*****************************************/
#donation {
    background: #d69e17;
    padding: 100px 80px 0px 80px;
}


@media (max-width: 460px) {
    #donation {
        padding: 40px 20px 0px 20px;
    }
}

.donation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #141414;
}

    .donation .donation-info {
        width: 50%;
        padding: 40px;
    }

        .donation .donation-info .title {
            font-size: 46px;
            line-height: 46px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .donation .donation-info .detail {
            font-size: 22px;
            line-height: 30px;
            margin-bottom: 20px;
        }

    .donation .donation-scan {
        width: 30%;
    }


@media (max-width: 460px) {
    .donation .donation-info {
        width: 100%;
        padding: 0px;
    }

        .donation .donation-info .title {
            font-size: 40px;
            line-height: 40px;
            margin-bottom: 10px;
        }

        .donation .donation-info .detail {
            font-size: 16px;
            line-height: 20px;
            margin-bottom: 20px;
        }

    .donation .donation-scan {
        width: 100%;
    }
}


/*****************************************
* Welcome Video
*****************************************/
#welcome-video {
    background: #000000;
    padding: 0px;
    position: relative;
}

@media(max-width:430px) {
    #welcome-video {
        padding: 0px;
    }
}



#welcome-video .inverter-text-top {
    /*color: #85610c;*/
    letter-spacing: 0px;
    color: #fffaef;
    position: absolute;
    bottom: auto;
    max-width: 1190px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    left: 50%;
    z-index: 2;
    top: 20%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    text-align: center;
    background: rgba(133, 97, 12, 0.5);
    width: 70%;
    padding: 20px;
}

    #welcome-video .inverter-text-top .inverter-headline {
        font-size: 46px;
        line-height: 46px;
        font-weight: 600;
        margin-bottom: 10px;
        width: 100%;
        text-transform: uppercase;
    }

    #welcome-video .inverter-text-top .inverter-subheadline {
        font-size: 28px;
        line-height: 28px;
        font-weight: 400;
        width: 100%;
    }



@media(max-width:460px) {
    #welcome-video .inverter-text-top {
        top: 10%;
        left: 10%;
        transform: translate(-10%, -10%);
        width: 100%;
    }

        #welcome-video .inverter-text-top .inverter-headline {
            font-size: 20px;
            line-height: 20px;
            margin-bottom: 5px;
        }

        #welcome-video .inverter-text-top .inverter-subheadline {
            font-size: 12px;
            line-height: 16px;
        }
}


#welcome-video .footer-button {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 2;
    width: inherit;
}

    #welcome-video .footer-button .btn-contact {
        padding: 16px 20px;
        color: #ffffff;
        background-color: #85610c;
        border: 1px solid #85610c;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 16px;
        line-height: 16px;
        margin: 5px;
        text-align: center;
        width: inherit;
    }

    #welcome-video .footer-button .btn-contact-outline {
        padding: 16px 20px;
        color: #85610c;
        background-color: transparent;
        border: 1px solid #85610c;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 16px;
        line-height: 16px;
        margin: 5px;
        text-align: center;
        width: inherit;
    }


@media(max-width:460px) {
    #welcome-video .footer-button {
        width: 60%;
    }

        #welcome-video .footer-button .btn-contact {
            width: 100%;
        }

        #welcome-video .footer-button .btn-contact-outline {
            width: 100%;
        }
}


.welcome-video-wrapper {
    height: 70vh;
    min-height: 680px;
    /*max-width: 1920px;*/
    max-height: 1260px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .welcome-video-wrapper .welcome-video-container {
        height: 100%;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        position: relative;
    }

        .welcome-video-wrapper .welcome-video-container .welcome-video-video {
            object-fit: cover;
            position: relative;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: calc(100% + 2px);
        }


.microinverter-video-wrapper {
    height: 70vh;
    min-height: 680px;
    /*max-width: 1920px;*/
    max-height: 1260px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .microinverter-video-wrapper .microinverter-video-container {
        height: 100%;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        position: relative;
    }

        .microinverter-video-wrapper .microinverter-video-container .microinverter-video-video {
            object-fit: cover;
            position: relative;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: calc(100% + 2px);
        }



/*****************************************
* New Events
*****************************************/
#news-events {
    background: #ffffff;
    padding: 100px 80px 100px 80px;
}

    #news-events .title {
        font-size: 32px;
        line-height: 34px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

@media (max-width: 460px) {
    #news-events {
        background: #ffffff;
        padding: 50px 20px;
    }
}

.news-events {
}

    .news-events .news-events-item {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

        .news-events .news-events-item .news-events-photo {
            width: 50%;
            padding: 0px 20px;
        }

        .news-events .news-events-item .news-events-info {
            width: 50%;
            padding: 0px 20px;
            font-size: 18px;
            line-height: 20px;
        }

            .news-events .news-events-item .news-events-info .events-name {
                font-size: 30px;
                line-height: 32px;
                font-weight: 600;
                margin-bottom: 10px;
            }

            .news-events .news-events-item .news-events-info .events-date {
                font-size: 16px;
                line-height: 18px;
            }

            .news-events .news-events-item .news-events-info .events-venue {
                font-size: 16px;
                line-height: 18px;
                margin-bottom: 20px;
            }

        .news-events .news-events-item .news-events-gallery {
            width: 100%;
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            padding: 10px;
        }

            .news-events .news-events-item .news-events-gallery .news-events-gallery-item {
                width: calc(100% / 2);
                padding: 10px;
            }


@media (max-width: 460px) {
    .news-events .news-events-item .news-events-photo {
        width: 100%;
        padding: 0px;
    }

    .news-events .news-events-item .news-events-info {
        width: 100%;
        padding: 20px 0px;
    }

    .news-events .news-events-item .news-events-gallery {
        width: 100%;
        padding: 0px;
    }

        .news-events .news-events-item .news-events-gallery .news-events-gallery-item {
            width: 100%;
            padding: 10px;
        }
}
