/* TypoGraphy */

* {
    box-sizing: border-box;
}

:focus {
    outline: none !important;
    box-shadow: none;
    border-color: inherit;
}

textarea.form-control {
    resize: none;
    overflow: hidden;
}

html,
body {
    width: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
}

body {
    background: #fff;
    overflow-x: hidden;
}

figure{
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

a,
a:hover {
    text-decoration: none;
}

p {}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px 0 20px;
    padding: 0px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #000;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: #01a4ec;
}

h1 {
    font-family: 'Helvetica Neue';
    font-weight: 300;
    font-size: 78px;
    line-height: 84px;
    color: #585b5d;
    text-transform: capitalize;
}

h2 {
    font-family: 'Helvetica Neue';
    font-weight: normal;
    font-size: 36px;
    line-height: 37px;
    color: #585b5d;
    text-transform: uppercase;
}

h3 {
    font-family: 'Helvetica Neue';
    font-weight: normal;
    font-size: 28px;
    line-height: 43px;
    color: #585b5d;
}

h4 {
    font-family: 'Helvetica Neue';
    font-weight: normal;
    font-size: 26px;
    line-height: 30px;
    color: #585b5d;
    text-transform: uppercase;
}
h5 {
    font-family: 'Helvetica Neue';
    font-weight: normal;
    font-size: 22px;
    line-height: 30px;
    color: #585b5d;
    text-transform: uppercase;
}
h6 {
    font-family: 'Helvetica Neue';
    font-weight: normal;
    font-size: 20px;
    line-height: normal;
    color: #585b5d;
    text-transform: uppercase;
}

p {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    font-family: 'Helvetica';
    font-weight: normal;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    padding: 0px 0 20px 18px;
    margin: 0px;
}
ol {
    padding-left: 0;
    padding-bottom: 20px;
    counter-reset: listitem;
}
ol li {
    list-style: none;
    position: relative;
    padding-left: 34px;
}
ol li::before {
    counter-increment: listitem;
    content: counters(listitem, ".") ".";
    color: #7e3790;
    display: inline-block;
    font-weight: bold;
    position: absolute;
    left: 0;
}
li {
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #1a1a1a;
}

li a {
    color: #01a4ec;
}
li a:hover {
    color: #1a1a1a;
}

a {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    color: #03b1e7;
}

a:hover {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    color: #1a1a1a;
}
button {
    padding: 0;
    background-color: transparent;
    border: none;
}

.btn {
    display: inline-flex;
    min-width: 275px;
    height: 42px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: normal;
    font-family: 'Helvetica';
    font-weight: normal;
    padding: 0 20px;
    border: none;
    text-transform: uppercase;
    border-radius: 0;
    color: #fff;
    letter-spacing: 1px;
    background: #204972;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
}
.btn:hover {
    background: #585b5d;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #000;
    font-size: 16px;
    min-width: 174px;
    font-family: 'Helvetica';
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 30.5px;
    border: 1px solid #fff;
}
.btn-white img, .btn-white svg {
    margin-left: 15px;
}
.btn-white:hover {
    background: transparent;
    color: #fff;
}
.btn-white svg path {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
}
.btn-white:hover svg path {
    stroke: #fff;
}
.btn-underline {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 12px;
    font-family: 'Helvetica';
    line-height: 43px;
    letter-spacing: 0.99px;
    font-weight: normal;
    position: relative;
    z-index: 0;
}
.btn-underline::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #26e07d;
    z-index: 0;
    transition: 0.5s;
}
.btn-underline::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff530d;
    transition: 0.5s;
}
.btn-underline:hover::after {
    width: 100%;
}
.btn-underline:hover {
    color: #ff530d;
}
body.mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
/* HEADER MAIN SECTION CSS START */
.header-main {
    background-color: #fff;
    padding: 55px 0 50px;
}
.header-main-wrapper {
    max-width: 1696px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header-main-navigation ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
}
.header-main-navigation ul li {
    margin: 0 40px 0 0;
    position: relative;
}
.header-main-navigation ul li a {
    font-family: 'Helvetica';
/* 	font-weight: 500; */
    font-weight: normal;
    display: block;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: #202047;
    position: relative;
}
.header-main-navigation ul li a:hover {
    color: #2692d8;
}
.header-main-right .header-main-btn {
    min-width: 161px;
    height: 50px;
    border: 1px solid #202047;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #202047;
    font-size: 16px;
    font-family: Helvetica Neue, sans-serif;
    padding: 12px;
}
.header-main-right .header-main-btn svg {
    margin-left: 12px;
}
.header-main-right .header-main-btn svg paht {
    transition: 0.7s;
}
.header-main-right .header-main-btn:hover {
    background-color: #202047;
    color: #fff;
}
.header-main-right .header-main-btn:hover svg path {
    stroke: #fff;
}
.nav-manu ul li.current-menu-item a {
    color: #2692d8;
}
/** SUB MENU **/
.navigation ul li ul.sub-menu {
    position: absolute;
    display: block;
    top: 16px;
    transform: scale(1, 0);
    transition: all 0.5s;
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    min-width: 208px;
    left: 0;
    z-index: 1999;
    padding: 15px 0 0;
    width: auto;
}
.navigation ul li ul.sub-menu.shop-submenu {
    left: auto;
    right: 0;
}
.navigation ul li:hover > ul.sub-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.navigation ul li ul.sub-menu.shop-submenu::before {
    left: auto;
    right: 40px;
}
.navigation ul li ul.sub-menu li:first-child {
    border-radius: 10px 10px 0px 0px;
}
.navigation ul li ul.sub-menu li:last-child {
    border-radius: 0px 0px 10px 10px;
}
.navigation ul li ul.sub-menu li {
    padding: 0;
    width: 100%;
    margin: 0px 0 0;
    transition: 0.4s;
    background-color: #185089;
    border-bottom: none;
    position: relative;
    box-shadow: 0 20px 30px rgb(88 91 93 / 15%);
    border-radius: 0;
    border-bottom: 1px solid #326eab;
}
.navigation ul li ul.sub-menu li::after {
    display: none;
}
.navigation ul li ul.sub-menu li::before {
    right: 15px;
    transform: rotate(-40deg) translateY(-20%);
    top: 43%;
}
.navigation ul li ul.sub-menu li a {
    display: block;
    padding: 15px 15px;
    /* white-space: nowrap; */
    line-height: 20px;
    /* transform: skewX(10deg);
     -webkit-transform: skewX(10deg);
     -ms-transform: skewX(10deg); */
    color: #fff;
}
.navigation ul li ul.sub-menu li a::after {
    display: none;
}
.navigation ul li ul.sub-menu li:last-child a {
    border-bottom: none;
}
.navigation ul li ul.sub-menu li:hover {
    background-color: #204972;
}
.navigation ul li ul.sub-menu li.current-menu-item {
    background-color: #204972;
}
.navigation ul li ul.sub-menu li.current-menu-item a {
    color: #fff;
}
.navigation ul li ul.sub-menu li:hover a {
    color: #fff;
}
.navigation ul li ul.sub-menu ul.sub-menu {
    left: 100%;
    top: 0;
    width: max-content;
    margin-left: 3px;
}
.navigation ul li ul.sub-menu li:last-child {
    border-bottom: none;
}
.navigation ul li ul.sub-menu ul.sub-menu li {
    border-left: 0;
}
.navigation ul li.menu-item-has-children {
}
.navigation .menu-item-has-children > a::before {
    content: "";
    position: absolute;
    top: 55%;
    right: -12px;
    width: 7px;
    height: 7px;
    transform: translateY(-50%);
    transition: 0.4s;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #202047;
    margin-top: 2px;
}
.navigation ul li.menu-item-has-children:hover a::before {
}
.navigation ul li.current-menu-item ul.sub-menu li a::before {
    display: none;
}
.navigation ul li ul.sub-menu li::before {
    display: none;
}
.navigation ul li ul.sub-menu li:hover::before {
    border-color: #fff;
}
.navigation ul li ul.sub-menu li a:hover {
    color: #fff;
}
.navigation ul li ul.sub-menu ul.sub-menu li a {
    color: #08161d;
}
.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
    color: #fff;
}
.navigation ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li:hover a {
    color: #fff;
}
.navigation
    ul
    li
    ul.sub-menu
    li.menu-item-has-children
    ul.sub-menu
    li
    ul.sub-menu
    a {
    color: #08161d;
}
.navigation
    ul
    li
    ul.sub-menu
    li.menu-item-has-children
    ul.sub-menu
    li
    ul.sub-menu
    li:hover
    a {
    color: #fff;
}
.navigation ul li.menu-item-has-children ul.sub-menu li:hover a::before {
    border-top-color: #fff;
}
.navigation
    ul
    li.menu-item-has-children
    ul.sub-menu
    li:hover
    ul.sub-menu
    li
    a::before {
    border-top-color: #204972;
}
.navigation
    ul
    li.menu-item-has-children
    ul.sub-menu
    li:hover
    ul.sub-menu
    li:hover
    a::before {
    border-top-color: #fff;
}
.navigation .menu-item-has-children ul.sub-menu li a::before {
    right: 10px;
    transform: rotate(-95deg);
    top: 46%;
    border-top-color: #fff;
}
.navigation .moblelogo {
    display: none;
}
.header-main-right.mob-nav-btn {
    display: none;
}
/* HEADER MAIN SECTION CSS END */

