body {
    margin: 0;
    font-family: "Grandiflora One", cursive;
    font-weight: 800;
}

* {
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    vertical-align: top;
    margin: 0;
}

p{font-size: 16px;}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{font-weight: 800; font-family: "Grandiflora One", cursive;}

/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/







/*** Button ***/
.btn {
     
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-expand-lg {
    padding: 0 15px;
}

.navbar-dark .navbar-nav .nav-link {
     position: relative;
    /* margin-left: 25px; */
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    
    outline: none;
    transition: .5s;
}

.navbar-nav {
    gap: 20px;
}

.logo img {
    width: 100px;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}




/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .8);
    z-index: 1;
}



.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}



/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
    object-fit: cover;
    height: 100%;
}

.blog-img {
    height: 266px;
}

.blog-img img {
    width: 100%;
}



.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/


.back-to-top {
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {

    background-size: cover;
    height: 600px;
    /* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)); */
    position: relative;
}

.bg-header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(9, 30, 62, .7);
}

.bg-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tob-header {
    height: 50px;
    background-color: #091E3E;
    display: flex;
    align-items: center;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

/* ---custom-css */
#hydrogen-future {
    background-color: #EEF9FF;
}

#hydrogen-future,
#hydrogen-transpost,
#Speaker-section {
    padding: 50px 0;
}


#banner-section {
    position: relative;
}

#banner-section .carousel-inner {
    height: 600px;
}

#banner-section .carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
}

.icone {
    width: 60px;
    height: 60px;
    font-size: 30px;
}

.icone-common {
    font-size: 20px;
}

.hydrogen-img-col img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.speaker-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.speaker-img img {
    width: 100%;
}

.project-text-main {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.projects-col {
    height: 220px;
}

.enttend-col {
    height: 250px;
}

.enttend-col::after {
    opacity: 0;
    visibility: hidden;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(9, 30, 62, .7);
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.team-item:hover .projects-col::after,
.team-item:hover .enttend-col::after {
    visibility: visible;
    opacity: 1;
}

.projects-col::after {
    opacity: 0;
    visibility: hidden;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(9, 30, 62, .7);
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

#technologies-section {
    padding: 50px 0;
}

#innovations-section {
    width: 100%;
    padding: 50px 0;
    margin-top: 50px;
}

.item-icon {
    padding: 0;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.item-icon li {
    display: flex;
    gap: 10px;
    align-items: center;
}

#find-solution {
    padding: 50px 0;
    background-image: url(../img/green-hydrogen-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* #find-solution::after{content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: rgba(9, 30, 62, .7);} */
.find-heading {
    max-width: 786px;
    margin: 0 auto;
}

.item-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 28px;
    font-size: 15px;
    background-color: #06A3DA;
    color: #FFFFFF;
    border-radius: 5px;
}

.funt-slotion-main {
    gap: 20px;
    position: relative;
    z-index: 2;
}

.hydrogen-box {
    background: --webkit-gradient(linear, left top, right top, from(#004873), to(#32B4AE));
    background: linear-gradient(to right, #00304b, #2b87b1);
    padding: 20px;
    height: 100%;
}

.hydrogen-box h3 {
    color: white;
}

.section-title-s {
    position: relative;
}

.funt-slotion-col:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.funt-slotion-col-img {
    text-align: center;
}

.funt-slotion-col-img img {
    width: 100%;
}

.footer-bottom {
    background-color: #061429;
}

.contect {
    display: flex;
    align-items: center;
}

.banner-comman-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.banner-text {
    max-width: 950px;
    margin: 0 auto;
}

.comman-hedding {
    max-width: 600px;
}

.technologies-text p {
    max-width: 700px;
}

.technologies-text h3 {
    padding-top: 20px;
}

.pharagraph p {
    max-width: 700px;
    padding-top: 30px;
    margin: 0 auto;
    
    text-align: center;
}

.technologies-main {
    display: flex;
    row-gap: 20px;
    flex-direction: column;
}

.technologies-box {
    transition: 0.4s ease;
    border-radius: 25px;
}

.technologies-box:hover {
    background-color: #FFFFFF !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.carbon-icon {
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#event-section {
    padding: 50px 0;
    background: #EEF9FF;
}

.event-text {
    background: --webkit-gradient(linear, left top, right top, from(#004873), to(#32B4AE));
    background: linear-gradient(to right, #00304b, #39c1ff);
    padding: 20px;
    min-height: 200px;
    transition: 0.4s ease;
}

.event-text:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.event-col-main {
    gap: 20px;
}

#about-section {
    padding: 50px 0;
}

.about-co-right {
    min-height: 500px;
}

.about-co-right img {
    object-fit: cover;
}

.attend-box {
    height: 350px;
}

.attend-box h4 {
    font-size: 20px;
}

.conference-box {
    height: 382px;
}

#conference-contect-section {
    padding: 50px 0;
    background-color: #EEF9FF;
}

#conference-section-future {
    padding: 50px 0;
}

.join-hydrogen a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conference-contect-text {
    max-width: 888px;
}

#Projects-section {
    padding: 50px;
}

.slider-inner-main {
    margin: 0 -15px;
}

.speaker-col {
    padding: 0 15px;
}

#h2-icone-section {
    padding: 50px 0;
}

.speaker-main .slick-dots li button:before {
    font-size: 0;
    background-color: var(--primary);
    width: 26px;
    height: 15px;
}

.speaker-main .slick-dots {
    bottom: -40px;
}

.h2-icone-col img {
    width: 130px;
}

.h2-icone-col {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#visit-section {
    background-color: #EEF9FF;
    padding: 50px 0;
}

.visit-col img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#conference-ragister {
    padding: 50px 0;
}

.contact-form input {
    height: 55px;
    background-color: #EEF9FF;
    width: 100%;
}

.form-text input {
    height: 55px;
}

.form-text input::placeholder {
    font-size: 16px;
    color: #6B6A75;
}

.form-text select {
    height: 55px;
    width: 100%;
    border: 0;
    background-color: #EEF9FF;
    padding: 0 20px;
    color: #6B6A75;
    font-size: 16px;
    font-weight: 800;
}

.form-text select option{font-weight: 800;}

.submit-btn input{font-weight: 800; font-size: 20px;}

.success {
    color: green;
    font-size: 18px;
    margin-bottom: 15px;
    display: none;
}

.cpatcha-main {
    flex-wrap: wrap;
    margin-top: 0;
    row-gap: 10px;
}

.form-text #UserCaptchaCode {
    width: 100%;
    height: 100%;
    background-color: #EEF9FF;
    padding: 0 20px;
    color: #6B6A75;
    font-size: 16px;
}

#exhibit-section {
    padding: 50px 0;
    background-color: #EEF9FF;
}

