* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #0a3d79;
    --secondary: white;
    --ternary: #fab039;
    --fourth: #9e9e9e;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    position: relative;
    overflow-x: hidden;

}

li {
    list-style-type: none;
}

a {
    text-decoration: none !important;
}

h2 {
    margin: 0 !important;
}

::selection {
    background-color: var(--primary);
    color: var(--secondary);
}

.margin {
    margin-top: 150px;
}

#scroll {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 9999999;
    transition: .3s linear;
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: var(--secondary);
}

#scroll:hover {
    background-color: var(--ternary);
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

.top_section {
    position: sticky;
    top: 0;
    z-index: 11;
    width: 100%;
    background: #00436e;
    box-shadow: rgb(31 61 114 / 50%) 0px 7px 29px 0px;

}

.inner_top {
    position: sticky;
    top: 0;
    background: #ffffff !important;
}

.nav {
     display: flex; 
    justify-content: space-evenly;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin: auto;
    font-weight: 550;
    color: var(--secondary);
    padding: 5px 0; 
}

.header_icon {
    font-size: 22px;
    padding: 0 10px;
}

.nav_point ul {
    display: flex;
    line-height: 50px;
    align-items: center;
}

.nav ul li {
    padding: 0 8px;
    cursor: pointer;
    transition: .3s linear;
}

.nav ul li:hover,
.header_icon:hover,
.txt:hover {
    color: var(--ternary);
}

.main_logo {
    position: relative;
}

.main_logo img {
    width: 220px;
}

.sub_logos {
    display: flex;
    align-items: flex-start;
}

.inner_logo_head {
    color: rgb(0, 0, 0);

}

.sub_logos1::after {
 
    content: '';
    position: absolute;
    width: 2px;
    height: 50px;
    background: #b6b6b6;
    top: 65px;
    right: 0px;

}

.sub_logos1,
.sub_logos2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    position: relative;
}

.sub_logos1 h2,
.sub_logos2 h2 {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-weight: 500 !important;
 
}

.sub_logos img {
    width: 95px;
}
.sub_logos .sub_logos1 img {
    width: 110px;
}

.wrapHead {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: auto;
    font-weight: 550;
    color: #026ece;
    padding: 5px 0;
    transition: all ease-in-out 0.5s;
    flex-wrap: wrap;
}

.wrapHead.fixed-to-top {
    width: 100%;
    justify-content: space-around;
    background-color: #000000db;
}

.inner_wrapHead.fixed-to-top {

    background-color: #ffffff !important;
}

.logo.fixed-to-top img {
    cursor: pointer;
    width: 100%;
    height: 70px;
}

.sub_logos.fixed-to-top {
    display: none;
}

.nav_bar.fixed-to-top ul a {
    font-size: 15px;
}

.nav_bar.fixed-to-top ul a::after {
    background: var(--primary);
}

.responsive_mobile_menu {
    position: fixed;
    width: 100%;
    padding: 10px 0;
    z-index: 1;
    transition: all ease-in-out 0.5s;
}

.responsive_mobile_menu.fixed-to-top {
    background: var(--secondary);
    padding: 2px 0;
    z-index: 9999999;
}

#brand h1 {
    letter-spacing: 10px;
    text-shadow: 2px 2px 5px #111;
}

.responsive_mobile_menu {
    display: none;
}

.main {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.text {
    position: absolute;
    text-align: center;
    top: 30px;
}



.hamburger-menu {
    position: absolute;
    top: 50%;
     left: 20px; 
     transform: translateY(-50%);
    height: 30px;
    cursor: pointer;
    z-index: 9998;
    float: right;
}

.bar,
.bar:after,
.bar:before {
    width: 28px;
    height: 2px;
}

.bar {
    position: relative;
    transform: translateY(10px);
    background: rgb(255, 255, 255);
    transition: all 0ms 300ms;
}

.bar.animate {
    background: rgba(255, 255, 255, 0);
}

.bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    background: rgb(255, 255, 255);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background: rgb(255, 255, 255);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}



.inner_bar {
    background: rgb(217 217 217)!important;
}

.inner_bar.animate {
    background: rgba(0, 0, 0, 0) !important;
}

.inner_bar:before {
    background: rgb(217 217 217) !important;
}

.inner_bar:after {
    background: rgb(217 217 217) !important;
}