/* FOOTER MAIN CSS START */
.footer-main {
    background-color: rgba(231, 234, 236, 0.5);
    padding: 87px 0 82px;
}
.footer-main-wrapper {
    max-width: 1130px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-main-logo {
    width: 288px;
}
.footer-main-nav-group {
    width: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer-main-right {
    width: 340px;
    text-align: right;
}
.footer-main-nav-group ul {
    padding: 0;
    list-style-type: none;
}
.footer-main-nav-group ul {
    padding: 0;
    list-style-type: none;
    min-width: 198px;
}
.footer-main-nav-group ul li {
    margin: 0 0 20px;
    line-height: 1;
}
.footer-main-nav-group ul li a {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 2.4px;
    color: #202047;
    text-transform: uppercase;
    font-family: 'Helvetica';
    font-weight: 500;
}
.footer-main-nav-group ul li a:hover {
    color: #2692d8;
}
.footer-main-right h3 {
    color: #202047;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 32px;
    font-family: 'Helvetica Neue Medium';
    margin: 0 0 20px;
    font-weight: 500;
}
.footer-main-right h3 strong {
    font-weight: normal;
    color: #2692d8;
}
.footer-main-right .footer-main-btn {
    min-width: 313px;
    height: 50px;
    border: 1px solid #202047;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #202047;
    font-size: 16px;
    font-family: 'Helvetica';
    padding: 12px;
}
.footer-main-right .footer-main-btn svg {
    margin-left: 12px;
}
.footer-main-right .footer-main-btn svg path {
    transition: 0.7s;
}
.footer-main-right .footer-main-btn:hover {
    background-color: #202047;
    color: #fff;
}
.footer-main-right .footer-main-btn:hover svg path {
    stroke: #fff;
}
.footer-main-wrapper.footer-main-copyright {
    margin-top: 35px;
    padding-top: 55px;
    border-top: 0.5px solid #202047;
    align-items: flex-end;
}
.footer-main-copyright_left p {
    font-size: 15px;
    line-height: 23px;
    margin: 0;
    color: #202047;
    font-family: 'Helvetica';
    font-weight: 500;
}
.footer-main-copyright_right {
    text-align: right;
}
.footer-main-copyright_right ul {
    padding: 0;
    list-style-type: none;
}
.footer-main-copyright_right ul li {
    margin: 0 0 0 15px;
}
.footer-main-copyright_right ul li a svg path {
    transition: 0.8s;
}
.footer-main-copyright_right ul li a:hover {
    display: inline-block;
    transition: 0.8s;
}
.footer-main-copyright_right ul li a:hover svg path {
    fill: #01a4ec;
}
/* FOOTER MAIN CSS END */

/* CONTACT PAGE CSS START */
.contact-main-section {
    background-color: #202047;
}
.contact-main-wrapper {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.contact-main_left {
    width: 42.65%;
}
.contact-main_right {
    width: 57.35%;
    padding: 80px 50px 77px 290px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.contact-img {
    width: 100%;
    height: 100%;
    position: relative;
}
.contact-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contact-left-content {
    width: 553px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.contact-left-content {
    width: 553px;
    position: absolute;
    top: 50%;
    right: -85px;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 70px 70px 65px 65px;
}
.contact-left-content h1 {
    color: #202047;
    font-size: 28px;
    font-family: 'Helvetica Neue Medium';
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 20px;
}
.contact-left-content p {
    color: #202047;
    line-height: 27px;
    font-size: 17px;
    font-family: 'Helvetica Neue';
}
.contact-left-content p a {
    color: #202047;
}
.contact-left-content p a:hover {
    color: #2692d8;
}
.contact-left-content .icon {
    width: 28px;
    display: inline-block;
}
.contatc-left-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 10px;
}
.contatc-left-list:last-child {
    margin: 0;
}
.follow-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top: 1px solid rgba(32, 32, 71, 0.2);
    padding: 20px 0 0;
    margin: 25px 0 0;
}
.follow-info span {
    color: #202047;
    font-size: 17px;
    line-height: 27px;
    font-family: 'Helvetica Neue';
    margin-right: 18px;
}
.follow-info ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.follow-info ul li {
    list-style-type: none;
    margin-right: 15px;
}
.follow-info ul li a {
    display: inline-block;
}
.follow-info ul li a:hover {
    transform: translateY(-3px);
    color: #2692d8;
}
.follow-info ul li a:hover svg path {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
}
.follow-info ul li a:hover svg path {
    fill: #2692d8;
}
.contact-main-form {
    width: 458px;
}
.contact-main-form h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 25px;
    font-family: 'Helvetica Neue Medium';
    font-weight: 500;
    margin: 0 0 24px;
}
.contact-main-form p {
    color: #fff;
    font-size: 17px;
    line-height: 27px;
    font-family: 'Helvetica Neue';
    margin: 0 0 25px;
}
.contact-main-form-wrapper .gform_fields {
    padding: 0;
}
.contact-main-form-wrapper .gfield {
    list-style-type: none;
    margin: 0 0 28px;
    position: relative;
    line-height: 1;
}
.contact-main-form-wrapper .gfield_label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 19px;
    line-height: 1;
    transition: 0.8s;
    font-family: 'Helvetica Neue';
    padding: 0 12px;
    position: absolute;
    top: 13px;
    pointer-events: none;
    display: flex;
}
.contact-main-form-wrapper .gfield_label span.gfield_required {
    display: block;
    margin-left: 2px;
}
.contact-main-form-wrapper .ginput_container textarea,
.contact-main-form-wrapper .ginput_container input {
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    height: 49px;
    padding: 10px 12px;
    color: #fff;
    resize: none;
    font-family: 'Helvetica Neue';
    font-size: 19px;
    appearance: none;
    border-radius: 0;
}
.contact-main-form-wrapper .gform_footer {
    text-align: right;
}
.contact-main-form-wrapper .gform_footer .gform_button {
    min-width: 164px;
    height: 50px;
    border: 0;
    border-radius: 25px;
    color: #202047;
    font-size: 16px;
    line-height: 19px;
    font-family: 'Helvetica';
    background-image: url(../images/submit-arrow.svg);
    background-repeat: no-repeat;
    background-position: 70%;
    padding: 10px 42px 10px 10px;
    transition: 0.8s;
    background-color: #fff;
    border: 1px solid #202047;
}
.contact-main-form-wrapper .gform_footer .gform_button:hover {
    background-color:transparent;
    color: #202047;
}
.contact-main-form-wrapper .gfield.label-active .gfield_label {
    position: relative;
    top: 0;
    margin: 0 0 5px;
    font-size: 13px;
    color: #2692d8;
}
.contact-main-form-wrapper .gfield.label-active textarea,
.contact-main-form-wrapper .gfield.label-active input {
    border: 1px solid #2692d8;
}
/* CONTACT PAGE CSS END */

/** ================== // PRESS PAGE CSS START // ================== **/
.inner-banner {
    position: relative;
}
.banner-full-img {
    position: relative;
}
.banner-full-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(32, 32, 71);
    mix-blend-mode: multiply;
}
.banner-full-img img {
    width: 100%;
    height: 637px;
    object-fit: cover;
}
.banner-small-img {
    width: 971px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-clip-path: polygon(31% 0, 100% 0, 100% 100%, 35% 100%, 0 47%);
    clip-path: polygon(31% 0, 100% 0, 100% 100%, 35% 100%, 0 47%);
}
.banner-small-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(32, 32, 71, 0.4); */
    mix-blend-mode: multiply;
    background: -moz-linear-gradient(124deg,  rgba(0,0,0,0) 0%, rgba(8,8,17,0) 24%, rgba(32,32,71,0.99) 100%);
    background: -webkit-linear-gradient(124deg,  rgba(0,0,0,0) 0%,rgba(8,8,17,0) 24%,rgba(32,32,71,0.99) 100%);
    background: linear-gradient(124deg,  rgba(0,0,0,0) 0%,rgba(8,8,17,0) 24%,rgba(32,32,71,0.99) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6202047',GradientType=1 );
}
.banner-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
.inner-banner-caption {
    position: absolute;
    top: 136px;
    left: 0;
    right: 0;
}
.inner-banner-caption .container {
    max-width: 1693px;
}
.caption-content {
    max-width: 615px;
}
.caption-content h1 {
    color: #ffffff;
    font-size: 80px;
    line-height: 75px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 34px;
}
.caption-content p {
    color: #ffffff;
    font-size: 17px;
    line-height: 25px;
    font-family: 'Helvetica Light';
    font-weight: normal;
    margin-bottom: 25px;
}
.caption-content .btn {
    margin-top: 4px;
}
/*===========*/ /*UPCOMING EVENTS SECTION CSS START*/ /*============*/
.upcoming-events-section {
    padding: 82px 0 0px;
    position: relative;
}
.upcoming-events-info {
    position: relative;
    padding: 0 0 148px;
}
.upcoming-events-info::before {
    content: "";
    position: absolute;
    top: 183px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #185089;
    z-index: -1;
}

.upcoming-events-section .container {
    max-width: 1540px;
}
.upcoming-events-nav ul.nav-tabs {
    margin: 0 100px 80px;
    padding: 0px;
    border: none;
    justify-content: center;
}
.upcoming-events-nav ul.nav-tabs li.nav-item {
    margin: 0px;
    padding: 0px 21px;
    list-style: none;
    color: #8f8fa3;
    text-transform: uppercase;
     font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    border-bottom: 1px solid rgba(97, 202, 244, 0.4);
}
.upcoming-events-nav .nav-tabs .nav-item:first-child {
    padding-left: 0px;
}
.upcoming-events-nav .nav-tabs .nav-item:last-child {
    padding-right: 0px;
}
.upcoming-events-nav .nav-tabs .nav-item .nav-link {
    margin: 0px;
    padding: 0 0 6px;
    color: #8f8fa3;
    font-size: 21px;
    line-height: 25px;
    font-family: 'Helvetica Neue Medium';
    font-weight: normal;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transition: inherit;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    background: none;
}
.upcoming-events-nav .nav-tabs .nav-item.show .nav-link,
.upcoming-events-nav .nav-tabs .nav-link.active {
    color: #202047;
    background-color: inherit;
    border-bottom: 3px solid #61caf4;
    transition: inherit;
    -webkit-transition: inherit;
    -moz-transition: inherit;
}
.upcoming-events-info h3 {
    margin-bottom: 40px;
    color: #202047;
    font-size: 28px;
    line-height: 25px;
    font-family: 'Helvetica Neue Medium';
    font-weight: 500;
    text-transform: uppercase;
}
.upcoming-events-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.upcoming-events-col {
    width: 360px;
    margin-right: 33px;
}
.upcoming-events-col:last-child {
    margin-right: 0px;
}

.upcoming-events-wrap .slick-slide, .news-upcoming-events-slider .slick-slide {
    margin: 0 33px 0 0;
}
.upcoming-events-wrap .slick-prev,
.upcoming-events-wrap .slick-next {
    bottom: -100px;
    width: 57.52px;
    height: 57.52px;
    border: none;
}
.upcoming-events-wrap .slick-next:hover,
.upcoming-events-wrap .slick-next:focus {
    background: #03194a url(../images/slider-arrow-left.png) no-repeat center;
}
.upcoming-events-wrap .slick-next {
    background: #0e3569 url(../images/slider-arrow-left.png) no-repeat center;
    right: -4px;
    transform: rotate(180deg);
    left: auto;
}
.upcoming-events-wrap .slick-prev {
    background: #0e3569 url(../images/slider-arrow-left.png) no-repeat center;
    right: 66px;
    left: auto;
}
.upcoming-events-wrap .slick-prev:hover,
.slick-prev:focus {
    background: #03194a url(../images/slider-arrow-left.png) no-repeat center;
}
.latest-news-slider .slick-list {
    margin: 0;
    padding-right: 250px;
}
.slick-list{
    min-width: 100%;
}
.slick-track{
    margin: 0;
}
/* .upcoming-events-col:nth-child(4n){
       margin-right: 0px;
   } */
.upcomingevents-inner {
   padding: 26px 36px 29px 41px;
   background: #fff;
   box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.06);
}

.upcomingevents-info {
    padding-bottom: 18px;
}
.upcomingevents-info h4, .about-upcoming-event-section .upcoming-event-post h4 {
    margin-bottom: 5px;
    color: #000000;
    font-size: 21px;
    line-height: 31px;
    font-family: 'Helvetica';
    font-weight: normal;
    text-transform: none;
}
.upcomingevents-info p {
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 16px;
    font-family: 'Helvetica';
    font-weight: normal;
}

.register-btn a {
    color: #2692d8;
    font-size: 16px;
    line-height: 19px;
    font-family: 'Helvetica';
    font-weight: normal;
}
.register-btn a img {
    margin-left: 10px;
    display: inline-block;
}
.register-btn a:hover {
    color: #202047;
}
/*===========*/ /*UPCOMING EVENTS SECTION CSS END*/ /*============*/
/*===========*/ /*PAST EVENTS SECTION CSS START*/ /*============*/
.past-events-section {
    padding: 121px 0 107px;
}
.past-events-section .container {
    max-width: 1333px;
}
.past-events-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 2px;
}
.past-events-left {
    width: 758px;
}
.post-events-heading {
    padding-bottom: 40px;
}
.post-events-heading h3 {
    margin-bottom: 0px;
    color: #202047;
    font-size: 28px;
    line-height: 25px;
    font-family: 'Helvetica Neue Medium';
    font-weight: 500;
    text-transform: uppercase;
}
.post-events-list {
    padding-top: 10px;
}
.post-events-top-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 28px;
    margin-right: 36px;
}
.post-events-top-col:last-child {
    margin-bottom: 34px;
}
.post-events-top-col figure {
    width: 245px;
}
.post-events-content {
    padding: 31px 30px 38px 43px;
    width: calc(100% - 245px);
}
.post-events-content h4 {
    margin-bottom: 7px;
    color: #000000;
    font-size: 21px;
    line-height: 31px;
    font-family: 'Helvetica';
    font-weight: normal;
    text-transform: none;
}
.post-events-content p {
    margin-bottom: 9px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 17px;
    line-height: 21px;font-family: 'Helvetica';
    font-weight: normal;
}
.postevents-info-inner {
    padding-bottom: 24px;
}

