/* ----------------------------------
Basic CSS
-------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

body {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
a,
div {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-family: 'Roboto';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat';
    font-weight: 700;
}

a {
    color: inherit;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    border: none;
    outline: 0 none;
}

.section-padding {
    padding: 70px 0;
}

.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

img {
    max-width: 100%;
}

/* Header area css */

.logo img {
    width: 500px;
}

.mobile {
    display: none;
    ;
}

/*Banner*/
.exh-wrap {
    margin-bottom: 30px;
}

.exh-logo-wrap {
    margin-bottom: 30px;
}

.exh-logo {
    margin-bottom: 20px;
}

.exh-logo img {
    width: 270px;
}

.banner-wrap h2 {
    color: #000000;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 30px;
}

.banner-wrap h2 span {
    color: #013e75;
}

.reg-btn {
    height: 55px;
    line-height: 55px;
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #049e9f;
    padding: 0 40px;
    color: #fff;
    border-radius: 6px;
}

.reg-btn:hover,
.reg-btn:active,
.reg-btn:focus {
    background: #087878;
    color: #ffffff;
}

.exh-info {
    padding-top: 40px;
}

.exh-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Reason  */
.section-title h2 {
    font-size: 28px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.section-title h2:after {
    position: absolute;
    width: 150px;
    height: 5px;
    content: "";
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #1fbfdf;
}

.reason-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 100px;
}

.reason {
    border: 2px solid #dee2e6;
    padding: 15px;
}

.reason a {
    color: #013e75;
    font-weight: 700;
    text-decoration: underline;
}

.number {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
    background: #20bdb6;
    font-family: 'Montserrat';
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-top: -65px;
}

/* Video */
.promo-video-wrap {
    position: relative;
}

.promo-video-wrap img {
    border-radius: 6px;
}

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #ffc921; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: darken(#ffffff, 10%);
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #20bdb6;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
/* CountDown */
.countdown-area {
    background: url(../img/counter-bg.jpg) no-repeat scroll center center / cover;
}
.countdown-area .section-title h2 {
    color: #ffffff;
    margin-bottom: 20px;
}
.section-title p {
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
}
.countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    gap: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.countdown > .cdown {
    border-radius: 6px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    border: 2px solid #fff;
    padding: 30px 0;
}
.cdown strong {
    font-size: 74px;
    color: #20bdb6;
}
.cdown p {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 20px;
}

/*Footer*/
.footer-area {
    background: #013e75;
}

.inner-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.lines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.lines span {
    width: 30px;
    margin-right: 10px;
}

.lines span:first-child {
    background: #2dbcb6;
}

.lines span:nth-child(2) {
    background: #03c0de;
}

.lines span:nth-child(3) {
    background: #5b91cd;
}

.lines span:nth-child(4) {
    background: #a8ce43;
    margin-right: 0px;
}

.footer-text {
    text-align: center;
    padding: 30px 0;
}

.footer-text h2,
.footer-text h2 a {
    font-size: 130px;
    font-family: 'BigNoodleTitling';
    color: #a8ce43;
    line-height: 1;
    font-weight: normal;
}

.footer-text h2 span {
    font-family: 'Helvetica Neue LT Std';
    display: inline-block;
    margin-right: 20px;
    color: #ffffff;
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
}

.social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.social li a {
    font-size: 40px;
    padding: 10px;
    color: #ffffff;
}

.social li a:hover {
    color: #f47a4d;
}

.social .hashtag {
    font-size: 52px;
    color: #f47a4d;
}