.bar.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu ul {
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    font-size: 15px;
    line-height: 30px;
    margin: 0;
    overflow: hidden;
    padding: 8px !important;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    padding-left: 15px;
    color: #fff;
}

.mobile-menu li:first-child {
    margin-top: 70px;
}

.mobile-menu li:hover {
    background: #003f86;
}

.mobile-menu li a {
    text-decoration: none;
    color:#f3f5f5;
}


.mobile-menu {
    top: 0;
    max-width: 300px;
    width: 100%;
    right: -100%;
    background: var(--primary);
    background: linear-gradient(to top, #4a709c, #1e74ae);
    color: var(--secondary);
    height: 100%;
    position: fixed;
    z-index: 9997;
    overflow-y: auto;
    -webkit-transform: translate3d(0, 0, 205px);
    -moz-transform: translate3d(0, 0, 205px);
    transform: translate3d(0, 0, 205px);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.mobile-menu.active {
    right: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}


.has-children:hover {
    cursor: hand;
}

.children {
    display: none;
}

.mobile-menu .children li:first-child {
    margin-top: 0px;
}

.icon-arrow {
    position: absolute;
    display: block;
    font-size: 0.7em;
    color: #fff;
    top: 5px;
    right: 10px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
}

.icon-arrow:after {
    content: "\25BC";
}

.icon-arrow.open {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
}

.nav_point {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px
}

.nav_point ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav_point ul li {
    float: left;
    position: relative;
}

.nav_point ul li a {
    text-transform: uppercase;
    cursor: pointer;
    display: block;
    color:#337ab7 !important;
    font-size:13px;
    font-weight:800;

}

.inner_nav_bar ul li {
    color: #0069d9 !important;
}

.top_inner {
    color: #b6b6b6 !important;
}

.nav_point ul li ul {
    position: absolute;
    left:0;
    width: 300px;
    background-color:#03366e;
    box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 9999999;
    display: none;
}

.nav_point ul li ul li {
    width: 100%;
    border-top: 1px solid rgb(184 184 184 / 55%);;
}

.nav_point ul li ul li a {
    font-weight: 700;
    color: #ffffff !important;
    cursor: pointer;
    transition: .2s linear;
}

.nav_point ul li ul li a:hover {
    color: var(--ternary);

}

.nav_point ul li ul li:hover {
    background-color: #003c70;
}

.nav_point ul li ul li ul {
    left: 250px;
    top: 0;
}

.nav_point ul li ul li ul li {
    color: #fffefe;
}

.nav_point ul li:focus-within>ul,
.nav_point ul li:hover>ul {
    display: initial;
}

.about_section {
    padding: 20px 0 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
    background: url(./splash_clouds1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.about_content {
    width: 600px;
    text-align: justify;
    padding-right: 40px;
}

.about_content h1 {
    font-size: 30px;
    color: #0a3d79;
    position: relative;
    padding: 30px 0;
}

.about_content h1::after {
    content: '';
    width: 130px;
    height: 3px;
    position: absolute;
    top: 45px;
    left: 265px;
    background: linear-gradient(to right, #1F3C71, #056692);
}

.about_content p {
    line-height: 29px;
}

.about_content img {
    display: none;
}

.about_content a {
    margin-top: 30px;
}

.about_img img {
    width: 600px;
    padding-top: 0px;
    padding-left:30px;
}


.leader_section {
    position: relative;
    z-index: 0;
    background: #fdfdfd;
    padding: 10px 0 10px 0;
    background: url(./leader_bg_new03.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    
}
.leader_section .slick-next {
    right: 10px;
}
.leader_section .slick-prev {
    left: 10px;
}
.leader_section .slick-prev:before, .leader_section .slick-next:before {
    color: #000000;
}

.inner_heading {
    font-size: 30px;
    color: var(--primary);
    padding: 30px 0;
    text-align: center;
    font-weight: bold;
}

.events_heading {
    display: none;
}

.leader_heading {
    text-align: center;
    margin: 20px 0;
    position: relative;
    padding: 10px;
}

.leader_heading h1 {
    font-size: 30px;
    color: #0a3d79;
}

.leader_heading span {
    color: var(--primary);
    position: relative;
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 2px;
}

.leader_heading span::before {
    content: '';
    width: 90px;
    height: 3px;
    position: absolute;
    background: linear-gradient(to right, #1F3C71, #2AA7DF);
    transform: translate(-50%, -50%);
    left: -53px;
    top: 50%;
    z-index: -1;

}

.leader_heading span::after {
    content: '';
    width: 90px;
    height: 3px;
    position: absolute;
    background: linear-gradient(to right, #2AA7DF, #1F3C71);
    transform: translate(-50%, -50%);
    right: -140px;
    top: 50%;
    z-index: -1;

}



.three_leaders {
    width: 98%;
    margin:10px 0px;
    height:80%;
}

.common_leader {
    display: flex !important;
    align-items: center;
    margin: 2px auto;
    padding:0px;
    justify-content: center;
}

.leader_img img {
    width: 250px;
    border-image: linear-gradient(#40b549, #fab039, #40b549) 30;
    border-width: 7px;
    border-style: solid;
    border-radius: 10px;
}

.common_leader .profile {
    padding-left: 30px;
    width: 600px;
}

.common_leader .profile h2 {
    color: #0a3d79;
    border-bottom: 1px solid rgb(255, 252, 252);
    padding-bottom: 10px;
    margin-bottom: 10px;
    width: max-content;
}

.common_leader .profile span {
    color: black;
}



.event_highlights {

    background: url(./gradient_texture01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
    color: var(--white);
}

.event_highlights .highlights {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 90%;
    position: relative;
}

.highlight_img img {
    width: 36vmax;
}

.event_highlights .highlights .heading {
    color: #ffffff;
    text-transform: uppercase;
    transform: rotate(180deg) translate(-4px);
    writing-mode: vertical-lr;
    text-align: center;
    margin-bottom: 0;
    font-size: 24px;
    padding: 0 50px;

}

.event_highlights .icons .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px;
    line-height: 30px;
}
.event_highlights .icons .ico {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 0px;
    line-height: 30px;
}

.event_highlights .icons .icon img {
    width: 90px;
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 50%;
    transition: .3s linear;
}
.event_highlights .icons .ico img {
    width: 90px;
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 50%;
    transition: .3s linear;
}

.event_highlights .icons .icon img:hover {
    background-color: #2AA7DF;
}
.event_highlights .icons .ico img:hover {
    background-color: #2AA7DF;
}
.event_highlights .highlights .all_icons {
    display: flex;

}

.participated_industries_section {
    padding: 50px 0;
}

.participated_industries_section .heading h1 {
    width: 80%;
    font-size: 30px;
    color: var(--primary);
    position: relative;
}
.participated_industries_heading span:after {
    content: '';
    width: 90px;
    height: 3px;
    position: absolute;
    background: linear-gradient(to right, #2AA7DF, #1F3C71);
    transform: translate(-50%, -50%);
    right: -113%;
    top: 50%;
    z-index: -1;
}

.participated_industries_section .heading h1:after {
    content: '';
    width: -webkit-fill-available;
    height: 2px;
    position: absolute;
    top: 19px;
    left: 370px;
    background: linear-gradient(to right, #1F3C71, #2AA7DF);
}

.participated_industries {
    width: 80%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.card{
    margin: 4px !important;
    display: column;
    justify-content: center !important;
    box-shadow: #0a3e7915 0px 7px 29px 0px;
}
.card img{
    align-items: center;

}

.industries_text_icon {
    margin: 20px 0;
    height: auto;
    width: auto;
    overflow:hidden;
    padding: 15px;
    justify-content: center !important;
    background-image: linear-gradient(#1f3d71, #25a2da);
}

.industries_text_icon img {
    width: 90px;
    box-shadow: #0a3e7915 0px 7px 29px 0px;
    padding: 15px;
    border-radius: 50%;
    border: 2px solid gray !important;
    display: block;
    transition:1s;
    justify-items: center;
    background: #ffffff;
    
}

.industries_text_icon:hover img{
   transform: scale(1.3);
   z-index: 100;
   cursor:pointer;
   border: none !important;
}



.industries_text_icon h5 {
    color: #ffffff;
    text-align: center;
    font-family: 'Montserrat', sans-serif !important;;
    margin-top: 20px;
    
}

.event_brochure_section {
    padding: 50px 0;
    background: url(./splash_clouds1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;

}

.event_brochure_section::before {
    content: '';
    width: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
}

.event_brochure {
    text-align: center;
    color: var(--primary);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event_brochure h2 {
    margin: 0 5px;
    font-size: 20px;
    width: auto;
    position: relative;
}

.event_brochure img {
    top: -9px;
    color: var(--primary);
    width: 45px;
    margin: 0 10px;
    position: absolute;
    left: -66px;
    animation-timing-function: ease-in-out;
    animation-name: right_arrow_move;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.event_brochure a {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 10px 20px;
    cursor: pointer;
    font-size: 15px;
    margin: 0 10px;
    font-weight: 550;
    border-radius: 20px;
    transition: .3s linear;
}

.event_brochure a:hover {
    background-color: #2AA7DF;
    transform: translateY(-2px);
}

@keyframes right_arrow_move {
    from {
        left: -75px;
    }

    to {
        left: -66px;
    }
}

 .last_Section{
    bottom: 0;
} 

.footer_section {
    padding: 30px 0 30px 0;
    width: 100%;
    background-color: #000000;
    background-image: linear-gradient(89deg, #0a3d79 0, #1e74ae 50%, #0a3d79 100%);
    z-index: 1;
}

.footer h2 {
    text-align: center;
}

.footer_section .footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.common_footer_logo img {
    width: 250px;
}

.quick_links h2,
.footer_contact h2,
.iconex_logo h2 {
    color: #ffff;
    font-size: 20px !important;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: left;

}

.iconex_logo h2 {
    text-align: center;
}

.extra_links {
    text-align: center;
    padding: 20px 0 20px 0;
}

.extra_links a {
    padding: 0 10px;
    color: #fff;
    transition: .3s linear;
    font-size: 16px !important;
}

.extra_links a:hover {
    color: var(--ternary);
}

.extra_links .lil_bar {
    position: relative;
}

.extra_links .lil_bar::after {
    content: '';
    width: 1px;
    height: 10px;
    background-color: #fffefe;
    position: absolute;
    right: 0;
    top: 5px;
}

.quick_links a,
.footer_contact a {
    line-height: 22px;
    transition: .3s linear;
}

.quick_links a:hover,
.footer_contact a:hover,
.footer_contact i:hover {
    color: var(--ternary);
}

.footer_contact i {
    color: #fff;
    padding-right: 5px;
}

.footer_contact a,
.quick_links a {
    color: #fff;
}

.copyright_section {
    background-color: #000000;
    padding: 15px 0 5px 0;
    color: #9e9e9e;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.social_media_icon i {
    color: var(--ternary);
    padding: 5px 5px;
    font-size: 18px;
}

.wave {
    position: relative;
    width: 100%;
    height: 75px;
    background-image: linear-gradient(89deg,  #0a3d79 0, #1e74ae 50%, #0a3d79 100%);
    overflow: hidden;
    z-index: -1;
}

section .air {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(https://1.bp.blogspot.com/-xQUc-TovqDk/XdxogmMqIRI/AAAAAAAACvI/AizpnE509UMGBcTiLJ58BC6iViPYGYQfQCLcBGAsYHQ/s1600/wave.png);
    background-size: 1000px 100px;
}

section .air.air1 {
    animation: wave 30s linear infinite;
    z-index: 1000;
    opacity: .8;
    animation-delay: 0s;
    bottom: -50px;
}

section .air.air2 {
    animation: wave2 15s linear infinite;
    z-index: 999;
    opacity: 0.4;
    animation-delay: -5s;
    bottom: -40px;
}

section .air.air3 {
    animation: wave 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: -35px;
}

section .air.air4 {
    animation: wave2 5s linear infinite;
    z-index: 997;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: -30px;
}

/* fixed social*/
#fixed-social {
    position: fixed;
    top: 500px;
    z-index: 999;
}

#fixed-social a {
    color: #fff;
    display: block;
    height: 40px;
    position: relative;
    text-align: center;
    line-height: 40px;
    width: 40px;
    margin-bottom: 1px;
    z-index: 2;
}

#fixed-social a:hover>span {
    visibility: visible;
    left: 41px;
    opacity: 1;
}

#fixed-social a span {
    line-height: 40px;
    left: 60px;
    position: absolute;
    text-align: center;
    width: 120px;
    visibility: hidden;
    transition-duration: 0.5s;
    z-index: 1;
    opacity: 0;
}

.fixed-twitter {
  
    background-color: #000000;
}

.fixed-twitter span {
 
    background-color: #000000;
}

.fixed-linkedin {
    background-color: #0077B5;

}

.fixed-linkedin span {
    background-color: #0077B5;
}

.fixed-instagrem {
    background-color: #7D3895;

}

.fixed-instagrem span {
    background-color: #7D3895;
}

.fixed-youtube {
    background-color: #ff0000;

}

.fixed-youtube span {
    background-color: #ff0000;
}



@keyframes wave {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: 1000px;
    }
}

@keyframes wave2 {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: -1000px;
    }
}



#contactUs {
    display: flex;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: center;
    max-width: 1200px;
    margin: 80px auto 80px auto;
    height: 650px;
    background: url(./splash_clouds1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
}

.contactUs-details {
    width: 50%;
}

.contactUs-form {
    padding: 20px;
    width: 50%;
    color: #000;

}

.contactUs-form h3 {
    font-size: 30px;
    color: var(--primary);
    text-align: center;
    font-weight: bold;
}



.contactUs-details {
    display: flex;
    flex-flow: column nowrap;
    margin-top: 30px;
}

.contactUs-contactCard {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
    width: 280px;
    margin: 30px 20px;
    color: #000;
}


.contactUs-contactCard i {
    padding-right: 5px;
    color: var(--primary);

}

.contactUs-contactCard h4 {
    margin: 5px 0;
    font-weight: bold;
    color: var(--primary);
}

.contactUs-contactCard p:nth-child(2) {
    font-size: 16px;
}

.contactUs-contactCard a {
    color: #000;
}

.contactUs-contactCard a:hover {
    color: #000;
}

.contactUs-element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin: 10px 0;
    font-size: 20px;
}

.contactUs-form>div h3 {
    margin: 0;
    color: #0a3d79;
}

.contactUs-element label {
    margin: 0;
    width: 100%;
    font-size: 16px;
}

.contactUs-element input,
.contactUs-element textarea {
    padding: 5px;
    color: #000;
    width: 100%;
}

.contactUs-button {
    padding: 5px;
    font-size: 20px;
    box-shadow: 1px 1px 3px 1px;
    border: 1px solid;
    border-radius: 10px;
    background: #034286;
    color: #fff;
    width: 100%;
}


    .hamburger-menu {
        display: none;
    }
@media only screen and (max-width:1350px) {
    .nav_point ul {
        display: none;
    }
    .main_logo {
        flex: 1;
        text-align: center;
    }

    .hamburger-menu {
        display: block;
    }
    .responsive_mobile_menu {
        display: block;
    }

    .about_img img {
        display: none;

    }

    .about_content {
        width: 90%;
        margin: auto;
        text-align: justify;
        padding-right: 0px;
    }

    .about_content img {
        display: block;
        width: 550px;
        margin: auto;
    }

    .about_content h1 {
        text-align: center;
    }

    .about_content h1::after {
        display: none;
    }

    .wrapHead.fixed-to-top {
        justify-content: space-between;
    }
}
.partner_headings.show_on_sm {
    display: none !important;
}
@media only screen and (max-width:1150px) {
   
    .event_highlights .highlights .heading {
        transform: none;
        writing-mode: unset;
        display: none;
    }
    .partner_headings.show_on_sm {
        display: flex !important;
    }
    .partner_headings.show_on_sm h2 {
        color: #ffffff !important;
    }

    .events_heading {
        display: block !important;

    }

    .events_heading h1 {
        font-size: 30px;
    }

    .highlights {
        display: flex;
        flex-direction: column;
    }

    #contactUs {
        width: 95%;
    }

    .contactUs-form,
    .contactUs-details {
        width: 50%;
    }

    .contactUs-details .contactUs-contactCard {
        margin: 10px;
        width: 45%;
    }

}

@media only screen and (max-width:900px) {
    .footer {
        display: flex !important;
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }

    .footer div {
        margin: 15px 0;
    }

    .event_brochure {
        flex-wrap: wrap;
    }

    .event_brochure h2 {
        margin: 15px 0;
    }

    .common_leader {
        flex-direction: column;
    }

    .leader_img img {
        width: 200px;
    }

    .common_leader .profile {
        padding-left: 0px;
        width: 100%;
        margin: 20px auto;
        text-align: center;
    }

    .common_leader .profile h2 {
        border-bottom: 0px solid grey;
        text-align: center;
        margin: auto;
        width: 100%;
    }

    .leader_section {
        padding: 20px;
    }

    #contactUs {
        flex-direction: column;
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .contactUs-form,
    .contactUs-details {
        flex-direction: row;
        width: 100%;
    }
}

@media only screen and (max-width:450px) {
    .event_brochure img {
        display: none;
    }

    .event_brochure a {
        margin: 10px;
    }

    .event_highlights .highlights .all_icons {
        flex-direction: column;
    }

    .about_content img {
        display: block;
        width: 90%;
        margin: auto;
    }

    .main_logo img {
        width: 190px;
    }

    .sub_logos img {
        width: 9s0px;
    }

  

    .sub_logos1::after {
        display: none;
    }

    .wrapHead {
        padding-left: 10px;
        padding-right: 10px;
        justify-content: center;
    }

    .sub_logos {
        margin-top: 20px;
        align-items: flex-start;
    }

    .margin {
        margin-top: 260px;
    }

    .contactUs-form,
    .contactUs-details {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .contactUs-details .contactUs-contactCard {
        width: 85%;
    }
    .event_highlights .highlights {
        height:auto;
    }

}

.main {
    display: flex;
}

.pointer-events-none {
    pointer-events: none;
    user-select: none;
}
.leadership_border {
    position: relative;
    padding-bottom: 15px !important;
}
.leadership_border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(-100%);
    width: 100%;
    opacity: 1;
    background: linear-gradient(to right, #0b3d79, #25a2da);
    height: 4px !important;
    margin: 1px 0px;
}
.leader_slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.leader_slide .content {
    position: static;
    transform: unset;
    height: unset;
    min-height: 280px;
    z-index: unset;
    padding-right: 50px;
}
.leader_slide .hero {
    position: static;
    margin-left: -20px;
    z-index: 1;
}
.leader_slide .hero img {
    border-image: linear-gradient(#faaf39, #42b44e, #054681) 30;
}

.main_banner_slide .item {
  height: 100vh;
  position: relative;
}
.main_banner_slide .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_banner_slide .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}
.main_banner_slide .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}
.main_banner_slide .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
.main_banner_slide .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #d5ff6b;
}
.main_banner_slide .item .cover .header-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}
.main_banner_slide .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
.main_banner_slide .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.main_banner_slide .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.main_banner_slide .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.main_banner_slide .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
.main_banner_slide .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.main_banner_slide .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
.main_banner_slide .owl-nav .owl-prev:focus {
  outline: 0;
}
.main_banner_slide .owl-nav .owl-prev:hover {
  background: #000 !important;
}
.main_banner_slide .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.main_banner_slide .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
.main_banner_slide .owl-nav .owl-next:focus {
  outline: 0;
}
.main_banner_slide .owl-nav .owl-next:hover {
  background: #000 !important;
}
.main_banner_slide:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
.main_banner_slide:hover .owl-next {
  right: 0px;
  opacity: 1;
}
.heading_underline {
    position: relative;
}
.heading_underline::after {
    content: "";
    position: absolute;
    bottom: -10px;
    background: linear-gradient(to right, #0b3d79, #25a2da);
    height: 4px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
}
.heading_underline.white::after {
    background: #ffffff;
}
.banner_underline {
    position: relative;
    width: max-content;
}
.banner_underline::after {
    content: "";
    position: absolute;
    bottom: -10px;
    background: #ffffff;
    height: 4px;
    width: 100%;
    left: 0;
}
.transparent_header_class {
    position: fixed !important;
    background: rgba(0, 0, 0) !important;
    transition: background .5s ease-in-out;
}
.transparent_header_class.dark-bg {
    background: rgba(0, 0, 0) !important;
}
.transparent_header_class .inner_logo_head {
    color: #ffffff;
}
.transparent_header_class .nav_point ul li a {
    color: #ffffff !important;
}
@media only screen and (max-width: 1440px) {
    .main_banner_slide .item .cover .header-content h1 {
      font-size: 42px;
    }
}
@media only screen and (max-width: 1024px) {
    .main_banner_slide .item .cover .header-content h1 {
      font-size: 28px;
    }
}
@media only screen and (max-width: 425px) {
    .main_banner_slide .item .cover .header-content h1 {
      font-size: 20px;
    }
}