.post-events-top .slick-prev, .news-upcoming-events-slider .slick-prev {
    background: url(../images/arrow-left-events.svg) no-repeat center;
    right: 87px;
}
.post-events-top .slick-next, .news-upcoming-events-slider .slick-next {
    background: url(../images/arrow-right-events.svg) no-repeat center;
    transform: rotate(0deg);
    right: 31px;
}
.post-events-top .slick-prev, .post-events-top .slick-next, .news-upcoming-events-slider .slick-prev, .news-upcoming-events-slider .slick-next {
    width: 13px;
    height: 7px;
    border: none;
    bottom: 9px;
}
.post-events-top .slick-dots li button, .news-upcoming-events-slider .slick-dots li button {
    height: auto;
    width: auto;
    line-height: normal;
    font-size: 16px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
    color: #000;
    padding: 0;
    background: none;
    border-radius: 0px;
}
.post-events-top .slick-dots, .news-upcoming-events-slider .slick-dots  {
    bottom: 2px;
    width: auto;
    left: auto;
    right: 45px;
}
.post-events-top .slick-dots li, .news-upcoming-events-slider .slick-dots li {
    margin: 0 6px 0px;
}
.post-events-bottom {
    padding-top: 0;
    padding-right: 36px;
}
.post-events-bottom-content {
    padding: 31px 39px 25px 39px;
    background: #fff;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.06);
}
.post-events-bottom-content h4 {
    margin-bottom: 7px;
    color: #000000;
    font-size: 21px;
    line-height: 31px;
    font-family: 'Helvetica';
    font-weight: normal;
    text-transform: none;
}
.post-events-bottom-content p {
    margin-bottom: 9px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 17px;
    line-height: 21px;
    font-family: 'Helvetica';
    font-weight: normal;
}
.post-events-bottom-content .register-btn {
    margin-top: 30px;
}
.past-events-right {
    width: 553px;
    border: 1px solid rgba(32, 32, 71, 0.15);
    padding: 45px 56px 47px 57px;
    background: #fff;
    border-radius: 5px;
    margin-top: 68px;
}
.media-contact {
    padding-bottom: 21px;
    border-bottom: 1px solid rgba(32, 32, 71, 0.15);
}
.media-contact h4 {
    margin-bottom: 19px;
    color: #202047;
    font-size: 17px;
    line-height: 25px;
    font-family: 'Helvetica Neue Medium';
    font-weight: normal;
    text-transform: uppercase;
}
.media-address {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    margin-left: 3px;
}
.media-address:nth-child(1) {
}
.media-address:last-child {
    margin-bottom: 0px;
}
.media-address img {
    position: absolute;
    top: 5px;
    left: -2px;
}
.media-address p {
    margin: 0px;
    color: #202047;
    font-size: 17px;
    line-height: 27px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}
.media-address p a {
    color: #202047;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}
.media-address p a:hover {
    color: #2692d8;
}
.media-address.secured-letter img {
    top: 9px;
}
.media-followus {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
}
.media-followus img {
    margin-left: 10px;
}
.media-followus p {
    margin: 0px;
    color: #202047;
    font-size: 17px;
    line-height: 27px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}
.event-speaker-requests {
    padding: 24px 0 0 0px;
}
.event-speaker-requests h2, .event-speaker-requests h3, .event-speaker-requests h4, .event-speaker-requests h5, .event-speaker-requests h6 {
    margin-bottom: 22px;
    color: #202047;
    font-size: 17px;
    line-height: 25px;
     font-family: 'Helvetica Neue Medium';
    font-weight: normal;
    text-transform: uppercase;
}
.event-speaker-requests p {
    margin-bottom: 25px;
    color: #202047;
    font-size: 17px;
    line-height: 21px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
    padding-right: 50px;
}
.contact-form-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-form-inner .form-group {
    margin-bottom: 26px;
    position: relative;
    width: 100%;
}
.form-group.helf-left {
    width: 49%;
}
.form-group.helf-right {
    width: 49%;
}
.contact-form-inner .form-group label.gfield_label {
    color: rgba(0, 0, 0, 0.4);
    font-size: 17px;
    line-height: 21px;
     font-family: 'Helvetica Neue';
    font-weight: normal;
    position: absolute;
    top: 12px;
    left: 20px;
    pointer-events: none;
    transition: 1s;
}
.contact-form-inner input.form-control {
    background: #f5f5f5;
    border-radius: 0;
    height: 45px;
    border: 1px solid #f5f5f5;
    font-size: 17px;
    line-height: 45px;
    padding: 5px 19px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
    color: rgba(0, 0, 0, 0.4);
    transition: 1s;
    box-shadow: none;
}
.contact-form-inner input.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(0, 0, 0, 0.4);
    opacity: 1; /* Firefox */
}

.contact-form-inner input.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(0, 0, 0, 0.4);
}

.contact-form-inner input.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(0, 0, 0, 0.4);
}
.submit-box .btn {
    background: #202047 url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 25px center;
    color: #fff;
    min-width: 127px;
    height: 45px;
    padding: 6px 50px 6px 25px;
    text-transform: none;
    font-size: 16px;
    border-radius: 85px;
}
.submit-box .btn:hover {
    background: #0e3569 url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 25px center;
}

.file-block {
    border: 1px dashed #2692d8;
    width: 100%;
    padding: 20px 60px 15px 60px;
    color: #000000;
    font-size: 17px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
    min-height: 67px;
}
.contact-form-inner input[type="file"]::file-selector-button {
    margin-right: 5px;
    border: none;
    padding: 0;
    border-radius: 0px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    background: URL(../images/clickto-upload-documents.jpg);
    background-repeat: no-repeat;
    background-position: left center;
    appearance: none;
    font-size: 0px;
    width: 241px;
    height: 18px;
    position: relative;
    top: -5px;
}

.form-group.submit-box {
    margin-top: 3px;
    margin-bottom: 0;
}

.contact-form-inner .form-group.label-active .gfield_label {
    top: -21px;
    font-size: 13px;
    color: #2692d8;
    text-transform: uppercase;
}
.contact-form-inner .label-active textarea,
.contact-form-inner .label-active input {
    border-color: #2692d8;
    background: #fff;
}
.past-events-section.pressreleases-events {
    padding-top: 0px;
}
/*===========*/ /*PAST EVENTS SECTION CSS END*/ /*============*/
/*===========*/ /*MEDIA KIT SECTION CSS START*/ /*============*/

.media-kit-events-info {
    border: 1px solid rgba(32, 32, 71, 0.15);
    border-radius: 5px;
    padding: 86px 81px 48px 82px;
    max-width: 1406px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 154px;
}
.media-kit-events-info:last-child {
    margin-bottom: 0px;
}
.upcoming-events-info.media-kit-events::before {
    display: none;
}
.media-kit-events-left h3 {
    margin-bottom: 15px;
    color: #202047;
    font-size: 28px;
    line-height: 25px;
    font-family: 'Helvetica Neue Medium';
    font-weight: 500;
    text-transform: uppercase;
}
.media-kit-file.heading-media {
    border-bottom: 1px solid #61caf4;
}
.media-kit-file {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.media-kit-file:last-child {
    border-bottom: none;
}
.heading-media .media-kitfile p,
.heading-media .media-kit-format p,
.heading-media .media-kit-size p, .media-kit-download p {
    padding: 12.5px 5px;
    margin-bottom: 0px;
    color: #202047;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Helvetica';
    font-weight: normal;
}
.media-kitfile p,
.media-kit-format p,
.media-kit-size p {
    padding: 23.5px 5px;
    margin-bottom: 0px;
    color: #202047;
    font-size: 17px;
    font-family: 'Helvetica';
    font-weight: normal;
}
.media-kitfile {
    width: 380px;
    padding-right: 15px;
}
.media-kit-format {
    width: 150px;
    padding-right: 15px;
}
.media-kit-size {
    width: 138px;
    padding-right: 15px;
}
.media-kit-download {
    width: 88px;
    text-align: center;
}
.media-kit-events-left {
    width: 756px;
}
.media-kit-events-right {
    width: 396px;
}
.img-name p {
    color: #202047;
    font-size: 17px;
    font-family: 'Helvetica';
    font-weight: normal;
    margin-bottom: 21px;
}
.upload-file-size {
    display: flex;
    align-items: center;
}
.upload-file-size a{
    display: flex;
    align-items: center;
}
.upload-file-size a svg path, .media-kit-download a svg path,.media-kit-img-slider2 a svg path {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
}
.upload-file-size a:hover svg path {
    fill: #202047;
}
.media-kit-download a:hover svg path,.media-kit-img-slider2 a:hover svg path {
    fill: #61caf4;
}
.media-kit-img-slider {
    margin-bottom: 23px;
}
.upload-file-size svg {
    margin-right: 15px;
}
.upload-file-size p {
    padding-bottom: 0px;
    margin-bottom: 0px;
    font-size: 17px;
    color: #202047;
    font-family: 'Helvetica';
    font-weight: normal;
}
/*===========*/ /*MEDIA KIT SECTION CSS END*/ /*============*/
/*===========*/ /*LATEST EVENTS SECTION CSS START*/ /*============*/
.latest-events-info {
    padding: 79px 0 74px;
    position: relative;
}
.latest-events-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #185089;
    z-index: -1;
    width: 31%;
}
.latest-events-info .upcoming-events-col {
    margin-bottom: 40px;
}

.latestnews-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.latest-news-left {
    width: 370px;
    padding-top: 16px;
}
.latest-news-slider {
    width: calc(100% - 370px);
}
.latest-events-info .container-fluid {
    padding-left: 110px;
    padding-right: 0px;
}
.latest-events-info .upcoming-events-col figure img {
    width: 100%;
    object-fit: cover;
    height: 234.69px;
}
.latest-news-left h3 {
    font-size: 28px;
    line-height: 25px;
    color: #ffffff;
    text-transform: uppercase;
}
.more-news-section .upcoming-events-col figure img {
    height: auto;
}
.latest-events-info .slick-prev,
.latest-events-info .slick-next {
    bottom: 52px;
}
.latest-events-info .slick-prev {
    right: auto;
    left: -370px;
}
.latest-events-info .slick-next {
    right: auto;
    left: -304px;
}
.more-news-section .upcomingevents-inner {
    padding: 26px 18px 29px 28px;
}
.more-news-section {
    padding: 120px 0 86px;
}
.more-news-section .container {
    max-width: 1693px;
}
.morenews-events-left {
    width: 1068px;
}
.postevents-inner {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 40px;
}
.postevents-inner .upcoming-events-col {
    width: 318px;
    margin-right: 38px;
}
/*===========*/ /*LATEST EVENTS SECTION CSS END*/ /*============*/
/*===========*/ /*PODCASTS NEWS SECTION CSS START*/ /*============*/
.podcasts-news-section {
    padding: 0px 0 113px;
}
.podcasts-news-wrap {
}
.podcasts-news-section .container {
    max-width: 1680px;
}
.podcasts-news-outer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.podcasts-news-left {
    width: 588px;
}
.podcasts-news {
    background: #fff;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.06);
}
.podcasts-news figure {
    margin-bottom: 0px;
}
.podcasts-news-content {
    padding: 20px 28px 40px 28px;
}
.podcasts-news-top {
    margin-bottom: 22px;
}
.podcasts-news-content h4 {
    margin-bottom: 8px;
    color: #000000;
    font-size: 21px;
    line-height: 31px;
    font-family: 'Helvetica';
    font-weight: normal;
    text-transform: none;
}
.podcasts-news-content h4 a {
    color: #000000;
}
.podcasts-news-content h4 a:hover {
    color: #000000;
}
.podcasts-news-content p {
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 17px;
    line-height: normal;
    font-family: 'Helvetica';
    font-weight: normal;
}
.podcasts-news-content p span {
    color: #185089;
}
.podcasts-news-right {
    width: 1082px;
    margin-right: -13px;
}
.podcasts-news-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}
.podcasts-news-col:last-child {
    margin-bottom: 0px;
}
.podcasts-news-img {
    width: 140px;
}
.podcasts-news-content-right-col {
    width: calc(100% - 140px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 30px 10px 30px;
    align-items: center;
}

.podcasts-news-right-content {
    width: 337px;
}

.podcasts-news-right-content h4 {
    margin-bottom: 4px;
    color: #000000;
    font-size: 17px;
    line-height: 22px;
    font-family: 'Helvetica';
    font-weight: normal;
    text-transform: none;
}
.podcasts-news-right-content h4 a {
    color: #000000;
}
.podcasts-news-right-content h4 a:hover {
    color: #000000;
}
.podcasts-news-right-content p {
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 15px;
    line-height: normal;
    font-family: 'Helvetica';
    font-weight: normal;
}
.podcasts-news-right-content p span {
    color: #185089;
    font-size: 17px;
}
.podcasts-news-audio {
    width: 484px;
}
/*===========*/ /*PODCASTS NEWS SECTION CSS END*/ /*============*/
/*===========*/ /*CONFIRM DOWNLOAD POPUP CSS START*/ /*============*/
.confirm-download-modal .modal-dialog {
    max-width: 492px;
}
.confirm-download-modal .modal-dialog .modal-content {
    border: 1px solid #202047;
    border-radius: 5px;
    padding: 80px 55px 66px 56px;
    background: #fff;
}
.confirm-download-modal .modal-dialog .modal-header {
    padding: 0px;
    border-bottom: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: absolute;
    top: 18.7px;
    right: 18.7px;
}
.confirm-download-modal .modal-dialog .modal-header img.btn-close {
    padding: 0px;
    margin: 0px;
}
.confirm-download-modal .modal-body {
    padding: 0;
}
.confirm-download-modal img {
    text-align: center;
    margin: 0 auto;
    display: block;
    padding-bottom: 24px;
}
.confirm-download-modal .modal-body h2, .confirm-download-modal .modal-body h3, .confirm-download-modal .modal-body h4 {
    color: #202047;
    font-size: 28px;
    line-height: 25px;
     font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}
.confirm-download-modal .modal-body p {
    color: #202047;
    font-size: 17px;
    line-height: 25px;
    font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    text-align: center;
    margin-bottom: 15px;
}
.modal-backdrop {
    background-color: #fff;
}
.modal-backdrop.show {
    opacity: 0.7;
}
.confirm-download-modal.contact-form-inner {
    padding-top: 24px;
}
.confirm-download-modal .gform_fields .gfield {
    list-style: none;
    margin-bottom: 23px;
    position: relative;
}

.confirm-download-modal .gform_fields .gfield label {
    color: rgba(0, 0, 0, 0.4);
    font-size: 17px;
    line-height: 21px;
     font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    position: absolute;
    top: 12px;
    left: 20px;
    pointer-events: none;
    transition: 1s;
}
.confirm-download-modal .gform_fields .gfield.label-active label {
    top: -21px;
    font-size: 13px;
    color: #2692d8;
    text-transform: uppercase;
}
.confirm-download-modal input.large {
    background: #f5f5f5;
    border-radius: 0;
    height: 49px;
    border: 1px solid #f5f5f5;
    font-size: 19px;
    line-height: 45px;
    padding: 5px 19px;
     font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.4);
    transition: 1s;
    width: 100%;
}
.confirm-download-modal .label-active input.large {
    border-color: #2692d8;
    background: #fff;
}