.exhibit-col img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.visit-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#exhibit-form-section {
    padding: 50px 0;
}

#reasons-section {
    padding: 50px 0;
}

.industries-heading {
    font-size: 20px;
}

#join-hydrogen-section {
    padding: 50px 0;
    background-color: #EEF9FF;
}

.join-hydrogen {
    padding: 20px 10px;
}

#industry-section {
    padding: 50px 0;
}

.visit-list li {
    border-bottom: 1px solid #fff;
}

.date-icon {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.expect-icon li {
    gap: 10px;
    display: flex;
    
}

.project-main {
    gap: 10px;
    justify-content: space-between;
}

.project-heading {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.extra-info-list {
    margin-left: 10px;
    gap: 10px;
}

.extra-info-list a{font-weight: 800;}

.form-text .coman-captcha canvas {
    width: 100%;
    height: 70px;
}

.footer-top {
    padding: 50px 0;
}

.footer-logo>a {
    height: 100%;
}

.form-text-main {
    row-gap: 10px;
}

.form-text input{font-weight: 800;}

#select-tag-comman {
    display: none;
}

.form-btn button {
    width: 32px;
    height: 32px;
    padding-top: 4px;
}

.form-btn {
    text-align: end;
    margin-bottom: 15px;
    margin-right: 15px;
}

#form-confernce-main,
#Become-Exhibitor,
#contactus-form-main {
    display: none;
    background-color: rgba(15, 15, 16, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: 2;
    transform: translate(-50%, -50%);
}


/* comman-formcss */

.form-text input {
    width: 100% !important;
    background-color: #EEF9FF;
}

.error {
    color: red;
    font-size: 0.9em;
}

.success {
    color: green;
    font-size: 1em;
}


.captcha-box {
    font-size: 24px;
    color: white;
}

.captcha-common-bg {
    background-image: url(../img/password-bg.jpg);
}