@import url(https://fonts.googleapis.com/css?family=DM+Sans:400,400i,500,500i,700,700i&display=swap);


.display-1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 7rem;
    font-weight: 900;
}

.display-1>.mbr-iconfont {
    font-size: 7.04rem;
}

.display-2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.8rem;
    line-height: 1.3;
}

.display-2>.mbr-iconfont {
    font-size: 4.48rem;
}

.display-4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    line-height: 1.2;
}

.display-4>.mbr-iconfont {
    font-size: 1.12rem;
}

.display-5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.4;
}

.display-5>.mbr-iconfont {
    font-size: 1.92rem;
}

.display-7 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
}

.display-7>.mbr-iconfont {
    font-size: 1.6rem;
}


/* ---- Fluid typography for mobile devices ---- */


/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */


/* 100vw - current viewport width */


/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */


/* 0.65 - min scale variable, may vary */

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.52rem;
        font-size: calc(2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 2.24rem;
        font-size: calc(1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-4 {
        font-size: 0.56rem;
        font-size: calc(0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-5 {
        font-size: 0.96rem;
        font-size: calc(1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
    }
}

/* @import url(https://fonts.googleapis.com/css?family=Raleway:500); */

@-webkit-keyframes leftAnim {
    0% {
        -webkit-transform: translateX(97px);
        -moz-transform: translateX(97px);
        transform: translateX(97px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes leftAnim {
    0% {
        -webkit-transform: translateX(97px);
        -moz-transform: translateX(97px);
        transform: translateX(97px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes leftAnim {
    0% {
        -webkit-transform: translateX(97px);
        -moz-transform: translateX(97px);
        transform: translateX(97px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes leftAnim {
    0% {
        -webkit-transform: translateX(97px);
        -moz-transform: translateX(97px);
        transform: translateX(97px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes rightAnim {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-93px);
        -moz-transform: translateX(-93px);
        transform: translateX(-93px);
    }
}

@-moz-keyframes rightAnim {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-93px);
        -moz-transform: translateX(-93px);
        transform: translateX(-93px);
    }
}

@-ms-keyframes rightAnim {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-93px);
        -moz-transform: translateX(-93px);
        transform: translateX(-93px);
    }
}

@keyframes rightAnim {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-93px);
        -moz-transform: translateX(-93px);
        transform: translateX(-93px);
    }
}

.reveal {
    margin: 0 20px;
    overflow: hidden;
}

.reveal__content {
    transform: translateY(100%);
    animation: reveal 1.7s cubic-bezier(1, 0, 0.3, 0.9) forwards;
}

.reveal:nth-child(2) .reveal__content {
    animation-delay: 0.6s;
}

.reveal:nth-child(3) .reveal__content {
    animation-delay: 1.2s;
}

@keyframes reveal {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.loader {
    width: 300px;
    height: 150px;
    margin: 0 auto;
    position: relative;
}

.loader::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    z-index: 1;
    height: 80px;
    top: 14%;
    border-left: 2px dotted #000;
}

.loader__box {
    position: absolute;
    top: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
    z-index: 2;
}

.loader--left {
    left: 0;
}

.loader--left .loader__circle {
    background-color: #fff;
    right: 10px;
    -webkit-animation: leftAnim .5s ease-in-out alternate infinite;
    -moz-animation: leftAnim .5s ease-in-out alternate infinite;
    animation: leftAnim .5s ease-in-out alternate infinite;
}

.loader--right {
    right: 0;
}

.loader--right .loader__circle {
    left: 10px;
    -webkit-animation: rightAnim .5s ease-in-out alternate infinite;
    -moz-animation: rightAnim .5s ease-in-out alternate infinite;
    animation: rightAnim .5s ease-in-out alternate infinite;
}

.loader__circle {
    width: 45px;
    height: 45px;
    border: solid 2px black;
    display: block;
    background-color: #000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -37.5px;
}

.v-align {
    position: absolute;
    text-align: center;
    left: 0;
    width: 100%;
    max-height: 90vh;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

h1 {
    font-size: 74px;
    display: block;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    padding: 15px 20px;
    display: inline-block;
    margin-top: -5vh;
}

h3 {
    font-size: 20px;
    display: block;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    /* padding: 15px 20px; */
    display: block;
    /* margin-bottom: 5vh; */
    /* margin-top: -5vh; */
}

.m-0 {
    margin: 0;
}


html {
    scroll-behavior: smooth;
}

/* .feature-block-two h4 {
    position: relative;
    display: block;
    font-size: 21px;
    line-height: 1.2em;
    color: #12114a;
    font-weight: 700;
    margin-bottom: 10px;
} */

/* .scroll-to-top {
    background: #2575fc;
}

.nav-outer .mobile-nav-toggler {
    color: #2575fc;
} */

.display-small {
    font-size: 1.5rem !important;
    font-family: 'DM Sans', sans-serif !important;
    color: #fff !important;
    margin-top: -1rem !important;
    padding: 15px 20px !important;
}

.display-lead {
    font-size: 8rem !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 800 !important; display: block !important;
    text-align: center !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    color: #fff !important;
    padding: 15px 20px !important;
    display: inline-block !important;
    margin-top: -5vh !important;
}


.banner-conference-two .time-countdown .counter-column:nth-child(3):after {
    background-color: #fff;
}

.main-header.fixed-header .main-box {
    padding: 10px 0;
    background-color: #08081a;
}

.btn-style-two:hover {
    color: #333;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.banner-carousel .content-box .title {
    display: block;
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-carousel .content-box .info-list li .icon {
    color: #fff;
    margin-right: 10px;
    float: left;
    font-size: 18px;
    line-height: 26px;
}

.main-menu .navigation>li>a:before {
    position: absolute;
    left: 50%;
    bottom: 10px;
    height: 2px;
    width: 0%;
    content: "";
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    transform: scale(-1);
    background: rgb(247, 0, 104);
    background: -moz-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
    background: -webkit-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
    background: linear-gradient(to left, rgb(37 116 251) 0%, rgba(68, 16, 102, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F70068', endColorstr='#441066', GradientType=1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.coming-soon-section .outer-box {
    position: relative;
    display: block;
    padding: 30px 80px;
    background-color: #ffffff;
    text-align: center;
    margin-top: -72px;
    background: rgb(247, 0, 104);
    background: -moz-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
    background: -webkit-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
    background: linear-gradient(to left, rgb(37 116 251) 0%, rgb(21 58 121) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F70068', endColorstr='#441066', GradientType=1);
    box-shadow: 0 0 30px rgb(0 0 0 / 30%);
}

.bold900 {
    font-weight: 900;
}

.nexttitle {
    position: absolute;
    color: #fff;
    top: -1.5rem;
    left: 10rem;
    font-size: 25px;
    font-weight: 900;
}

.about-section .image-column .image-box img {
    position: relative;
    z-index: 1;
    border-radius: 100%;
    width: 100%;
    height: 30rem;
    border: 15px solid #ffffff;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}

.areaofinterest_title {

    font-weight: bold;
    font-size: 24px;
    color: #000;
    padding: 3px;
}

.feature-block-two .text {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
    cursor: default;
}

.main-header .logo-box .logo img {
    width: 12rem;
}

.speakers-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(8 8 26);
    content: "";
}



.feature-block-two .inner-box {
    position: relative;
    padding: 40px 11px;
    padding-left: 10px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 30px 40px rgb(0 0 0 / 10%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    overflow: hidden;
}

.hack_date {
    /* color: #ec1880; */
    font-weight: bold;
    font-size: larger;
    line-height: 50px;
}

.text-white {
    color: #fff !important;
}

.yellowBg {
    text-align: center;
    background-image: linear-gradient(#faaf00ed, #69510ce8), url("../images/illustration/header-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.greenBg {
    text-align: center;
    background-image: linear-gradient(#40cbb4d7, #3f3f3fe3), url("../images/illustration/mbr-700x435.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: #40cbb4 !important; */
}

.redBg {
    text-align: center;
    background-image: linear-gradient(#ffafd8ed, #3f3f3fe3), url("../images/illustration/project.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: #e6275a !important;nath */
}

.cards-wrapper {
    display: flex;
    justify-content: center;
}

.card img {
    max-width: 100%;
    max-height: 100%;
}

.card {
    margin: 0 0.5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
    border-radius: 0;
}

.carousel-inner {
    padding: 1em;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: #e1e1e1;
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.card img {
    width: 15rem;
    height: 15em;
}

.card-body {
    max-width: 15rem;
}

.w6rem {
    height: 6rem !important;
}

.bg-video-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

video {
    min-width: 100%;
    min-height: 100vh;
    z-index: 1;
}

.overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .7) 50%);
    background-size: 3px 3px;
    z-index: 2;
}

.vid_txt {
    text-align: center !important;
    color: #fff !important;
    position: absolute !important;
    top: 30% !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto !important;
    z-index: 3 !important;
}

#fancybox-container-1 {
    transform: scale(.7);
}

.fancybox-slide>* {
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0;
    border-width: 0;
    vertical-align: middle;
    text-align: left;
    background-color: #fff;
    overflow: auto;
    box-sizing: border-box;
}

.owl-stage-outer.owl-height {
    max-height: 45rem;
}

.howtodiv {
    width: 200px !important;
}

.howtotxt {
    position: absolute !important;
    left: 0 !important;
    padding: 10px !important;
}

/* @media (min-width: 768px) {
    .card img {
        height: 11em;
    }
} */
.aoi {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.areaview {
    position: relative;
    padding: 60px 0 0px;
}


.fancybox-slide--iframe .fancybox-content {
    padding: 0;
    width: 100%;
    height: 100%;
    max-width: calc(100% - 100px);
    max-height: calc(100% - 88px);
    overflow: visible;
    background: #fff;
}

#referral-zone-info {
    font-size: 25px;
    font-weight: bold;
    display: block;
}

.iti__flag-container {
    position: unset !important;
}

.iti--allow-dropdown {
    display: flex;
}

.ticket-form .form-group input[type="password"] {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #9da6b4;
    font-weight: 400;
    height: 60px;
    padding: 20px 30px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}


.ticket-form .form-group textarea[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #9da6b4;
    font-weight: 400;
    height: 160px;
    padding: 20px 30px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.ticket-form .form-group label {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: #888888;
    padding: 10px 0px 0px 12px;
}

.iti.iti--allow-dropdown>input {
    max-width: 100%;
    border: 0 !important;
    height: 55px !important;
    padding: 0 !important;
}

.overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(45deg, rgb(0 0 0) 50%, rgba(0, 0, 0, .7) 70%);
    background-size: 3px 3px;
    z-index: 2;
}

.banner-carousel .content-box h2 {
    font-size: 40px;
}
#projectrequirements {
    padding: 70px 0 10rem 0;
    background-color: #08081a1c;
}
#howtoapply {
    padding: 120px 0 5rem;
}

ul.resp-tabs-list,
p {
    margin: 0px;
    padding: 0px;
}

.resp-tabs-list li {
    font-weight: 600;
    display: inline-block;
    padding: 13px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    float: left;
}

.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
}

h2.resp-accordion {
    cursor: pointer;
    padding: 5px;
    display: none;
}

.resp-tab-content {
    display: none;
    padding: 15px;
}

.resp-tab-active {
    border: 1px solid #5AB1D0 !important;
    border-bottom: none;
    margin-bottom: -1px !important;
    padding: 12px 14px 14px 14px !important;
    border-top: 4px solid #5AB1D0 !important;
    border-bottom: 0px #fff solid !important;
}

.resp-tab-active {
    border-bottom: none;
    background-color: #fff;
}

.resp-content-active,
.resp-accordion-active {
    display: block;
}

.resp-tab-content {
    border: 1px solid #c1c1c1;
    border-top-color: #5AB1D0;
}

h2.resp-accordion {
    font-size: 18px;
    border: 1px solid #c1c1c1;
    border-top: 0px solid #c1c1c1;
    margin: 0px;
    padding: 10px 15px;
}

h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    margin-bottom: 0px !important;
    padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue;
}

/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 30%;
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 15px 15px !important;
    margin: 0 0 4px;
    cursor: pointer;
    float: none;
}

.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    float: left;
    width: 68%;
    min-height: 600px;
    border-radius: 4px;
    clear: none;
}

.resp-vtabs .resp-tab-content {
    border: none;
    word-wrap: break-word;
    line-height: 28px;
    font-size: 16px;
}
.resp-vtabs .resp-tab-content ul {
    margin: 0 20px;
    padding: 10px 4px;
}

.resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    padding: 14px 15px 15px 14px !important;
    border-top: 1px solid;
    border: 1px solid #5AB1D0 !important;
    border-left: 4px solid #5AB1D0 !important;
    margin-bottom: 4px !important;
    border-right: 1px #FFF solid !important;
}

.resp-arrow {
    width: 0;
    height: 0;
    float: right;
    margin-top: 3px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #c1c1c1;
}

h2.resp-tab-active span.resp-arrow {
    border: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #9B9797;
}

/*-----------Accordion styles-----------*/
h2.resp-tab-active {
    background: #DBDBDB;
    /* !important;*/
}

.resp-easy-accordion h2.resp-accordion {
    display: block;
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1;
    /* !important;*/
}

.resp-jfit {
    width: 100%;
    margin: 0px;
}

.resp-tab-content-active {
    display: block;
}

h2.resp-accordion:first-child {
    border-top: 1px solid #c1c1c1;
    /* !important;*/
}
/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
    #projectrequirements {
        padding: 20px 0 3rem 0;
        background-color: #08081a1c;
    }
    ul.resp-tabs-list {
        display: none;
    }

    h2.resp-accordion {
        display: block;
    }

    .resp-vtabs .resp-tab-content {
        border: 1px solid #C1C1C1;
    }

    .resp-vtabs .resp-tabs-container {
        border: none;
        float: none;
        width: 100%;
        min-height: 100px;
        clear: none;
    }

    .resp-accordion-closed {
        display: none !important;
    }

    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important;
    }
}

@media only screen and (max-width: 599px) {
    .banner-carousel .content-box h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .page-title {
        padding: 10rem 0px 5rem 0rem;
    }
}

@media only screen and (max-width: 1023px) {

    .nexttitle {
        position: absolute;
        color: #fff;
        top: -1.5rem;
        left: 0rem;
        font-size: 18px;
        font-weight: 900;
    }

    .banner-carousel .content-box .title {
        font-size: 16px;
    }

    .display-lead {
        font-size: 4rem !important;
        font-family: 'DM Sans', sans-serif !important;
        font-weight: 800 !important;
        display: block !important;
        text-align: center !important;
        -webkit-border-radius: 5px !important;
        -moz-border-radius: 5px !important;
        border-radius: 5px !important;
        color: #fff !important;
        padding: 15px 20px !important;
        display: inline-block !important;
        margin-top: -5vh !important;
    }

    .display-small {
        font-size: 1rem !important;
        font-family: 'DM Sans', sans-serif !important;
        color: #fff !important;
        padding: 15px 20px !important;
        font-weight: 400 !important;
    }

    .areaofinterest_title {
        font-weight: bold;
        font-size: 18px;
    }

    .howtodiv {
        width: 80% !important;
    }

    .sec-title h2 {
        font-size: 20px;
        line-height: 1.2em;
    }

    .about-section .image-column .image-box img {
        height: 22rem;
    }

    .coming-soon-section .outer-box {
        padding: 24px 45px;
    }
}
@media (max-width: 767px) {
    .center-text {
      text-align: center;
    }
  }