.confirm-download-modal .gform_footer .btn {
    background: #202047 url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 18px center;
    color: #fff;
    min-width: 127px;
    height: 45px;
    padding: 6px 50px 6px 25px;
}
.confirm-download-modal .gform_footer .btn:hover {
    background: #0e3569 url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 18px center;
}
.confirm-download-modal .gform_fields .gfield.recaptcha-gfield {
    text-align: center;
}
.confirm-download-modal .gform_footer.top_label {
    text-align: center;
}
.confirm-download-modal .gform_fields div#field_4_5 {
    margin-bottom: 0;
}
.confirm-download-modal .gform-body.gform_body {
    padding-top: 24px;
}
/*===========*/ /*CONFIRM DOWNLOAD POPUP CSS END*/ /*============*/

/*===========*/ /*HOW TO USE SECTION CSS START*/ /*============*/
.how-to-use-section {
    padding: 121px 0 99px;
    position: relative;
}

.how-to-use-section .container {
    max-width: 1540px;
}
.how-to-use-events-nav ul.nav-tabs {
    margin: 0 0 80px;
    padding: 0px;
    border: none;
    justify-content: center;
}
.how-to-use-events-nav ul.nav-tabs li.nav-item {
    margin: 0px;
    padding: 0px 20px;
    list-style: none;
    color: #8f8fa3;
    text-transform: uppercase;
     font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    border-bottom: 1px solid rgba(97, 202, 244, 0.4);
}
.how-to-use-events-nav .nav-tabs .nav-item:first-child {
    padding-left: 0px;
}
.how-to-use-events-nav .nav-tabs .nav-item:last-child {
    padding-right: 0px;
}

.how-to-use-events-nav .nav-tabs .nav-item .nav-link {
    margin: 0px;
    padding: 0 0 8px;
    color: #8f8fa3;
    font-size: 28px;
    line-height: 25px;
    font-family: 'Helvetica Neue Medium';
    font-weight: 500;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transition: inherit;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    background: none;
}
.how-to-use-events-nav .nav-tabs .nav-item.show .nav-link,
.how-to-use-events-nav .nav-tabs .nav-link.active {
    color: #202047;
    background-color: inherit;
    border-bottom: 3px solid #2692d8;
    transition: inherit;
    -webkit-transition: inherit;
    -moz-transition: inherit;
}
.how-to-usetab-content .container {
    max-width: 1746px;
}
.how-to-usetab-content-inn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.how-to-usetab-left {
    width: 557px;
    padding: 39px 31px 45px 32px;
    border: 1px solid rgba(32, 32, 71, 0.15);
    border-radius: 5px;
}
.how-to-usetab-right {
    width: calc(100% - 557px);
    padding-top: 44px;
    padding-left: 64px;
}
.how-to-use-info {
    display: flex;
    flex-wrap: wrap;
}
.how-to-use-col {
    width: 290px;
    padding: 23px 42px 60px 3px;
    position: relative;
    min-height: 216px;
}
.how-to-use-col:nth-child(4n) {
    width: 254px;
    padding-right: 17px;
}

.how-to-use-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 3px;
    right: 5px;
    background: rgba(32, 32, 71, 0.25);
    height: 1px;
}
.how-to-use-col::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    background: #2692d8;
    width: 10.24px;
    height: 10.24px;
    border-radius: 20px;
}
.how-to-use-col p {
    margin-bottom: 0px;
    color: #202047;
    font-size: 17px;
    line-height: 25px;
     font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
}
.our-services-btn {
    text-align: right;
    margin-top: -44px;
    padding-right: 27px;
}
.our-services-btn .btn {
    background: #202047 url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 31px center;
    color: #fff;
    min-width: 189px;
    height: 50px;
    padding: 6px 50px 6px 25px;
}
.our-services-btn .btn:hover {
    background: #0e3569 url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 31px center;
    color: #fff;
}
.img-name2 p {
    color: #202047;
    font-size: 17px;
    font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    margin-bottom: 0;
    line-height: normal;
}
.img-name2 {
    padding: 0 15px 0 0;
    width: calc(100% - 16px);
}
.how-to-usetab-left .item-img {
    padding: 0;
    width: 100%;
}
.how-to-usetab-left .item-img img {
    border: 1px #e8e8ea solid;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.media-kit-img-slider2 {
    margin-bottom: 0;
    width:100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.upload-file-size2 {
    display: flex;
    align-items: center;
    margin-top: 0;
    width: 16px;
}
.upload-file-size2 a{
    display: flex;
    align-items: center;
}
.upload-file-size2 svg {
    /* margin-right: 15px; */
    margin-right: 0px;
}
.upload-file-size2 p {
    padding-bottom: 0px;
    margin-bottom: 0px;
    font-size: 17px;
    color: #202047;
    font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
}

.our-experience-tab-content {
    padding-top: 20px;
}
.our-experience-tab-content .container {
    max-width: 1388px;
}
.our-experience-tab-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.our-experience-left {
    width: 706px;
    padding: 51px 66px 40px 66px;
    border: 1px solid rgba(32, 32, 71, 0.15);
    border-radius: 5px;
    margin-bottom: 15px;
}
.our-experience-left p {
    margin-bottom: 14px;
    color: #202047;
    font-size: 24px;
    line-height: 34px;
    font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
}
.team-btn {
    padding-top: 15px;
}
.team-btn .btn {
    background: #202047 url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 25px center;
    color: #fff;
    min-width: 124px;
    height: 50px;
    padding: 6px 50px 6px 25px;
}
.team-btn .btn:hover {
    background: #0e3569 url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 25px center;
    color: #fff;
}
.our-experience-right {
    width: 628px;
    padding-top: 10px;
}
.our-experience-right h4 {
    margin-bottom: 23px;
    color: #202047;
    font-size: 21px;
    line-height: 21px;
     font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
}
.our-experience-right ul {
    margin: 0px;
    padding: 0px;
}
.our-experience-right ul li {
    margin: 0px 0 2px;
    list-style: none;
    position: relative;
    color: #202047;
    font-size: 18px;
    line-height: 28px;
     font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    padding-bottom: 8px;
    padding-left: 25px;
}

.our-experience-right ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background: #2692d8;
    width: 10.24px;
    height: 10.24px;
    border-radius: 20px;
}
.our-experience-right ul li::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 5px;
    bottom: 0;
    background: rgba(32, 32, 71, 0.25);
    width: 1px;
}
.our-experience-right ul li:last-child::after {
    display: none;
}
.our-experience-right ul li a {
    color: #202047;
}
.our-experience-right ul li a:hover {
    color: #202047;
}
/*===========*/ /*HOW TO USE SECTION CSS END*/ /*============*/

.pagination-tool {
    text-align: right;
    width: 100%;
    padding-right: 36px;
    /* margin-top: 40px; */
    display: inline-flex;
    justify-content: flex-end;
}
.pressreleases-events .pagination-tool {
    margin-top: 26px;
}
.pagination-tool a, .pagination-tool span {
    font-family: 'Helvetica';
    font-size: 17px;
    margin: 0 6px;
    display: inline-flex;
    color: #202047;
}
.pagination-tool .current {
    color: #2692D8;
}

.past-events-second-section .post-events-bottom {
    padding-top: 34px;
}

/*===========*/ /*HERO BANNER SLIDER HOME PAGE CSS START*/ /*============*/
.hero-banner-slider {
    position: relative;
    height: 825px;
}
.slider-banner-right {
    width: 892px;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
}
.slider-banner-right img {
    position: relative;
    right: -9px;
    /* top: -3px; */
}
.hero-banner-caption .container {
    max-width: 1696px;
}
.hero-banner-caption {
    padding: 94px 0 100px;
    position: relative;
}
.banner-caption-left{
    width: 840px;
}
.hero-banner-info {
    width: 625px;
    margin-left: 2px;
}
.hero-banner-info h1{
    margin-bottom: 19px;
    color: #202047;
    font-size: 74px;
    line-height: 71px;
    font-family: 'Helvetica Neue';
    font-weight: 500;
    text-transform: uppercase;
}
.hero-banner-info h1 span{
    color: #2692D8;
}
.hero-banner-info p{
    margin-bottom: 20px;
    color: #202047;
    font-size: 28px;
    line-height: 38px;

    font-weight: normal;
}
.banner-categories-link {
    padding-top: 83px;
    padding-left: 3px;
}
.box-link-wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.box-link-block {
    list-style: none;
    margin: 0px;
    color: #787890;
    font-size: 18px;
    line-height: 21px;

    font-weight: normal;
    text-transform: uppercase;
}
.box-link-block a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* opacity: 0.6; */
    transition: 0.7s;
    color: #202047;
    margin-right: 44px;
}
.box-link-block a:hover {
    /* opacity: 1; */
}
.hover-container-line {
    width: 5px;
    height: 37px;
    background: #185089;
    margin-right: 15px;
}
.box-link-block:nth-child(2) .hover-container-line {
    background: #549F9D;
}
.box-link-block:nth-child(3) .hover-container-line {
    background: #2D9E5B;
}
.box-link-block:nth-child(4) .hover-container-line {
    background: #D31237;
}
.box-link-block:nth-child(5) .hover-container-line {
    background: #D45D1B;
}
.box-link-block:last-child a {
    margin-right: 0;
}
/*===========*/ /*HERO BANNER SLIDER HOME PAGE CSS END*/ /*============*/
/*===========*/ /*ABOUT UPCOMING EVENT SECTION HOME PAGE CSS START*/ /*============*/
.about-upcoming-event-section{
    padding: 180px 0px;
    background: #185089;
}
.about-upcoming-event-section .container{
    max-width: 1394px;
}
.about-upcoming-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -2px;
    padding-right: 4px;
}
.about-home-section {
    width: 561px;
    background: #FFFFFF;
    padding: 70px 40px 70px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.about-home-section h3 {
    margin-bottom: 38px;
    color: #202047;
    font-size: 38px;
    line-height: 25px;
    font-family: 'Helvetica Neue Medium';
    font-weight: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: left;
}
.about-home-section h3 img {
    margin-right: 0;
    height: 48px;
}
.about-home-section p {
    margin-bottom: 0px;
    color: #202047;
    font-size: 24px;
    line-height: 34px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
	/* text-align:justify; */
}
.upcoming-event-section {
    width: 781px;
    background: #FFFFFF;
    padding: 48px 55px 55px 55px;
}
.upcoming-event-heading h3{
    margin-bottom: 9px;
    padding: 0px;
    color: #202047;
    font-size: 21px;
    line-height: 31px;
    font-weight: bold;
}
.upcoming-event-post p {
    margin-bottom: 0px;
    padding: 0px;
    color: rgba(32,32,71, 0.5);
    font-size: 14px;
    line-height: 16px;

    font-weight: normal;
}
.upcoming-event-post figure {
    margin: 18px 0 0;
    height: auto;
}
.upcoming-event-post figure img {
    height: auto;
    object-fit: cover;
    width: auto;
}
.upcoming-event-slider .slick-list.draggable{
    margin: 0 -5px;
}
.media-kit-slider .slick-dots li.slick-active button {
    color: #2692D8;
}
.upcoming-event-post {
    padding: 0 5px;
}
.upcoming-register-btn{
    padding-top: 18px;
}
.upcoming-event-slider .slick-dots {
    width: auto;
    left: auto;
    right: -15px;
    bottom: 22px;
    display: flex;
    background: #fff;
    padding: 10px;
}
.upcoming-event-slider .slick-dots li {
    margin: 0 5px 0px;
}
.upcoming-event-slider .slick-dots li button {
    height: 11px;
    width: 11px;
    background: #a3b9d0;
}
.upcoming-event-slider .slick-dots li.slick-active button {
    background: #185089;
}
.upcoming-event-slider .slick-dots li button:hover, .upcoming-event-slider .slick-dots li button:focus {
    background: #185089;
}
.upcoming-register-btn .btn-radius {
    min-width: 155px;
}
/*===========*/ /*ABOUT UPCOMING EVENT SECTION HOME PAGE CSS END*/ /*============*/
/*===========*/ /*CONTACT HOME SECTION HOME PAGE CSS START*/ /*============*/
.contact-home-section {
    padding: 124px 0px 128px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    background: #202047;
}
/* .contact-home-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    background: #202047;
} */
.contact-home-wrap {
    max-width: 1226px;
    margin: 0 auto;
    border: 5px solid #fff;
    position: relative;
    z-index: 1;
    padding-left: 408px;
}
.contact-form-home {
    background: #fff;
    padding: 52px 45px 21px 45px;
}
.contact-heading{
    text-align: center;
    padding-bottom: 33px;
}
.contact-heading h3{
    margin-bottom: 18px;
    color: #202047;
    font-size: 28px;
    line-height: 25px;

    font-weight: normal;
    text-transform: uppercase;
}
.contact-heading p{
    margin-bottom: 0px;
    color: #202047;
    font-size: 17px;
    line-height: 27px;

    font-weight: normal;
}
.contact-form-home  .contact-main-form-wrapper .gfield_label {
    color: rgba(0, 0, 0, 0.4);
}
.contact-form-home .contact-main-form-wrapper .ginput_container textarea, .contact-form-home .contact-main-form-wrapper .ginput_container input {
    width: 100%;
    background-color: #F5F5F5;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    height: 49px;
    padding: 10px 12px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 19px;
    font-family: 'Helvetica Neue';
    appearance: none;
    border-radius: 0;
}
.contact-form-home .contact-main-form-wrapper .gfield.label-active textarea, .contact-form-home .contact-main-form-wrapper .gfield.label-active input {
    border: 1px solid #2692d8;
}
.contact-form-home input.large::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(0, 0, 0, 0.4);
    opacity: 1; /* Firefox */
}

.contact-form-home input.large:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(0, 0, 0, 0.4);
}

.contact-form-home input.large::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(0, 0, 0, 0.4);
}
.contact-form-home .contact-main-form-wrapper .gfield {
    width: 100%;
    margin: 0 0 30px;
}
.contact-form-home .contact-main-form-wrapper .ginput_container textarea {
    height: 91px;
}
.contact-form-home .contact-main-form-wrapper .gfield.gfield-left {
    width: 48%;
}
.contact-form-home .contact-main-form-wrapper .gfield.gfield-right {
    width: 48%;
}
.contact-form-home .contact-main-form-wrapper .gform_fields {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-form-home .contact-main-form-wrapper .gfield.label-active .gfield_label {
    position: absolute;
    top: -18px;
    text-transform: uppercase;
}
.contact-form-home .contact-main-form-wrapper .gform_footer {
    text-align: center;
}
.contact-form-home .contact-main-form-wrapper .gform_footer .gform_button {
    min-width: 155px;
    color: #fff;
    background-color: #202047;
    border: 1px solid #202047;
}
.contact-form-home .contact-main-form-wrapper .gform_footer .gform_button:hover {
    background-color: #f5f5f5;
    color: #202047;
}
.contact-address-info{
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(32, 32, 71, 0.4);
}
.contact-form-detail {
    max-width: 515px;
    margin: 0 auto;
}
.contact-address-info {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(32, 32, 71, 0.4);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.add-info-col{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 12px;
}
.add-info-col:last-child{
    margin-right: 0px;
}
.add-info-col:last-child img{
    margin-right: 0px;
}
.add-info-col p{
    margin-bottom: 0px;
    color: #202047;
    font-size: 15px;
    line-height: 27px;

    font-weight: normal;
}
.add-info-col p a{
    color: #202047;
}
.add-info-col p a:hover{
    color: #03b1e7;
}
.add-info-col p img{
    margin-right: 10px;
}
.contact-form-home .gfield.field_sublabel_below.field_description_below.gfield_visibility_visible.google-recapcha-gfield {
    margin-top: -9px;
    margin-bottom: 30px;
}
.contact-left-bg {
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.contact-left-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}
/*===========*/ /*CONTACT HOME SECTION HOME PAGE CSS END*/ /*============*/
.item-img {
    padding: 0 5px;
}

.media-kit-slider .slick-prev {

    background: url(../images/arrow-left-events.svg) no-repeat center;

    right: 59px;

}

.media-kit-slider .slick-next {

    background: url(../images/arrow-right-events.svg) no-repeat center;

    transform: rotate(0deg);

    right: 0px;

}

.media-kit-slider .slick-prev,

.media-kit-slider .slick-next {

    width: 13px;

    height: 7px;

    border: none;

    bottom: 8px;

    background-color: #fff;
    height: 18px;
    background-position: center;

}

.media-kit-slider .slick-dots li button {

    height: auto;

    width: auto;

    line-height: normal;

    font-size: 16px;

    font-family: Helvetica Neue, sans-serif;

    font-weight: normal;

    color: #000;

    padding: 0;

    background: none;

    border-radius: 0px;

}

.media-kit-slider .slick-dots {
    bottom: 6px;
    width: auto;
    left: auto;
    right: 11px;
    background: #fff;
}

.media-kit-slider .slick-dots li {

    margin: 0 8px 0px;

}
.btn-radius {
    color: #fff;
    min-width: 189px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: #202047;
    transition: 1s;
    -webkit-transition: 1s;
    cursor: pointer;
    font-weight: normal;
    border-radius: 25px;
    position: relative;
    border: none;
    padding: 15px 25px;
    border: 1px solid #202047;
}
.btn-radius:hover {
    background-color: transparent;
}
.btn-radius img {
    margin-left: 15px;
}
.upcoming-events-slider .slick-list {
    margin: 0 -16px;
}
.upcoming-events-slider .slick-list .slick-slide {
    margin: 0;
    padding: 0 16px;
}




/*-----GETSTARTED-POPUP----*/
.getStarted-popup {
    z-index: 1111;
}
.modal-open .modal {
	padding-right: 0 !important;
}

.getStarted-popup .modal-dialog {
	margin-right: 0;
	margin-bottom: 0;
	margin-top: 0;
	height: 100vh;
}

.getStarted-popup .modal-content {
    background-color: #202047;
    border: none;
    border-radius: 0;
    padding: 130px 60px 50px 60px;
    height: 100%;
    overflow: auto;
}
.getStarted-popup .modal-content .contact-main-form {
    width: 100%;
}
.getStarted-popup .modal-header {
	padding: 0;
	border-bottom: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.getStarted-popup .modal-header .close {
	margin: 0;
	opacity: 1;
	position: absolute;
	padding: 0;
	right: 55px;
	top: 58px;
	z-index: 1;
    cursor: pointer;
}

.getStarted-popup .modal-body {
	padding: 0;
}
.modal.right.fade.getStarted-popup .modal-dialog {
    right: -320px;
    -webkit-transition: opacity 0.3s linear, right 0.7s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.7s ease-out;
    -o-transition: opacity 0.3s linear, right 0.7s ease-out;
    transition: opacity 0.3s linear, right 0.7s ease-out;
}
.modal.right.fade.show .modal-dialog, .modal.right.fade.in .modal-dialog {
    right: 0;
}

.getStarted-popup .contact-main-form-wrapper .ginput_container textarea,
.getStarted-popup .contact-main-form-wrapper .ginput_container input{
    color:rgba(255,255,255,0.2);
}

.getStarted-popup .contact-main-form-wrapper .gfield_label{
    color: rgba(255,255,255,0.2);
}
body.modal-open.bg-color-opacity-0 .modal-backdrop.fade.show {
    opacity: 0;
}

.thanks-modal-info img{
    margin: 0 0 24px;
}


.media-kit-slider-dowmload .slick-dots {
    bottom: 6px;
    width: auto;
    left: auto;
    right: 17px;
    background: #fff;
}
.media-kit-slider-dowmload .slick-dots li {
    margin: 0 6px 0px;
}
.media-kit-slider-dowmload .slick-dots li button {
    height: auto;
    width: auto;
    line-height: normal;
    font-size: 16px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
    color: #000;
    padding: 0;
    background: none;
    border-radius: 0px;
}
.media-kit-slider-dowmload .slick-prev, .media-kit-slider-dowmload .slick-next {
    width: 13px;
    height: 7px;
    border: none;
    bottom: 13px;
}
.media-kit-slider-dowmload .slick-prev {
    background: url(../images/arrow-left-events.svg) no-repeat center;
    right: 122px;
}
.media-kit-slider-dowmload .slick-next {
    background: url(../images/arrow-right-events.svg) no-repeat center;
    transform: rotate(0deg);
    right: 0;
}

.media-kit-slider-dowmload .slick-dots li.slick-active button {
    color: #2692D8;
}
.brand-assets-info .media-kit-slider-dowmload .slick-prev {
    right: 60px;
}
.podcasts-thumb-slider .slick-dots {
    bottom: 6px;
    width: auto;
    left: auto;
    right: 17px;
}
.podcasts-thumb-slider .slick-dots li {
    margin: 0 6px 0px;
}
.podcasts-thumb-slider .slick-dots li button {
    height: auto;
    width: auto;
    line-height: normal;
    font-size: 16px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
    color: #000;
    padding: 0;
    background: none;
    border-radius: 0px;
}
.podcasts-thumb-slider .slick-prev, .podcasts-thumb-slider .slick-next {
    width: 13px;
    height: 7px;
    border: none;
    bottom: 13px;
}
.podcasts-thumb-slider .slick-prev {
    background: url(../images/arrow-left-events.svg) no-repeat center;
    right: 82px;
}
.podcasts-thumb-slider .slick-next {
    background: url(../images/arrow-right-events.svg) no-repeat center;
    transform: rotate(0deg);
    right: 0;
}

.podcasts-thumb-slider .slick-dots li.slick-active button {
    color: #2692D8;
}

.podcasts-thumb-slider .podcasts-thumb-items {
    padding-right: 34px;
}
.podcasts-thumb-slider .slick-list.draggable {
    padding-bottom: 50px;
    margin-right: -27px;
}
.podcasts-thumb-slider .slick-slide > div {
    display: flex;
    flex-wrap: wrap;
}

.post-events-bottom-col figure {
    position: relative;
}
.play-abs-tools{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-abs-tools a{
    width: 112px;
    height: 112px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.play-abs-tools span{
    width: 34px;
    height: 40px;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background: rgba(255, 255, 255, 0.5);
    display: block;
}

.video-md-popup .modal-dialog {
    max-width: 1100px;
}

img.close {
    max-width: 26px;
    position: absolute;
    right: 0;
    top: -23px;
    cursor: pointer;
}
.video-main-design{
    height: 550px;
}
.video-main-design iframe, .video-main-design video {
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
}
.past-events-second-section .play-abs-tools a {
    width: 79px;
    height: 79px;
}
.past-events-second-section .play-abs-tools  span {
    width: 24px;
    height: 30px;
}



/*===========*/ /*TEAM SECTION ON TEAM PAGE CSS START*/ /*============*/
.team-section {
    padding: 7px 135px 110px 106px;
}
.team-section .container{
    max-width: 1664px;
}
.team-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.team-content-left{
    width: 517px;
    position: sticky;
    top: 20px;
}
.team-group-col {
    background: #FFFFFF;
    filter: drop-shadow(0 15px 15px rgba(0, 34, 68, 0.1));
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 517px;
}
.person-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
/*     cursor: pointer; */
}
.open-team-modal {
    cursor: pointer;
}
.person-wrapper:hover .box-plus {
    background-color: #2692D8;
}
.team-img-left{
    width: 150px;
}
.team-img-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.team-info-right {
    width: calc(100% - 150px);
    padding: 15px 23px;
    position: relative;
}
.team-info-right h4 {
    margin-bottom: 3px;
    color: #202047;
    font-size: 22px;
    line-height: 28px;
    font-family: 'Helvetica';
    font-weight: normal;
    text-transform: none;
}
.team-info-right h4 a{
    color: #202047;
}
.team-info-right h4 a:hover{
    color: #202047;
}
.team-info-right p {
    margin-bottom: 8px;
    color: #185089;
    font-size: 16px;
    line-height: 20px;
}
.team-info-right a {
    color: #185089;
}
.follow-links{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.follow-links span {
    color: #202047;
    font-size: 17px;
    line-height: normal;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}
.follow-links img{
    margin-left: 15px;
    display: block;
}
.box-plus {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #0f4072;
    transition: background-color 300ms;
}
.box-plus:hover{
    background: #2692d8;
}
.team-heading {
    margin-bottom: 0;
    padding-top: 0;
}
.team-heading h3{
    margin-top: 2px;
    margin-bottom: 15px;
    color: #0f4072;
    font-size: 24px;
    line-height: 25px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #0f4072;
}
.team-content-right{
    width: 1145px;
    width: calc(100% - 517px);
    padding-left: 41px;
}
.team-content-group {
    border-left: 1px solid rgba(32, 32, 71, 0.15);
    border-bottom: 1px solid rgba(32, 32, 71, 0.15);
    padding: 1px 0 25px 41px;
    margin-bottom: 0px;
}
.team-content-group:last-child{
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.team-right-col{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.team-content-group.client-advisors-cection {
    padding-top: 18px;
}

.team-content-group .team-heading {
    margin-bottom: 3px;
}
.team-content-group.client-advisors-cection .team-right-col .team-group-col {
    margin-bottom: 15px;
}
.team-right-col .team-group-col {
/*     margin-bottom: 0; */
    margin-top: 0;
}
body.team-popup-show {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/*=TEAM-MODAL-CONTENT START=*/

.modal-btn-close {
    position: absolute;
    right: 32px;
    top: 33px;
    margin: 0;
    background: none;
    height: auto;
    width: auto;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Helvetica';
    font-weight: normal;
    z-index: 9;
}
.modal-btn-close a{
    color: #fff;
}
.modal-btn-close a:hover{
    color: #01a4ec;
}
.team-modal-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 0px;
    overflow-y: initial;
    height: 100%;
}
.team-body-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
}
.team-popup-left {
    width: 392px;
    padding-top: 2px;
}
.bio-popup-scroll{
    max-height: 500px;
    overflow-y: auto;
}
.bio-popup-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #4d4e6c;
}

.bio-popup-scroll::-webkit-scrollbar {
  width: 6px;
  background-color: #4d4e6c;
}

.bio-popup-scroll::-webkit-scrollbar-thumb {
  background-color: #FFFFFF;
}
.team-popup-right {
    width: 392px;
    height: 500px;
}
.team-popup-img {
    height: 100%;
}
.team-popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bio-popup-scroll h3 {
    margin-bottom: 11px;
    color: #fff;
    font-size: 42px;
    line-height: 38px;
    font-family: 'Helvetica';
    font-weight: normal;
    font-family: Helvetica Neue, sans-serif;
}
.bio-popup-scroll h5 {
    font-size: 16px;
    font-weight: 400;
    text-transform: unset;
    line-height: 18px;
    color: #01a4ec;
    margin-bottom: 10px;
}
.bio-popup-scroll p {
    font-size: 18px;
    line-height: 25px;
    padding-right: 22px;
    color: #fff;
}
.bio-popup-scroll p a:hover {
    color: #fff;
}
.follow-links2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 5px;
}
.follow-links2 span {
    color: #fff;
    font-size: 17px;
    line-height: normal;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}
.follow-links2 svg{
    margin-left: 10px
}
.follow-links2 svg path {
    fill: #fff;
}
.follow-links2 svg path:hover {
    fill: #01a4ec;
}

.team-modal-content {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1111;
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: rgb(32, 32, 71);
    border: 0;
    border-radius: 0;
}
.modal-arrow-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 14px;
}
.team-info-outer {
    width: 100%;
}
.left-arrow-btn {
    margin-right: 28px;
}
/*=TEAM-MODAL-CONTENT END=*/
/*===========*/ /*TEAM SECTION ON TEAM PAGE CSS END*/ /*============*/

.team-popup-show .team-modal-content {
    display: block !important;
}

.hero-banner-mobile{
    display: none;
}

.tabs-dropdown{
    display: none;
}
.postevents-slider2{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.postevents-slider2 .slick-dots {
    bottom: 6px;
    width: auto;
    left: auto;
    right: 17px;
}
.postevents-slider2 .slick-dots li {
    margin: 0 6px 0px;
}
.postevents-slider2 .slick-dots li button {
    height: auto;
    width: auto;
    line-height: normal;
    font-size: 16px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
    color: #000;
    padding: 0;
    background: none;
    border-radius: 0px;
}
.postevents-slider2 .slick-prev, .postevents-slider2 .slick-next {
    width: 13px;
    height: 7px;
    border: none;
    bottom: 13px;
}
.postevents-slider2 .slick-prev {
    background: url(../images/arrow-left-events.svg) no-repeat center;
    right: 102px;
}
.postevents-slider2 .slick-next {
    background: url(../images/arrow-right-events.svg) no-repeat center;
    transform: rotate(0deg);
    right: 0;
}

.postevents-slider2 .slick-dots li.slick-active button {
    color: #2692D8;
}

.postevents-slider2 .podcasts-thumb-items {
    padding-right: 34px;
}
.postevents-slider2 .slick-list.draggable, .news-upcoming-events-slider .slick-list.draggable {
    padding-bottom: 50px;
}
.postevents-slider2 .slick-slide > div {
    display: flex;
    flex-wrap: wrap;
}
.postevents-inner .pagination-tool {
    margin-top: -9px;
}
/*===========*/ /*gform_fields news PAGE CSS START*/ /*============*/
.contact-form-inner .gform_fields {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-form-inner{
    padding-top: 0px;
}

.contact-form-inner .gform_fields .gfield {
    list-style: none;
    margin-bottom: 26px;
    position: relative;
        width: 100%;
}
.contact-form-inner .gform_fields .gfield.gfield-left {
    width: 49%;
}
.contact-form-inner .gform_fields .gfield.gfield-right {
    width: 49%;
}
.contact-form-inner .gform_fields .gfield label {
    color: rgba(0, 0, 0, 0.4);
    font-size: 15px;
    line-height: 21px;
    font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    position: absolute;
    top: 12px;
    left: 12px;
    pointer-events: none;
    transition: 1s;
    display: flex;
}
.contact-form-inner .gform_fields .gfield label span.gfield_required {
    display: block;
    margin-left: 2px;
}
.gfield_required {
    display: none;
}
.contact-form-inner input.datepicker::placeholder {
    opacity: 0;
}
.contact-form-inner .gform_fields .gfield.label-active label {
    top: -21px;
    font-size: 13px;
    color: #2692d8;
    text-transform: uppercase;
}

.contact-form-inner input.large, .contact-form-inner input.datepicker  {
    background: #f5f5f5;
    border-radius: 0;
    height: 45px;
    border: 1px solid #f5f5f5;
    font-size: 19px;
    line-height: 45px;
    padding: 5px 19px;
     font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.4);
    transition: 1s;
    width: 100%;
}
.contact-form-inner .label-active input.large {
    border-color: #2692d8;
    background: #fff;
}
.contact-form-inner .gform_footer .btn {
    background: #202047 url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 25px center;
    color: #fff;
    min-width: 127px;
    height: 45px;
    padding: 6px 50px 6px 25px;
    text-transform: none;
    font-size: 16px;
    border-radius: 85px;
    border: 1px solid #202047;
    transition: 0.7s;
}
.contact-form-inner .gform_footer .btn:hover {
    background: transparent url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 25px center;
    color: #202047;
}
.gform_button.button {
    background: #202047 url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 25px center;
    color: #fff;
    min-width: 127px;
    height: 45px;
    padding: 6px 50px 6px 25px;
    text-transform: none;
    font-size: 16px;
    border-radius: 85px;
    border: 1px solid #202047;
    transition: 0.7s;
    letter-spacing: 1px;
    line-height: normal;
    font-family: 'Helvetica';
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.gform_button.button:hover {
    background: transparent url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 25px center;
    color: #202047;
}

.contact-form-inner .gform_fields .gfield.label-active label {
    top: -21px;
    font-size: 12px;
    color: #2692d8;
    text-transform: uppercase;
}
.contact-form-inner .label-active input.large {
    border-color: #2692d8;
    background: #fff;
}
.contact-form-inner .ginput_container_fileupload input.large {
    border: 1px dashed #2692d8;
    width: 100%;
    padding: 20px 20px 15px 38px;
    color: #000000;
    font-size: 17px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
    min-height: 67px;
    background: none;
    height: auto;
    line-height: normal;
}
.gfield--type-fileupload label.gfield_label.gform-field-label {
    display: none;
}
.contact-form-inner .gfield_error .ginput_container textarea, .contact-form-inner .gfield_error .ginput_container input {
    border: 1px #f00 solid !important;
}
.confirm-download-modal .gfield_error .ginput_container textarea, .confirm-download-modal .gfield_error .ginput_container input {
    border: 1px #f00 solid !important;
}
/*===========*/ /*gform_fields news PAGE CSS START*/ /*============*/
.tab-content>.tab-pane.fade {
    transition: none !important;
}

/*===========*/ /*SERVICES MAIN SECTION PAGE CSS START*/ /*============*/
.service-main-section{
    padding: 45px 0 180px;
}
.service-main-section .container{
    max-width: 1024px;
}
.service-summary{
    padding-top: 50px;
    filter: drop-shadow(0 15px 15px rgba(0, 34, 68, 0.1));
}
.summary-outer{
    filter: drop-shadow(0 0px 10px rgba(0, 54, 123, 0.4));
}
.content-inner{
    -webkit-clip-path: polygon(0 0, calc(100% - 4rem) 0%, 100% 4rem, 100% 100%, 4rem 100%, 0 calc(100% - 4rem));
    clip-path: polygon(0 0, calc(100% - 4rem) 0%, 100% 4rem, 100% 100%, 4rem 100%, 0 calc(100% - 4rem));
    padding: 80px 32px 80px 32px;
    background: #fff;
}
.backdrop{
    -webkit-clip-path: polygon(35% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 100% 100%);
    max-height: 500px;
    background-color: rgb(24, 80, 137);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.service-content{
    padding: 0 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service-col-left{
    width: 50%;
}

.service-logo img {
    width: 295px;
}
.service-col-left h3 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-family: 'Helvetica Neue Bold';
    font-weight: bold;
    font-size: 24px;
    line-height: 1.25;
    color: #185089;
}
.service-col-left h3 strong{
    font-family: 'Helvetica Neue Black';
    font-weight: 900;
}
.service-col-left p {
    margin-bottom: 16px;
    font-family: 'Helvetica';
    font-weight: normal;
    color: rgb(24, 80, 137);
    font-size: 16px;
    line-height: 24px;
    padding-right: 6px;
}
.service-col-left ul {
    margin: 0px;
    padding-left: 16px;
    padding-bottom: 0px;
    list-style-type: square;
}
.service-col-left ul li{
    margin-bottom: 0;
    font-family: 'Helvetica';
    font-weight: normal;
    color: rgb(24, 80, 137);
    font-size: 16px;
    line-height: 24px;
}
.service-col-right{
    width: 50%;
}
.service-col-right h3 {
    font-size: 20px;
    text-align: right;
    color: #fff;
    line-height: 30px;
    font-family: 'Helvetica Neue Bold';
    font-weight: bold;
}
.green-bg-service .backdrop {
    background-color: rgb(32, 160, 157);
}
.green-bg-service .service-col-left h3 {
    color: #20a09d;
}
.light-green-bg-service .backdrop {
    background-color: rgb(45, 158, 91);
}
.light-green-bg-service .service-col-left h3 {
    color: #2d9e5b;
}
.red-bg-service .backdrop {
    background-color: rgb(211, 18, 55);
}
.red-bg-service .service-col-left h3 {
    color: #d31237;
}
.orange-bg-service .backdrop {
    background-color: rgb(212, 93, 25);
}
.orange-bg-service .service-col-left h3 {
    color: #d45d19;
}
.getStarted-popup .contact-main-form-wrapper .gform_footer .gform_button:hover {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.news-upcoming-events-slider {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/*===========*/ /*SERVICES MAIN SECTION PAGE CSS START*/ /*============*/


/*===========*/ /*CONTENT PAGES CSS START*/ /*============*/
.content-page-wrapper {
    background: #FFFFFF;
    filter: drop-shadow(0 15px 15px rgba(0, 34, 68, 0.1));
    padding: 30px 25px;
}
.content-page-info h6,
.content-page-info h5,
.content-page-info h4,
.content-page-info h3,
.content-page-info h2,
.content-page-info h1,
.content-page-heading h1 {
    margin-bottom: 15px;
    color: #0f4072;
    font-size: 24px;
    line-height: 25px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #0f4072;
}
.content-page-info p {
    margin-bottom: 25px;
    color: #202047;
    font-size: 17px;
    line-height: 23px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}
.content-page-info ul {
    list-style-type: lower-roman;
    padding: 0 0 0 32px;
    margin:  0 0 25px;
}
.content-page-info ul li {
    color: #202047;
    font-size: 17px;
    line-height: 23px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}
.content-page-info p a {
    color: #2692d8;
}
.content-page-info p a:hover {
    color: #202047;
    text-decoration: underline;
}
.table-outer {
    margin: 16px 0 25px;
}
.content-page-info table {
    filter: drop-shadow(0 15px 15px rgba(0, 34, 68, 0.1));
    background-color: #fff;
}
.content-page-info table tr th {
    background: #185089;
    padding: 16px;
    color: #fff;
    font-size: 17px;
    line-height: 23px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}
.content-page-info table tr td {
    color: #185089;
    padding: 8px 16px;
    font-size: 17px;
    line-height: 23px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}
.content-page-info table tr.bg-gray-300 {
    background-color: #f4f7f8;
}
.error-heading img {
    width: 90px;
    margin: 0 0 15px;
}
.content-page-wrapper.justify-center {
    text-align: center;
    padding: 55px 15px;
}
.content-page-info ul.sitemap-menu {
    list-style-type: square;
    margin: 25px 0 0 20px;
    padding: 0;
}
.content-page-info ul.sitemap-menu li {
    margin: 0 0 15px;
    line-height: 24px;
}
.content-page-info ul.sitemap-menu li a {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2.4px;
    color: #202047;
    text-transform: uppercase;
    font-family: 'Helvetica';
    font-weight: 500;
}
.content-page-info ul.sitemap-menu li a:hover {
    color: #2692d8;
}
/*===========*/ /*CONTENT PAGES CSS END*/ /*============*/


/*===========*/ /*SLIDER MORE NEWS SETION ON NEWS PAGE CSS START*/ /*============*/
.slideshow {
    width: 100%;
}
.slide-controls {
    z-index: 1;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.slide-controls .slide-arrow {
    width: auto;
    height: auto;
    text-align: center;
    cursor: pointer;
    font-family: 'Helvetica';
    font-size: 17px;
    margin: 0 6px;
    display: inline-flex;
    color: #202047;
    background: #fff;
}
a.slide-arrow.arrow-next {
    order: 3;
}
.custom-dots {
    padding: 0px;
    background: #fff;
}
.custom-dots li:first-child {
    margin-left: 0;
}
.custom-dots li {
    display: inline-block;
    list-style: none;
    font-family: 'Helvetica';
    font-size: 17px;
    margin: 0px;
    display: inline-flex;
    color: #202047;
}
.custom-dots .slick-active .dot {
    color: #2692D8;
}
.custom-dots li a.dot {
    font-family: 'Helvetica';
    font-size: 17px;
    margin: 0 6px;
    display: inline-flex;
    color: #202047;
}
.postevents-inner nav.slide-controls {
    justify-content: flex-end;
    padding-right: 36px;
    padding-top: 40px;
}

.slideshow2{
    width: 100%;
}
.slideshow2 nav.slide-controls {
    justify-content: flex-end;
}
.slideshow3 nav.slide-controls {
    justify-content: flex-end;
    margin-top: 26px;
    padding-right: 36px;
}
.slideshow3{
    width: 100%;
}
.slideshow4{
    width: 100%;
}
.slideshow4 nav.slide-controls {
    justify-content: flex-end;
    padding-right: 34px;
}
.post-events-outer{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.slideshow5 .slide-controls {
    justify-content: flex-end;
    margin-top: -28px;
    position: relative;
    width: auto;
    float: right;
}
.slideshow6 {
    width: 90px;
}
.slideshow6 .slide-controls {
    justify-content: flex-end;
    margin-top: -28px;
    position: relative;
    width: auto;
    float: right;
    background: #fff;
}
.modal-header .btn-close {
    cursor: pointer;
}
.contact-main-form-wrapper .gform_footer .gform_button {
    border: 1px solid #fff;
}
.contact-main-section .contact-main-form-wrapper .gform_footer .gform_button:hover {
    background-color: transparent;
    color: #fff;
}
/*===========*/ /*SLIDER MORE NEWS SETION ON NEWS PAGE CSS END*/ /*============*/

/*===========*/ /*INSIGHTS SECTION PAGE CSS START*/ /*============*/
.insights-section{
    padding: 50px 0 95px;
}
.insights-section .container{
    max-width: 896px;
}
.insights-post-preview{
    filter: drop-shadow(0 15px 15px rgba(0, 34, 68, 0.1));
    margin-bottom: 32px;
}
.insights-outer {
    /* filter: drop-shadow(0 40px 80px rgba(0, 54, 123, 0.4)); */
    filter: drop-shadow(0 0px 10px rgba(0, 54, 123, 0.4));
}
.insights-inner {
    -webkit-clip-path: polygon(0 0, calc(100% - 4rem) 0%, 100% 4rem, 100% 100%, 4rem 100%, 0 calc(100% - 4rem));
    clip-path: polygon(0 0, calc(100% - 4rem) 0%, 100% 4rem, 100% 100%, 4rem 100%, 0 calc(100% - 4rem));
    min-height: 300px;
    padding: 48px;
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.insights-content{

}
.insights-corner-icon {
    position: absolute;
    left: 15px;
    top: 14px;
}
.insights-content p {
    margin: 0 0 1px;
    padding: 0px;
    color: rgb(38, 146, 216);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Helvetica Neue Bold';
    font-weight: bold;
}
.insights-content h3 {
    padding: 0px;
    color: #202047;
    font-size: 30px;
    line-height: 37px;
    font-family: 'Helvetica Neue Bold';
    font-weight: bold;
    margin-bottom: 9px;
}
.insights-content h3 a{
    color: #202047;
}
.insights-content h3 a:hover{
    color: rgb(216, 123, 0);
}
.insights-content h5 {
    margin: 0px 0 4px;
    padding: 0px;
    color: rgb(38, 146, 216);
    text-transform: capitalize;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Helvetica Neue Bold';
    font-weight: bold;
}
.more-link{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: absolute;
    bottom: 32px;
    right: 32px;
}
.more-link a{
    color: rgb(38, 146, 216);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Helvetica Neue Bold';
    font-weight: bold;
}
.more-link a:hover{
    color: rgb(216, 123, 0);
}

.pagination-nav .page-numbers li {
    margin-left: 8px;
    margin-right: 8px;
    list-style: none;
}
.pagination-nav .page-numbers li .current {
    color: rgb(24, 80, 137);
}
.pagination-nav .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue Bold';
    font-weight: bold;
    color: rgb(138, 157, 166);
    padding: 0px;
}
.pagination-nav .page-numbers li a:hover, .pagination-nav .page-numbers li a:focus {
    color: #FAAF3C;
}
.pagination-nav a.next.page-numbers i {
    font-size: 25px;
    color: rgb(24, 80, 137);
}
.category-filters{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-bottom: 42px;
}
.filter-content {
    max-width: 218px;
    text-align: right;
    width: 100%;
}
.filter-content h5{
    font-size: 20px;
    color: #202047;
    font-family: 'Helvetica Bold';
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.filter-select-info {
    width: 100%;
    padding: 16px 28px 16px 16px;
    font-family: 'Helvetica';
    font-weight: normal;
    font-size: 16px;
    border: 1px solid rgba(32, 32, 71, 0.15);
    background: url("../images/arrow-down.png");
    background-position: right 10px center;
    background-repeat: no-repeat;
    appearance: none;
    background-size: 13px;
}
.postform {
    width: 100%;
    padding: 16px 28px 16px 16px;
    font-family: 'Helvetica';
    font-weight: normal;
    font-size: 16px;
    border: 1px solid rgba(32, 32, 71, 0.15);
    background: url("../images/arrow-down.png");
    background-position: right 10px center;
    background-repeat: no-repeat;
    appearance: none;
    background-size: 13px;
}
.items-filter {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.items-filter p{
    font-size: 12px;
    line-height: 16px;
    color: #000;
    text-transform: uppercase;
    font-family: 'Helvetica Neue Bold';
    font-weight: bold;
    margin-bottom: 0px;
}
.filter-tag-button{
    margin-left: 7px;
}
.filter-tag-button a {
    display: flex;
}
.filter-tag-button img {
    max-height: 18px;
}
.desktop-hidden {
    display: none;
}
/*===========*/ /*INSIGHTS SECTION PAGE CSS START*/ /*============*/


.gform_submission_error {
    text-transform: none !important;
    color: #f00 !important;
    font-size: 16px !important;
    line-height: 21px !important;
    font-weight: normal !important;
    font-family: 'Helvetica Neue' !important;
}
.gfield_description {
    color: #f00;
    font-size: 16px;
    line-height: 21px;
    font-weight: normal;
    display: none !important;
}
.gform_ajax_spinner{
	display: none !important;
}


.contact-form-home .gfield_error .ginput_container textarea, .contact-form-home .gfield_error .ginput_container input {
    border: 1px #f00 solid !important;
}
.contact-main-form .gfield_error .ginput_container textarea, .contact-main-form .gfield_error .ginput_container input {
    border-bottom: 1px #f00 solid !important;
}

.how-to-usetab-left.how-to-usetab-col-two {
    display: flex;
    flex-wrap: wrap;
}
.how-to-usetab-col-two-item {
    flex: inherit;
    padding: 20px 0;
    display: flex;
    /* flex-wrap: wrap; */
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e2e7;
}
.how-to-usetab-col-two-item:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}
body .wp-pagenavi a, body .wp-pagenavi span {
    text-decoration: none;
    border: none;
    padding: 0 8px;
    margin: 0;
    font-size: 18px;
    line-height: 27px;
    font-family: 'Helvetica Neue Bold';
    font-weight: bold;
    color: rgb(138, 157, 166);
    display: inline-flex;
}
.wp-pagenavi {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
body .wp-pagenavi span.current {
    color: rgb(24, 80, 137);
}

body .nextpostslink::after, body .previouspostslink::after {
    font-family: FontAwesome;
    font-weight: normal;
    font-size: 25px;
    color: rgb(24, 80, 137);
}
body .nextpostslink::after{
    content: "\f101";
}
body .previouspostslink::after{
    content: "\f100";
}
body .nextpostslink, body .previouspostslink {
    font-size: 0 !important;
}
.team-popup-slider .slick-prev, .team-popup-slider .slick-next {
    border: none;
    width: 20px;
    height: 20px;
    bottom: -40px;
}
.team-popup-slider .slick-prev {
    background: url('../images/arrow-left.png') no-repeat center;
    right: 33px;
    left: auto;
}
.team-popup-slider .slick-next {
    background: url('../images/arrow-right.png') no-repeat center;
    right: 0;
    transform: none;
}

.team-popup-item{
    padding: 0 15px;
}
.team-group-col-inner-info {
    width: 100%;
}
.team-info-popup-modal {
    background: rgb(32, 32, 71);
}
.team-modal-body .modal-content {
    background: none;
    border: none;
    box-shadow: none;
    width: 100%;
}
.modal-arrow-right .carousel-control-next, .modal-arrow-right .carousel-control-prev {
    position: relative;
    width: 44px;
    opacity: 1;
    text-align: center;
    height: 32px;
    right:0;
}
.modal-arrow-right .carousel-control-prev {
    left: auto;
    right: 0px;
}
.team-info-popup-modal {
    z-index: 999999;
}

.team-info-popup-modal .modal-arrow-right {
    padding-top: 20px;
}


.slide-controls a, .slide-controls span {
    font-family: 'Helvetica';
    font-size: 17px;
    margin: 0 6px;
    display: inline-flex;
    color: #202047;
}
.slide-controls .current {
    color: #2692D8;
}
.upcoming-events-col figure {
    background: #000;
    text-align: center;
}
.upcoming-events-col figure img {
    margin: 0 auto;
    height: 236px;
    width: 100%;
}

.upcomingevents-info h4.sky-blue-heading, .upcomingevents-info h4.sky-blue-heading a  {
    color: #185089;
}
.upcomingevents-info h4.sky-blue-heading:hover, .upcomingevents-info h4.sky-blue-heading a:hover  {
    color: #01a4ec;
}

.confirm-download-modal span.gfield_required {
    display: inline-block;
}

.sky-blue-heading a {
    color: #185089;
}
.sky-blue-heading {
    color: #185089 !important;
}

.pressreleases-events .post-events-top-col figure {
    background: #000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.pcast-player-controls button {
    line-height: 1px;
}
.news-scroll {
    max-height: 121px;
    overflow-y: auto;
    padding-right: 5px;
}
.news-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
  background-color: #f3f5f7;
}

.news-scroll::-webkit-scrollbar {
  width: 4px;
  background-color: #f3f5f7;
}

.news-scroll::-webkit-scrollbar-thumb {
  background-color: #dce0e4;
}
img.chief-officer-logo {
    max-width: 300px;
}
.hidden_label label{display:none!important;}

.download-service-Offerings p {
    margin-bottom: 0px;
}
.download-service-Offerings .upload-file-size2 p {
    margin-bottom: 0;
}
.download-service-Offerings p img.chief-officer-cxo {
    width: 55px;
    margin: 0 5px;
}
.download-service-Offerings .upload-file-size2 a svg path {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
}
.download-service-Offerings .upload-file-size2 a:hover svg path {
    fill: #61caf4;
}

#pressreleases .post-events-content {
    padding: 28px 30px 28px 43px;
}


.download-service-Offerings {
    max-width: 302px;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
}
.download-service-Offerings .upload-file-size2 {
    width: 76%;
    justify-content: left;
}

.postevents-inner nav.slide-controls .register-btn a{
    color: #2692d8;
}
.postevents-inner nav.slide-controls .register-btn a:hover {
    color: #202047;
}

/*===========*/ /*NEWS DETAIL SECTION PAGE CSS START*/ /*============*/
.all-news-details-section .more-news-section {
    padding-top: 0px;
}

.all-news-details-section .postevents-inner .upcoming-events-col {
    margin-bottom: 38px;
}
.all-news-details-section .past-events-wrap {
    align-items: flex-start;
}
.all-news-details-section .postevents-inner {
    padding-bottom: 0;
}
/*===========*/ /*NEWS DETAIL SECTION PAGE CSS START*/ /*============*/

.eventspast-section .post-events-content {
    padding: 26px 30px 26px 43px;
}
.eventspast-section .post-events-top-col {
    box-shadow: 10px 9px 18px rgba(0, 0, 0, 0.06);
}
.eventspast-section .past-events-right {
    margin-bottom: 34px;
}

.checkbox-download {
    width: 21px;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    border-radius: 3px;
}
.media-kit-download input[type=checkbox]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
}
.media-kit-download input[type=checkbox]:checked:after {
    width: 5px;
    height: 9px;
    border: 2px solid #202047;
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(45deg);
}

.media-kit-download input[type=checkbox]:checked {
    background: transparent;
    border-color: #202047;
}


.media-kitfile-download {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 15px 0 0 0;
}
.download-all {
    color: #202047;
    font-size: 17px;
    font-family: 'Helvetica';
    font-weight: normal;
}
.download-all svg {
    margin-right: 15px;
}
.download-all:hover svg path {
    fill: #202047;
}

/*===========*/ /*INSIGHTS SECTION PAGE CSS START*/ /*============*/
.insights-banner {
    background: #202047;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
    padding: 58px 0 34px;
}
.insights-banner .container {
    max-width: 1696px;
}
.insights-wrap .caption-content h1 {
    margin-bottom: 22px;
}
.insights-items {
    clip-path: polygon(19% 0, 100% 0, 100% 100%, 0% 100%);
    position: absolute;
    width: 66.1%;
    top: 0;
    bottom: 0;
}
.insights-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,  rgba(32,32,71,0) 0%,rgba(32,32,71,0.9) 100%);
}
.insights-img {
    position: relative;
    height: 100%;
}
.insights-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.insights-banner .caption-content {
    position: relative;
}
/*===========*/ /*INSIGHTS SECTION PAGE CSS END*/ /*============*/
.postevents-info-inner p.pr-date {
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 16px;
    font-family: 'Helvetica';
    font-weight: normal;
}

.pressreleases-events .post-events-top-col figure img {
    height: 100%;
    object-fit: cover;
}
/* .about-upcoming-event-section .upcoming-event-post p {
    margin-bottom: 6px;
}
.about-upcoming-event-section .upcoming-event-post figure img {
    object-fit: contain;
}
.about-upcoming-event-section .upcoming-event-post figure {
    margin-top: 15px;
    background: #000;
}
.about-upcoming-event-section .upcoming-event-post[data-slick-index="2"] figure {
    background: #fafafa;
} */


.item-right {
    width: calc(100% - 90px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 26px;
}
.item-file-name {
    width: 100%;
    border-bottom: 1px solid #77d1f6;
    padding-bottom: 20px;
}
.item-file-name p {
    color: #202047;
    font-size: 17px;
    line-height: normal;
    font-family: 'Helvetica Neue Medium';
    font-weight: 500;
}

.team-right-col .team-group-col-inner-info, .team-right-col .person-wrapper {
    height: 100%;
}

/** CARRES PAGE CSS START **/
.careers-section {
    padding-bottom: 105px;
}
.careers-section .container {
    max-width: 1696px;
    width: 100%;
    margin: 0 auto;
}
.careers-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.careers-left-col {
    width: 343px;
    background: #202047;
    /* padding: 70px 0 78px; */
    padding: 25px 0 33px;
    position: sticky;
    top: 0;
}
.careers-left-col::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50vw;
    height: 100%;
    background: #202047;
    z-index: -1;
    pointer-events: none;
}
.careers-left-col h1 {
    margin-top: 2px;
    margin-bottom: 19px;
    color: #fff;
    font-size: 28px;
    line-height: 25px;
    text-transform: uppercase;
    font-family: helvetica neue;
    font-weight: 400;
}
.careers-left-col p {
    font-family: helvetica neue;
    font-weight: 400;
    font-size: 19px;
	color: #fff;
}
.careers-team-btn .btn-radius {
    background: #fff;
    color: #202047;
}
.careers-team-btn .btn-radius:hover {
    background: #2692D8;
    color: #fff;
}
.careers-team-btn .btn-radius svg path {
    transition: 1s;
    -webkit-transition: 1s;
}
.careers-team-btn .btn-radius:hover svg path {
    stroke: #fff;
}
.careers-right-col {
    width: 1257px;
}
.careers-team-btn a svg {
    margin-left: 10px;
}
.careers-team-btn a:focus {
    text-decoration: none;
}
.careers-left-col p a {
    color: #fff;
}
.careers-left-col p a:hover {
    color: #2692D8;
}
.careers-team-btn {
    margin-top: 14px;
}
.careers-right-info .careers-heading-block h6 {
    color: #185089;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Helvetica Neue Medium';
    margin: 0 0 28px;
    padding: 0;
    border: 0;
}
.careers-left-col p.materials-info {
    margin-bottom: 0;
}
.careers-right-info h2 {
    color: #202047;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 500;
    font-family: 'Helvetica Neue Medium';
    margin: 0 0 30px;
}
.careers-right-info h6,
.careers-right-info h5,
.careers-right-info h4,
.careers-right-info h3 {
    color: #202047;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    font-family: 'Helvetica Neue Medium';
    margin: 35px 0 25px;
    padding: 40px 0 0;
    border-top: 1px solid rgba(0,0,0,0.2);
}
.careers-right-info .salary-block h4 {
    border: 0;
    padding: 0;
}
.careers-right-info .careers-heading-block + h3 {
    padding-top: 0;
    margin-top: 0;
    border: 0;
}
.careers-right-info p {
    font-size: 22px;
    line-height: 32px;
    color: #202047;
    padding-right: 220px;
    font-family: helvetica neue;
    font-weight: 400;
}
.careers-right-info ol li,
.careers-right-info ul li {
    font-size: 17px;
    line-height: 25px;
    color: #202047;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}
.careers-right-info ol li::marker,
.careers-right-info ul li::marker {
    color: #2692D8;
    font-size: 20px;
}
.careers-right-info ul {
    padding-right: 190px;
    padding-bottom: 0;
    margin-left: 12px;
}
.careers-left-col p {
    font-size: 17px;
}
/** CARRES PAGE CSS END **/

.team-read-btn {
    text-align: center;
    margin-top: 5em;
}
.btn-radius:focus {
    background-color: transparent;
    text-decoration: none;
    color: #1a1a1a;
}
.filter-content.filter-content-new {
    max-width: max-content;
}
.filter-select-wrap {
    display: inline-flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.filter-select-item {
    margin-left: 15px;
}
.filter-select-item:first-child {
    margin-left: 0;
}

.careers-new-section .careers-left-col {
    padding: 60px 0;
}
.careers-new-section .careers-team-btn {
    margin-top: 0;
}
/*****Team Member Single***********/
.team-member-single .insights-content .designat span {
    margin: 0 0 1px;
    padding: 0px;
    color: rgb(38, 146, 216);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Helvetica Neue Bold';
    font-weight: bold;
}
.follow-links2 span {
    color: #2e96d9;
}
.team-member-single .follow-links2 svg path {
    fill: #2692d8;
}
.team-left-image {
    width: 30%;
    float: left;
    margin: 0 20px 14px 0;
}
.team-left-image img {
    width: 100%;
    height: auto;
}
.team-member-single .insights-content p {
    margin-bottom: 25px;
    color: #202047;
    font-size: 17px;
    line-height: 25px;
    font-family: Helvetica Neue, sans-serif;
    font-weight: normal;
    text-transform: none;
}
/*****Team Member Single End*******/

.inq-gary-page-section .insights-content h3 {
    margin: 0 0 20px;
}
.team-left-image.inq-gary-warp {
    display: flex;
    flex-wrap: wrap;
    float: none;
    width: 100%;
    margin-right: -20px;
    margin-left: -20px;
}
.inq-gary6 {
    width: 50%;
    padding: 0 20px;
}
.inq-gary-warp .inq-gary-text-info img {
    border-radius: 20px;
    margin: 0 0 20px;
}
.inq-gary-warp .inq-gary-text-info h5 {
    color: #000000;
    font-size: 21px;
    line-height: 28px;
    text-transform: none;
    margin-bottom: 6px;
    font-family: 'Helvetica Neue';
    font-weight: normal;
}

.team-member-single .insights-content .inq-gary-text-info  p {
    margin-bottom: 0;
}
