:root {
    --brand-color-navy-1: #132a4a;
    --brand-color-navy-2: #051429;
    --brand-color-orange-1: #ff7000;
    --brand-color-orange-2: #ffaf3f;
    --brand-color-blue: #00c6e9;
    --brand-color-yellow-1: #fdd400;
    --brand-color-yellow-2: #fef666;
    --brand-color-light-grey: #f5f5f5;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
    scroll-padding-top: 110px;
    overflow-x: hidden;
}

@media (max-width: 767.98px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 1199.98px) {
    html {
        font-size: 18px;
    }
}

body {
    cursor: default;
    font-family: Heebo, 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 300;
}

.hidefTitle #page-title {
    display: none;
}

.container-fluid {
    min-width: 320px;
}

ul.fMenu,
ul.fGalleryList,
ul.fMenu li,
ul.fGalleryList li {
    margin: 0;
    list-style: none;
}

ul.fMenu,
ul.fGalleryList {
    padding: 0;
}

h3 {
    font-size: 2rem;
}

h3 big {
    font-weight: 800;
    font-size: 3rem;
}

ul.fMenu>li {
    position: relative;
}

ul.fMenu>li>ul {
    position: absolute;
    top: 100%;
    left: 20%;
    /*right: 0;*/
    width: 200px;
    background: var(--brand-color-navy-1);
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: 0.6s all;
}

ul.fMenu>li>ul li {
    width: 100%;
    border-bottom: 1px solid #fff;
}

ul.fMenu>li>ul li>a {
    padding: inherit;
    color: #fff;
    padding: 10px 0;
    display: block;
}

ul.fMenu>li:hover>ul {
    opacity: 1;
    height: auto;
    overflow: visible;
}

#section-banner {
    min-height: 640px;
    min-height: 100vh;
    color: #fff;
    position: relative;
}

#section-banner .fModule {
    /*
    padding-top: 2rem;
    padding-bottom: 2rem;
*/
}

.slide2 {
    display: none;
}

.region-banner {
    display: flex;
    flex-wrap: wrap;
}

.fModuleBanner {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.fModuleBanner:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--brand-color-navy-1);
    mix-blend-mode: multiply;
    opacity: 0.9;
}

.fModuleBanner video {
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.fModuleBanner img {
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--brand-color-navy-1);
    background-blend-mode: multiply;
}

header,
.header-padding {
    background: var(--brand-color-navy-1);
    padding: 15px 0;
    position: relative;
    height: 90px;
    z-index: 9999;
}

.header-padding {
    position: relative;
    height: 90px;
    overflow: hidden;
    margin-top: -90px;
    z-index: -1;
}

.header-padding.with-logo {
    margin-top: 0;
}

header nav {
    font-size: 0;
}

header nav li {
    display: inline-block;
    text-align: center;
    width: 16.66%;
    font-size: 1rem;
    text-transform: uppercase;
    transition: 0.5s all;
}

header nav li a {
    font-weight: bold;
    color: #fff;
    transition: 0.5s all;
}

header nav li a:hover {
    color: #fdd400;
    text-decoration: none;
}

header.with-logo {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.5);
}

header.with-logo nav li {
    width: 15%;
}

header.with-logo nav li:nth-child(3) {
    margin-right: 5%;
}

header.with-logo nav li:nth-child(4) {
    margin-left: 5%;
}

@media(max-width: 767.8px) {
    body header nav li {
        display: block;
        width: 100% !important;
        margin: 0 !important;
        text-align: right !important;
    }
    body header nav li a {
        display: block;
        font-size: 1.25rem;
        padding: 1rem;
        padding-right: calc(1rem + 15px);
        text-align: right;
    }
}

header.with-logo .fModuleLogo {
    width: 10%;
    z-index: 1000;
}

header.with-logo .fModuleLogo img {
    height: 60px;
    width: auto;
    transform: rotate(0deg);
    max-width: initial;
}

.fModuleLogo {
    text-align: center;
    transition: 0.5s all;
}

.fModuleLogo img {
    height: 0px;
    width: auto;
    transition: 0.5s all;
    transform: rotate(-180deg);
}

header .fModule {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media(max-width: 767.8px) {
    header nav {
        position: absolute;
        background: var(--brand-color-navy-1);
        top: 75px;
        right: 0;
        width: 320px;
        transition: 0.3s all;
        max-height: 0;
        overflow: hidden;
        display: block !important;
    }
    header nav.d-sm-none {
        display: block !important;
    }
    header nav.show {
        max-height: 400px;
    }
    header .fModuleLogo img {
        height: 60px;
        width: auto;
        transform: rotate(0deg);
        max-width: initial;
    }
    header .fModule {
        width: auto;
        transform: none;
        position: relative;
        top: auto;
        left: auto;
        flex-grow: 1;
        flex-basis: auto;
    }
    header .fModule.fModuleLogo {
        text-align: left;
        width: auto;
        flex-grow: 0;
    }
    .region-header {
        display: flex;
    }
}

header .navbar-toggle-container {
    text-align: right;
}

header .navbar-toggle {
    height: 60px;
    width: 60px;
    display: inline-block;
    position: relative;
}

.navbar-toggle .icon-bar {
    height: 1px;
    position: absolute;
    background: #fff;
    width: 2.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s all;
    opacity: 0;
}

.collapsing {
    transition: none;
}

.navbar-toggle .icon-bar:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 1;
}

.navbar-toggle .icon-bar:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 1;
}

.navbar-toggle.collapsed .icon-bar:first-child {
    margin-top: -10px;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.navbar-toggle.collapsed .icon-bar:last-child {
    margin-top: 10px;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.navbar-toggle.collapsed .icon-bar:nth-child(2) {
    opacity: 1;
}

.d-none.show {
    display: block !important;
}

.fRegion {
    width: 100%;
}

.fModuleEnd .fModuleContent,
.fModuleEnd .fModuleTitle {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.fModuleSlim .fModuleContent,
.fModuleSlim .fModuleTitle {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.fModuleSlim2 .fModuleContent,
.fModuleSlim2 .fModuleTitle {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 575.98px) {
    .fModuleEnd .fModuleContent,
    .fModuleEnd .fModuleTitle {
        width: 100%;
    }
}

@media (min-width: 767.98px) {
    .fModuleEnd .fModuleContent,
    .fModuleEnd .fModuleTitle {
        width: 720px;
    }
}

@media (min-width: 991.98px) {
    .fModuleEnd .fModuleContent,
    .fModuleEnd .fModuleTitle {
        width: 960px;
    }
}

@media (min-width: 1199.98px) {
    .fModuleEnd .fModuleContent,
    .fModuleEnd .fModuleTitle {
        width: 1140px;
    }
}

.fModuleStats .fGalleryImage {
    float: left;
    display: block;
}

.fModuleStats h3 {
    font-weight: 900;
    margin: 0;
    font-size: 1.8rem;
}

.fModuleStats .fGalleryText {
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-left: 65px;
}

.fModuleStats .fGalleryText p {
    margin: 0;
}

.fModuleStats .fGalleryItem {
    height: 100%;
    overflow: hidden;
    padding: 1rem;
}

.fModuleStats .fGalleryItem img {
    max-width: 50px;
    height: auto;
}

@media (max-width: 767.98px) {
    .fModuleStats .fGalleryItem {
        text-align: center;
    }
    .fModuleStats .fGalleryImage {
        float: none;
    }
    .fModuleStats .fGalleryText {
        margin: 0;
    }
}

.justifyContent {
    justify-content: center;
}

.fModuleCountry .fModuleContent {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.fModuleCountry .fGalleryImage {
    text-align: center;
    display: block;
}

.fModuleCountry h3 {
    font-weight: 400;
    margin: 0;
    font-size: 0.9rem;
}

.fModuleCountry .fGalleryText {
    text-transform: uppercase;
    text-align: center;
    padding-top: 1rem;
}

.fModuleCountry .fGalleryText p {
    margin: 0;
}

.fModuleCountry .fGalleryItem {
    padding-bottom: 3rem;
    height: 100%;
    overflow: hidden;
}

.fModuleCountry .fGalleryItem img {
    max-width: 35px;
    height: auto;
}

@media (max-width: 767.98px) {
    .fModuleCountry .fGalleryItem {
        text-align: center;
    }
    .fModuleCountry .fGalleryImage {
        float: none;
    }
    .fModuleCountry .fGalleryText {
        margin: 0;
    }
}

.hero {
    font-size: 1.25rem;
    padding: 1.5rem 0;
    font-weight: 300;
    margin: 0;
}

.hero-flip {
    margin: 1rem 0;
    position: relative;
    text-align: center;
}

.hero-flip a {
    font-weight: 800;
    background: #00c6e9;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    display: inline-block;
    font-size: 1.5rem;
}

.hero a:hover {
    text-decoration: none;
}

.cd-headline.slide .cd-words-wrapper {
    text-align: center;
}

.cd-words-wrapper b,
.cd-words-wrapper b.is-visible {
    word-wrap: normal !important;
    white-space: normal !important;
    text-align: center;
}

.cd-words-wrapper b.is-hidden {
    left: 50% !important;
    transform: translate(-50%, 0) !important;
}

.cd-headline.slide b.is-visible {
    margin-left: auto;
    margin-right: auto;
}

h1.hero {
    position: relative;
}

h1.hero:after {
    content: " ";
    display: none;
    bottom: 0;
    width: 100px;
    height: 1px;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    left: 50%;
    transform: translate(-50%, 0);
}

h1.hero:before {
    content: " ";
    display: block;
    top: 0;
    width: 100px;
    height: 1px;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    left: 50%;
    transform: translate(-50%, 0);
}

#page-title {
    background: #eaeaea;
    color: #111111;
    padding: 3rem 0;
    text-align: center;
    width: 100%;
}

#page-title h1 {
    font-weight: 800;
    font-size: 3rem;
}

#page-content {
    width: 100%;
}

#page-content .fModule,
footer .fModule {
    padding: 2rem;
}

#page-content .fModuleTitle h3 {
    font-weight: 800;
    color: #111;
    font-size: 2rem;
    letter-spacing: 1px;
}

#page-content .small-header .fModuleTitle h3 {
    font-weight: 800;
    color: #111;
    font-size: 1.8rem;
    position: relative;
}

#page-content .small-header .fModuleTitle h3:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    width: 100px;
    left: 0;
    height: 3px;
    background: #fd7e14;
    transition: 0.6s all;
}

.fModuleTitle {
    padding-bottom: 1rem;
}

.heading-center .fModuleTitle {
    text-align: center;
}

.fBgLight {
    background: #eaeaea;
    color: #111111;
}

.fBgDarkGrey {
    background: #666666;
    color: #fff;
}

.fGallerySquare .fGalleryImage {
    display: block;
    border: 3px solid #eaeaea;
}

.fGallerySquare .fGalleryImage img {
    max-width: 100%;
}

.fGallerySquare .fGalleryText {
    padding: 1rem 0 0 0;
}

.fGallerySquare .fGalleryText h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.fGallerySquare .fGalleryText p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.fGalleryColoredSquare {
    padding: 0 !important;
}

.fGalleryColoredSquare .fGalleryItem {
    padding: 3rem 2rem;
    color: #fff;
}

.fGalleryColoredSquare .fButton {
    border-color: #fff;
    color: #fff;
}

.fGalleryColoredSquare .fGalleryImage {
    display: block;
    margin-bottom: 1rem;
}

.fGalleryColoredSquare .fGalleryImage img {
    max-width: 50px;
}

.fGalleryColoredSquare .fGalleryText h3 {
    font-weight: 400;
}

.fGalleryColoredSquare .fGalleryText h3,
.fGalleryColoredSquare .fGalleryText h3 a {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.fGalleryColoredSquare .fGalleryItem:nth-child(3n + 1) {
    background: #ff7000;
}

.fGalleryColoredSquare .fGalleryItem:nth-child(3n + 2) {
    background: #666;
}

.fGalleryColoredSquare .fGalleryItem:nth-child(3n + 3) {
    background: #00c6e9;
}

.fGalleryColoredSquare .fGalleryItem a {
    color: #fff;
}

.fGalleryPhotoOnly .fGalleryItem {
    text-align: center;
}

.fGalleryPhotoOnly .fGalleryItem img {
    max-width: 100px;
}

.fGalleryItem .fGalleryImage {
    display: block;
}

.fGalleryImage img {
    max-width: 100%;
}

.fBgContact {
    background: url('//storage.unitedwebnetwork.com/files/486/da0728747ccfe1914be020b22818148b.jpg');
    background-size: cover;
}

.fModuleContact p {
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.fButton {
    border: 1px solid var(--brand-color-navy-1);
    border-radius: 3px;
    display: inline-block;
    text-transform: uppercase;
    color: var(--brand-color-navy-1);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
}

.fButton {
    color: var(--brand-color-navy-1);
}

.text-big {
    font-size: 1.25rem;
}

.no-margin,
.m-0 {
    margin: 0px !important;
}

.no-margin-top,
.mt-0 {
    margin-top: 0px !important;
}

.no-margin-bottom,
.mb-0 {
    margin-bottom: 0px !important;
}

.no-margin-left,
.ml-0 {
    margin-left: 0px !important;
}

.no-margin-right,
.mr-0 {
    margin-right: 0px !important;
}

.no-margin-v,
.mv-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.no-padding,
.p-0 {
    padding: 0px !important;
}

.no-padding-top,
.pt-0,
.p-top-0 {
    padding-top: 0px !important;
}

.no-padding-bottom,
.pb-0,
.p-bottom-0 {
    padding-bottom: 0px !important;
}

.no-padding-left,
.pl-0 {
    padding-left: 0px !important;
}

.no-padding-right,
.pr-0 {
    padding-right: 0px !important;
}

.no-padding-v,
.pv-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.blog_sec {
    background-color: #eee;
}

.blog_sec .fModuleTitle h3,
.contact_frm_sec .fModuleTitle h3 {
    text-align: center;
}

.blog_sec .newslist {
    display: inline-block;
    width: 100%;
    flex-wrap: inherit;
}

.blog_sec .newslist li {
    float: left;
    margin: 0;
    padding: 0 15px;
    width: 33.333%;
    list-style: none;
}

.blog_sec .newslist li .newslist-text .newslist-image>a {
    display: inline-block;
}

.blog_sec .newslist li .newslist-text .newslist-image>a img {
    width: 100%;
    height: auto;
    line-height: 0;
}

.blog_sec .newslist li .newslist-text .newslist-title h4 {
    text-transform: uppercase;
}

.blog_sec .newslist li .newslist-text .newslist-title h4>a {
    display: block;
    color: #111;
}

.blog_sec .newslist li .newslist-text .newslist-meta>span {
    padding: 15px 0;
    color: #999;
    display: block;
}

.blog_sec .newslist li .newslist-text .newslist-story p {
    margin: 0;
    color: #000;
    font-weight: bold;
}

.contact_frm_sec .form .form-group .form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 17px;
    color: #444;
    box-shadow: none;
    background: #eaeaea;
    transition: 0.5s ease;
}

.contact_frm_sec .form .form-group textarea.form-control {
    height: 160px;
    resize: none !important;
}

.contact_frm_sec .form .form-group .form-control::-moz-placeholder {
    font-size: 17px;
    color: #444;
    opacity: 1;
}

.contact_frm_sec .form .form-group .form-control:focus {
    border-color: #B9DFDF;
    background: #f6f6f6;
    padding-left: 15px;
    transition: 0.5s ease;
}

.contact_frm_sec .form .btPara {
    text-align: right;
}

.contact_frm_sec .form .btPara .fButton {
    margin: 0;
    padding: 15px 60px;
    background: #00c6e9;
    text-transform: uppercase;
    font-size: 21px;
    color: #000;
    border: none;
    font-weight: bold;
    position: relative;
    z-index: 0;
    border-radius: 0px;
    overflow: hidden;
    /*-webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
}

.description .fModuleContent h4 {
    color: var(--brand-color-orange-2);
    font-size: 2.1rem;
    font-style: italic;
    padding: 20px 0;
}

.association-gal ul li a.fGalleryImage {
    display: inline-block;
}

.association-gal ul li a.fGalleryImage img {
    height: 100px;
    width: auto;
    display: inline-block;
}

.association-gal .bx-wrapper {
    margin-bottom: 0;
}

.association-gal ul li {
    margin: 0.83rem;
    margin-bottom: 2rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.association-gal ul li div.fGalleryText p {
    text-align: center;
}

.association-gal .bx-wrapper .bx-controls-direction,
.association-gal .bx-wrapper .bx-pager,
.association-gal .bx-wrapper .bx-loading {
    /* display: none; */
}

.association-gal .bx-wrapper .bx-next {
    right: -10px !important;
    filter: opacity(0.5);
}

.association-gal .bx-wrapper .bx-prev {
    left: -10px !important;
    filter: opacity(0.5);
}

.bx-wrapper .bx-controls-direction a {
    z-index: 10 !important;
    filter: opacity(0.5);
}

.bx-wrapper .bx-pager.bx-default-pager a {
    border-radius: 50%;
}

.services {
    background: var(--brand-color-navy-2);
}

.services ul li a.fGalleryImage {
    display: inline-block;
    padding: 10px 30px;
    background: #fff;
    border-radius: 10px;
    margin-top: 1rem;
}

#page-content .services .fModuleTitle h3,
#page-content .services .fModuleTitle h3 a {
    color: #fff !important;
}

.services ul li a.fGalleryImage img {
    height: 100px;
    width: auto;
    display: inline-block;
}

.services ul li div.fGalleryText {
    text-align: center;
}

.services ul li div.fGalleryText h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 30px;
    text-align: center;
}

.services ul li div.fGalleryText h3 span {
    color: var(--brand-color-orange-2);
}

.services ul li div.fGalleryText p {
    color: #fff;
    margin-bottom: 0;
}

.association-form {
    background: #a2a6ae;
}

.association-form .fModuleContent {
    padding: 0 15%;
}

.association-form .fModuleContent p {
    color: #000;
    font-weight: 500;
}

.association-form .fModuleContent form {
    padding: 0 6%;
}

.association-form .fModuleContent form input.form-control {
    border-radius: 0;
}


/*.company ul {
    text-align: center;
    list-style: none;
}
.company ul li {
    display: inline-block;
    width: 100%;
    list-style: none;
}
.company ul li > div.img {
    float: left;
    width: 15%;
}
.company ul li > div.content {
    float: right; 
    width: 85%;
}*/

.company img {
    height: 200px;
    width: auto;
    display: inline-block;
}

.pco-gal ul li a.fGalleryImage {
    display: none;
}

.pco-gal ul li div.fGalleryText h3,
.pco-gal ul li div.fGalleryText h3 a {
    font-size: 1.3rem;
    color: #fff;
}

.pco-gal ul li div.fGalleryText h3 {
    background: var(--brand-color-navy-1);
    padding: 0.6rem 0;
}

.pco-gal ul li div.fGalleryText {
    border: 1px solid #5C2785;
    position: relative;
    min-height: 222px;
    height: 100%;
    max-height: 222px;
    margin-bottom: 45px;
}

.pco-gal ul li div.fGalleryText .step {
    position: absolute;
    top: -33px;
    left: -2px;
    width: 70px;
    height: 70px;
    background: #f1f1f1;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 4px 3px 12px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 4px 3px 12px -4px rgba(0, 0, 0, 0.75);
    box-shadow: 4px 3px 12px -4px rgba(0, 0, 0, 0.75);
    transform: rotate(-6deg);
}

.pco-list ul {
    width: 50%;
    float: left;
}

.pco-list .fModuleContent>div {
    display: inline-block;
    width: 100%;
}

.pco-list .fModuleContent>div ul li {
    text-align: left;
}

.amc #page-title {
    display: none;
}

.rais_heading {
    text-align: center;
    background: #f5f5f5;
}

.rais_heading p {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    font-family: Heebo, 'Nunito', sans-serif;
}

.heading2 {
    text-align: center;
    max-width: 930px;
    margin: 0 auto;
    padding: 0 !important;
}

.membership_wrp {
    background-image: url(//storage.unitedwebnetwork.com/files/486/640ff48bd947dd0f59daa4c183958b07.png);
    width: 100%;
    padding: 2rem;
    background-size: cover;
    text-align: center;
    filter: grayscale(20%);
    background-attachment: fixed;
}

.membership_wrp h3 {
    text-align: center;
    color: #fff !important;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.64);
}

.membership_wrp h3 a {
    font-size: 20px !important;
    letter-spacing: 1px;
    color: #fff !important;
    text-transform: capitalize;
}

.membership_wrp li {
    text-align: center;
}

.prod img {
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 5px;
}

span.white {
    font-size: 15px;
    text-shadow: none;
    font-weight: 100;
    display: block;
    max-width: 570px;
    margin: 40px auto;
}

.prod h6 {
    font-size: 15px;
    text-shadow: none;
    font-weight: 300;
    display: block;
    color: #fff;
    letter-spacing: 1px;
    max-width: 230px;
    margin: 0 auto;
}

.adm {
    background-image: url(//storage.unitedwebnetwork.com/files/486/024b58109c3d2348ff190a32dd79c70b.png);
    width: 100%;
    margin: 0 auto;
    padding: 90px 40px;
    background-size: cover;
    text-align: center;
    float: left;
}

.adm p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0;
    margin: 0;
}

.adm h3 {
    text-align: center;
    color: #fff !important;
    /* text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.64); */
    font-size: 36px !important;
    letter-spacing: 1px;
    line-height: 27px;
    margin: 15px 0 40px 0;
    font-weight: 300;
}

.adm h3 a {
    font-size: 20px !important;
    letter-spacing: 1px;
    color: #fff !important;
    text-transform: capitalize;
}

.adm h2 {
    font-size: 20px !important;
    letter-spacing: 1px;
    color: #fff !important;
    text-transform: capitalize;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 27px;
    margin: 15px 0 8px 0;
}

.adm li {
    margin-bottom: 50px !important;
    /* float: left; */
    /* width: 100%; */
    /* display: inline-block; */
}

.adm img {
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 5px;
    width: 80px;
}

.adm span {
    font-size: 15px;
    text-shadow: none;
    font-weight: 100;
    display: block;
    max-width: 570px;
    margin: 40px auto;
}

.adm h6 {
    font-size: 15px;
    text-shadow: none;
    font-weight: 300;
    display: block;
    color: #fff;
    letter-spacing: 1px;
    max-width: 230px;
    margin: 0 auto;
}

#tabscontainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin: 50px auto;
    padding: 0;
    max-width: 855px;
}

#tabscontainer * {
    font-family: Trebuchet MS, Verdana, Helvetica, Arial;
}

#tabscontainer>[name="radiogroupfortabs"] {
    position: absolute;
    visibility: hidden;
}

#tabscontainer>#radiofortab1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}

#tabscontainer>#radiofortab2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
}

#tabscontainer>#radiofortab3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
}

#tabscontainer>#radiofortab4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
}

#tabscontainer>[id^="tab-label"] {
    position: relative;
    top: 0px;
    max-height: 42px;
    margin: 1px 2px 0 0;
    display: inline-block;
    padding: 12px 21px;
    border-radius: 5px 5px 0 0;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: #f1f1f1;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    background: #9f9f9f;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#tabscontainer>[id^="tab-label"]:hover {
    background: #f7f7f7;
}

#tabscontainer>[id^="tab-content"] {
    -webkit-box-ordinal-group: 999;
    -webkit-order: 999;
    -ms-flex-order: 999;
    order: 999;
    /* Set to a high value - just has to be at least one more than the number of tabs */
    display: none;
    z-index: 2;
    top: 48px;
    width: 100%;
    min-height: 5em;
    overflow: hidden;
    font-size: 14px;
    border-width: 1px;
    border-style: none;
    padding: 10px 25px 25px 25px;
    background: #f1f1f1;
    margin-top: -1px;
    border-radius: 0 5px 5px 5px;
    border-bottom: 5px solid #00b3d3;
}

#tabscontainer>[name="radiogroupfortabs"]:checked+[id^="tab-label"] {
    z-index: 4;
    margin-top: 0px;
    padding-top: 16px;
    background: #f1f1f1;
}

#tabscontainer>#radiofortab1:checked~#tab-content1 {
    display: block;
    padding: 60px;
}

#tabscontainer>#radiofortab2:checked~#tab-content2 {
    display: block;
}

#tabscontainer>#radiofortab3:checked~#tab-content3 {
    display: block;
}

#tabscontainer>#radiofortab4:checked~#tab-content4 {
    display: block;
}

#tabscontainer #tab-content4 #mediamatrix {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#tabscontainer #tab-content4 #mediamatrix .mediaitem {
    min-width: 21%;
    margin: 15px 0.9% 0;
    padding: 5px;
    border-radius: 10px;
    /* This and the following line placed here just to show where media items will be displayed */
    background-color: #ddeeff;
    text-align: center;
}

#tabscontainer #tab-content4 #mediamatrix .mediaitem .mediaitemthumb {
    margin-bottom: 5px;
    min-height: 50px;
}

#tabscontainer #tab-content4 #mediamatrix .mediaitem .mediaitemcaption {
    min-height: 20px;
}

.Other_Services h3 {
    text-align: center;
}

.con {
    background-image: url(//storage.unitedwebnetwork.com/files/486/d914ae00f7d80ed7c30fd02dbe9eb983.png);
    width: 100%;
    margin: 0 auto;
    /*     padding: 90px 40px; */
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    /*     height: 550px; */
    position: relative;
}

.con h2 {
    text-align: left;
    font-size: 1.4rem;
}

.con p {
    text-align: left;
}

.icon {
    width: 46%;
    display: inline-block;
    margin: -380px 0 0 110px;
    position: absolute;
}

.icon li {
    display: block;
    width: 100%;
}

.icon li img {
    display: inline-block;
    background: #fff;
    padding: 11px;
    margin-bottom: 10px;
    border-radius: 5px;
    margin: 0 10px 11px 0;
    width: 62px;
}

.icon li h3 {
    display: inline-block;
    font-size: 25px;
}

.icon li h3 a {
    font-size: 22px;
    color: #000;
}

.icon .fGalleryText {
    display: inline-block;
}

.icon .fGalleryItem .fGalleryImage {
    display: inline-block;
}

.ico {
    width: 49%;
    display: inline-block;
    float: right;
    margin-top: -28%;
}

.ico li img {
    display: inline-block;
}

.ico li h3 a {
    font-size: 27px !important;
    color: #000
}

.ico li h3 {
    font-size: 27px !important;
    color: #000
}

.ico .fGalleryText {
    display: inline-block;
}

.ico .fGalleryItem .fGalleryImage {
    display: inline-block;
}

.ico #page-content .fModuleTitle h3 {
    font-size: 27px !important;
}

.ico h3 {
    font-size: 27px !important;
    font-weight: 600 !important;
}

.ico li img {
    display: inline-block;
    background: #fff;
    padding: 11px;
    margin-bottom: 10px;
    border-radius: 5px;
    margin: 0 10px 11px 0;
    width: 62px;
}

.membership_wrp .bx-wrapper .bx-viewport {
    background: none !important;
}

.membership_wrp .bx-wrapper img {
    max-width: 100%;
    display: initial !important;
}

.membership_wrp .bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    border-radius: 50px;
}

.video_box {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 0 15px;
}

.video_box iframe {
    width: 100%;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
    /*    border: 15px solid #cacaca;*/
    -webkit-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.75);
}

.web {
    text-align: center;
}

.web strong {
    background: var(--brand-color-orange-2);
    padding: 10px;
}

.slide1 img {
    background: var(--brand-color-orange-2);
    border-radius: 5px;
    padding: 10px;
    margin: 31px 0 0 0;
}

.slide1 .fGalleryItem .fGalleryImage {
    display: inline-block;
    top: 0;
    margin-top: 0;
    position: absolute;
}

.slide1 .fGalleryText {
    display: inline-block;
    width: 76%;
    margin-top: 0;
    margin: 0 0 0 92px;
}

.slide1 h3 a {
    color: #000;
    font-size: 25px;
}

.slide1 p {
    color: #000;
    font-size: 15px;
}

.slide1 .bx-wrapper .bx-next {
    right: -40px !important;
    filter: opacity(0.5);
}

.slide1 .bx-wrapper .bx-prev {
    left: -40px !important;
    filter: opacity(0.5);
}

.slide1 .bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    border-radius: 50px;
}

.color {
    padding: 16px;
    border: 1px solid #d8d8d8;
    height: 165px;
}

.slide1 .bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: -61px;
    width: 100%;
}

.slide2 .bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    display: none;
}

.slide2 #page-content .fModule,
footer .fModule {
    padding-top: 0;
    padding-bottom: 0;
}

.slide #page-content .fModule,
footer .fModule {
    padding-top: 0;
    padding-bottom: 0;
}

.slide2 img {
    background: #fdd400;
    border-radius: 5px;
    padding: 10px;
    margin: 31px 0 0 0;
}

.slide2 .fGalleryItem .fGalleryImage {
    display: inline-block;
    top: 0;
    margin-top: 0;
    position: absolute;
}

.slide2 .fGalleryText {
    display: inline-block;
    width: 76%;
    margin-top: 0;
    margin: 0 0 0 92px;
}

.slide2 h3 a {
    color: #000;
    font-size: 25px;
}

.slide2 p {
    color: #000;
    font-size: 15px;
}

.slide2 .bx-controls-direction {
    display: none;
}

.slide2 .bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    border-radius: 50px;
}

.color2 {
    padding: 16px;
    border: 1px solid #d8d8d8;
    height: 165px;
}

.slide1 {
    position: relative;
    margin: 0px 0 0 0px;
}

.slide2 {
    position: absolute;
    margin: 0px 0 0 70px;
}

.amc #fModule-11068 {
    display: none;
}

.amc .Banner2 {
    position: absolute;
    top: 0;
    padding: 0 !important;
    z-index: -1;
    height: 100vh;
    width: 100%;
}

.Banner2 img {
    height: 80vh !important;
    width: 100%;
}

.amc h1.hero.cd-headline.slide {
    display: none;
}

.Banner2 .fGalleryText h5 {
    position: absolute;
    top: 370px;
    left: 0;
    right: 0;
    /* margin: 0 auto; */
    text-align: center;
    font-size: 42px;
    letter-spacing: 1px;
}

.amc .align-self-end {
    -ms-flex-item-align: end!important;
    align-self: normal !important;
    margin: 120px 0 0 0;
}

.amc #section-banner {
    min-height: 520px;
    color: #fff;
    position: relative;
}

.gpo li {
    display: none;
}

.icon {
    width: 40%;
    display: inline-block;
    margin: 0px 0 0 99px;
    position: absolute;
    bottom: 470px;
    left: 0;
}

.lms #fModule-11068 {
    display: none;
}

.lms .Banner2 {
    position: absolute;
    top: 0;
    padding: 0 !important;
    z-index: -1;
    height: 100vh;
    width: 100%;
}

.Banner2 img {
    height: 80vh !important;
    width: 100%;
}

.lms h1.hero.cd-headline.slide {
    display: none;
}

.lms .fGalleryText h5 {
    display: none;
}

.lms .gop {
    margin-top: -90px;
}

.lms #section-banner {
    min-height: 640px;
    min-height: 80vh;
    color: #fff;
    position: relative;
}

#page-title {
    display: none;
}

.lms_icon {
    text-align: center;
}

.lms_icon img {
    width: 20%;
    margin-bottom: 20px;
}

.lms_icon h3 {
    font-size: 20px;
    margin-bottom: 25px;
}

.wrp2 {
    margin-bottom: 30px;
    float: left;
    width: 100%;
}

.wrp2 .fGalleryText {
    float: right;
    width: 48%;
}

.wrp2 h3 {
    font-family: Heebo, 'Nunito', sans-serif;
    font-size: 31px;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 800 !important;
    cursor: none;
}

.wrp2 .fGalleryText p {
    font-family: Heebo, 'Nunito', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 27px;
}

.wrp2 img {
    width: 47%;
    float: left;
}

.wrp2 .fGalleryText li {
    list-style-type: circle;
    font-family: Heebo, 'Nunito', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 17px;
    color: #2d2d2d;
    font-weight: 400;
    line-height: 22px;
}

.lms #section-footer {
    display: none;
}

.main_heading {
    text-align: center;
    position: absolute;
    top: 290px;
    right: 0;
    left: 0;
    color: #fff;
}

.foot_wrap {
    background: url(//storage.unitedwebnetwork.com/files/486/8e148d1d16db373d7117a506466a91a9.jpg);
    background-size: cover;
    width: 100%;
    float: left;
    padding: 50px 0 !important;
}

.foot_wrap .fModuleContent {
    background: var(--brand-color-navy-1);
    padding: 50px;
    color: #fff;
    max-width: 580px;
}

.foot_wrap .fModuleContent h2 {
    font-size: 21px;
}

.small_box_dhes {
    text-align: center;
    background: #f5f5f5;
}

.small_box_dhes ul {
    display: flex;
    flex-wrap: wrap;
}

.small_box_dhes ul>li {
    list-style: none;
    width: 24%;
    flex: 0 0 24%;
    margin: 0;
    margin-right: 14px;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    transition: 0.3s;
}

.small_box_dhes ul>li:hover {
    box-shadow: 0px 3px 38px 0px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.small_box_dhes ul>li:last-child {
    margin-right: 0;
}

.full-size,
.flip-box .object,
.flip-box .front,
.flip-box .back {
    width: 100%;
    height: 100%;
}

.slice,
.flip-box .front,
.flip-box .back,
.flip-box .flank {
    display: block;
    overflow: hidden;
    position: absolute;
}

.flip-box {
    float: left;
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 180px;
    -webkit-perspective: 400px;
    -moz-perspective: 400px;
    -ms-perspective: 400px;
    -o-perspective: 400px;
    perspective: 400px;
    margin: 8px 0;
}

.flip-box .object {
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-75px);
    -moz-transform: translateZ(-75px);
    -ms-transform: translateZ(-75px);
    -o-transform: translateZ(-75px);
    transform: translateZ(-75px);
}

.flip-box .object:hover,
.flip-box .object:focus {
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transform: translateZ(-75px) rotateY(180deg);
    -moz-transform: translateZ(-75px) rotateY(180deg);
    -ms-transform: translateZ(-75px) rotateY(180deg);
    -o-transform: translateZ(-75px) rotateY(180deg);
    transform: translateZ(-75px) rotateY(180deg);
}

.flip-box .front {
    z-index: 1;
    background-color: #002f63;
    box-shadow: 0px 3px 38px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform: rotateY(0deg) translateZ(75px);
    -moz-transform: rotateY(0deg) translateZ(75px);
    -ms-transform: rotateY(0deg) translateZ(75px);
    -o-transform: rotateY(0deg) translateZ(75px);
    transform: rotateY(0deg) translateZ(75px);
}

.flip-box .back {
    z-index: 0;
    background-color: #fff;
    box-shadow: 0px 3px 38px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform: rotateY(180deg) translateZ(75px);
    -moz-transform: rotateY(180deg) translateZ(75px);
    -ms-transform: rotateY(180deg) translateZ(75px);
    -o-transform: rotateY(180deg) translateZ(75px);
    transform: rotateY(180deg) translateZ(75px);
}

.flip-box .flank {
    width: 150px;
    height: 180px;
    left: 75px;
    background-color: #054285;
    -webkit-transform: rotateY(-90deg) translateZ(150px);
    -moz-transform: rotateY(-90deg) translateZ(150px);
    -ms-transform: rotateY(-90deg) translateZ(150px);
    -o-transform: rotateY(-90deg) translateZ(150px);
    transform: rotateY(-90deg) translateZ(150px);
}

.flip-box.flip-up .object:hover,
.flip-box.flip-up .object:focus {
    -webkit-transform: translateZ(-75px) rotateX(180deg);
    -moz-transform: translateZ(-75px) rotateX(180deg);
    -ms-transform: translateZ(-75px) rotateX(180deg);
    -o-transform: translateZ(-75px) rotateX(180deg);
    transform: translateZ(-75px) rotateX(180deg);
}

.flip-box.flip-up .back {
    -webkit-transform: rotateX(180deg) translateZ(75px);
    -moz-transform: rotateX(180deg) translateZ(75px);
    -ms-transform: rotateX(180deg) translateZ(75px);
    -o-transform: rotateX(180deg) translateZ(75px);
    transform: rotateX(180deg) translateZ(75px);
}

.flip-box.flip-up .flank {
    width: 100%;
    height: 150px;
    left: 0;
    top: 3px;
    -webkit-transform: rotateX(-90deg) translateZ(100px);
    -moz-transform: rotateX(-90deg) translateZ(100px);
    -ms-transform: rotateX(-90deg) translateZ(100px);
    -o-transform: rotateX(-90deg) translateZ(100px);
    transform: rotateX(-90deg) translateZ(100px);
}

.flip-box.alternative .front {
    background-color: #002f63;
}

.flip-box.alternative .back {
    background-color: #fff;
}

.flip-box.alternative .flank {
    background-color: #054285;
}

.flip-box .flip-content {
    padding: 30px 20px;
    color: #fff;
    text-align: center;
}

.flip-box .flip-content>img {
    width: 60px;
    height: auto;
    display: inline-block;
    margin-bottom: 15px;
}

.flip-box .flip-content a {
    color: #fff;
}

.flip-box .flip-content h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-weight: bold;
}

.flip-box .back .flip-content {
    padding: 15px;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
}

.flip-box .back .flip-content p {
    color: #fff;
    text-align: left;
}

.flip-box .back .flip-content ul {
    padding-left: 15px;
}

.flip-box .back .flip-content ul>li {
    list-style: disc;
    margin-bottom: 1px;
    text-align: left;
    color: #131313;
}

.no-csstransforms3d .flip-box .object {
    position: relative;
    overflow: hidden;
    -webkit-transform-style: none;
    -moz-transform-style: none;
    -ms-transform-style: none;
    -o-transform-style: none;
    transform-style: none;
}

.no-csstransforms3d .flip-box .object .back {
    top: 300px;
    z-index: 0;
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    transition-property: top;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.no-csstransforms3d .flip-box .object:hover .back {
    top: 0;
    z-index: 1;
}

.no-csstransforms3d .flip-box .flank {
    display: none;
}

.fcility_hm_sce .flip-box .flip-content>img {
    width: auto;
    max-width: inherit;
    height: 60px;
    margin: 25px 0;
}

.course_dedicte_hmm .flip-box .flip-content>img {
    width: 90px;
    height: auto;
    margin: 0;
    margin-bottom: 8px;
}

.filp_event_sec_box .fModuleTitle {
    text-align: center;
}

.filp_event_sec_box .fModuleTitle h3>small {
    display: block;
    font-size: 1rem;
    margin-top: 8px;
    padding: 0 20%;
    color: #888;
}

.filp_event_sec_box .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.filp_event_sec_box .row>div:nth-child(1) .flip-box .flank {
    background-color: #ff7000;
}

.filp_event_sec_box .row>div:nth-child(2) .flip-box .flank {
    background-color: #666;
}

.filp_event_sec_box .row>div:nth-child(3) .flip-box .flank {
    background-color: #00c6e9;
}

.filp_event_sec_box .row>div:nth-child(5) .flip-box .flank {
    background-color: #00c6e9;
}

.filp_event_sec_box .row>div:nth-child(6) .flip-box .flank {
    background-color: #666;
}

.filp_event_sec_box .row>div:nth-child(7) .flip-box .flank {
    background-color: #ff7000;
}

.center_con_design {
    text-align: center;
    background: var(--brand-color-navy-1);
}

.center_con_design h3,
.center_con_design p,
.center_con_design .fModuleTitle h3 {
    color: #fff !important;
}

.center_con_design .fModuleContent>div {
    padding: 0 15%;
}

.center_con_design .fModuleContent ul {
    display: flex;
    padding: 0;
    margin: 0;
    margin-top: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.center_con_design .fModuleContent ul>li {
    width: 32%;
    margin: 0;
    margin-right: 14px;
    list-style: none;
}

.center_con_design .fModuleContent ul>li:last-child {
    margin-right: 0;
}

.center_con_design .fModuleContent ul>li img {
    height: 70px;
    width: auto;
    max-width: inherit;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid #fff;
    border-radius: 100%;
}

.center_con_design .fModuleContent ul>li h4 {
    color: #fff;
    font-size: 1.4rem;
}

.center_con_design .fModuleContent ul>li a {
    color: #ddd;
    display: block;
}

.spacing-no {
    padding: 0 !important;
}

.fBanner ul.fGalleryList>li {
    overflow: hidden;
}

.fBanner ul.fGalleryList>li .fGalleryImage {
    display: block;
}

.fBanner ul.fGalleryList>li .fGalleryImage>img {
    width: 100%;
    height: auto;
}

.home_pop_up {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.4s;
}

body.is-home .home_pop_up.opn {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s;
}

.home_pop_up .fModuleContent {
    display: inline-block;
    background: #fff;
    overflow: hidden;
    border-radius: 15px;
    width: 500px;
}

.home_pop_up .fModuleContent:before {
    float: right;
    content: '\f00d';
    font-family: FontAwesome;
    color: #ccc;
    font-size: 2rem;
    cursor: pointer;
    margin-right: 20px;
}

.home_pop_up .fModuleContent a {
    display: inline-block;
    padding: 20px;
}

.home_pop_up .fModuleContent a>img {
    width: 100%;
    height: auto;
}

.thisis {
    display: inline-block;
    vertical-align: middle;
    height: 32px;
    background: url(../images/brush_bg.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover!important;
    padding: 7px 20px;
}

.slidem {
    overflow: hidden;
    text-align: center;
}

.slidem>div {
    color: #fff;
}


/*****************************************************/


/*                      Ricky                        */


/*****************************************************/

.zoom {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10 !important;
}

@media (max-width: 1600px) {
    .main_heading {
        text-align: center;
        position: absolute;
        top: 350px !important;
        right: 0;
        left: 0;
        color: #fff;
    }
    .main_heading h2 {
        margin: 45px 0 0 0;
    }
}

@media (max-width: 1400px) {
    .main_heading h2 {
        margin: 0px 0 0 0;
    }
}

@media (max-width: 1199px) {}

@media (max-width: 991px) {
    .slide2 {
        position: inherit;
        margin: 0px 0 0 0px;
        padding: 0 80px;
    }
    .slide1 {
        margin: 0px !important;
        padding: 0 80px 70px 80px !important;
    }
    .slide1 li {
        width: 16% !important;
    }
    /*
.slide1 {
    position: inherit;
    margin: 0px 0 0 0px;
    padding: 0 80px;
}
*/
    .bx-wrapper {
        margin: 0 auto !important;
    }
    footer#section-footer {
        height: 750px;
    }
    .icon {
        display: inline-block;
        margin: 0px 0 0 43px;
        bottom: 773px;
    }
    .ico {
        display: inline-block;
        float: left;
        margin-top: -436px;
        margin-left: 44px;
        font-size: 12px;
    }
    .con {
        height: 680px;
    }
    .icon li h3 a {
        font-size: 19px;
        color: #000;
    }
    .ico li h3 a {
        font-size: 19px !important;
        color: #000;
    }
}

@media (max-width: 767px) {
    .amc #section-banner {
        min-height: 449px;
        color: #fff;
        position: relative;
    }
    .small_box_dhes ul>li,
    .center_con_design .fModuleContent ul>li {
        width: 100%;
        flex: 0 0 100%;
        margin: 0;
        margin: 10px 0;
    }
    .center_con_design .fModuleContent>div {
        padding: 0;
    }
}

@media (max-width: 640px) {
    .membership_wrp li {
        text-align: center;
        width: 8% !important;
    }
    .membership_wrp h3 {
        font-size: 33px !important;
    }
    .adm h3 {
        font-size: 33px !important;
        letter-spacing: 1px;
        line-height: 29px;
    }
    footer#section-footer {
        height: auto;
    }
    .icon {
        bottom: 294px !important;
    }
    .wrp2 img {
        width: auto;
        float: left;
    }
    .wrp2 .fGalleryText {
        float: right;
        width: auto;
    }
    .wrp2 .fGalleryText {
        float: right;
        width: auto;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .con {
        height: 760px;
    }
    .slide1 {
        display: none;
    }
    .web strong {
        display: none;
    }
}

@media (max-width: 424px) {
    .con {
        height: 940px;
        background-size: cover;
    }
    .slide1 li {
        width: 16% !important;
    }
    .slide2 {
        position: inherit;
        margin: 0px 0 0 0px;
        padding: 0 10px;
    }
    .slide2 h3 a {
        color: #000;
        font-size: 16px;
    }
    .web strong {
        background: #fff !important;
        padding: 14px;
        line-height: 0;
    }
    .slide2 p {
        color: #000;
        font-size: 12px;
    }
    .ico li h3 a {
        font-size: 15px !important;
        color: #000;
    }
    .icon li h3 a {
        font-size: 15px;
        color: #000;
    }
    .amc #section-banner {
        min-height: 449px;
        color: #fff;
        position: relative;
    }
    .Banner2 .fGalleryText h5 {
        font-size: 24px;
    }
    .ico {
        display: inline-block;
        float: left;
        margin-top: -500px;
        margin-left: 44px;
        width: 70%;
    }
    .icon {
        width: 70%;
    }
    .icon {
        bottom: 414px !important;
    }
    header nav li {
        display: inline-block;
        text-align: center;
        width: auto;
        font-size: 12px;
        margin: 0 6px 0 0 !important;
    }
    #tabscontainer>#radiofortab1:checked~#tab-content1 {
        display: block;
        padding: 20px;
    }
    .slide2 .fGalleryText {
        display: inline-block;
        width: 100%;
        margin-top: 0;
        margin: 0 0 0 0px;
    }
    .slide2 img {
        display: none !important;
    }
    .web {
        text-align: center;
        margin: 0;
        padding: 20px 0 0 0 !important;
    }
    .main_heading {
        text-align: center;
        position: absolute;
        top: 320px;
        right: 0;
        left: 0;
        color: #fff;
    }
    .main_heading {
        font-size: 20px;
    }
    .video_box iframe {
        height: 260px;
    }
}

@media (max-width: 320px) {
    .con {
        height: 940px;
        background-size: cover;
    }
    .slide1 li {
        width: 16% !important;
    }
    .slide2 {
        position: inherit;
        margin: 0px 0 0 0px;
        padding: 0 10px;
    }
    .slide2 h3 a {
        color: #000;
        font-size: 16px;
    }
    .web strong {
        background: #fff !important;
        padding: 14px;
        line-height: 0;
    }
    .slide2 p {
        color: #000;
        font-size: 12px;
    }
    .Banner2 .fGalleryText h5 {
        font-size: 24px;
    }
    header nav li {
        display: inline-block;
        text-align: center;
        /* width: 16.66%; */
        font-size: 11px;
        text-transform: uppercase;
        transition: 0.5s all;
        margin: 0 6px 0 0 !important;
    }
    .membership_wrp h3 {
        font-size: 23px !important;
    }
    .adm h3 {
        font-size: 20px !important;
        letter-spacing: 1px;
        line-height: 29px;
    }
    .ico {
        display: inline-block;
        float: left;
        margin-top: -400px;
        margin-left: 44px;
        width: 80%;
    }
    .icon {
        width: 90%;
        bottom: 340px !important;
    }
    .main_heading {
        text-align: center;
        position: absolute;
        top: 320px;
        right: 0;
        left: 0;
        color: #fff;
    }
    .main_heading {
        font-size: 20px;
    }
    .video_box iframe {
        height: 260px;
    }
}

.job-listing li {
    display: inline-block;
    width: 100%;
}

.job-listing li a.fGalleryImage {
    display: block;
    text-align: center;
}

.job-listing li a.fGalleryImage img {
    max-width: 500px;
}

.job-listing li .fGalleryText {
    text-align: center;
}


/*.job-listing li .fGalleryText {
    width: 50%;
    float: left;
}*/

.job-listing .fModuleTitle h3,
.current-opening .fModuleTitle h3 {
    text-align: center;
}

.current-opening table {
    margin: 0 auto;
}

.current-opening table td,
.current-opening table th {
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
}

.current-opening table th {
    background: var(--brand-color-navy-1);
    color: #fff;
}

.current-opening table td a {
    color: var(--brand-color-navy-1);
    font-weight: 600;
    transition: 0.6s all;
}

.current-opening table td a:hover {
    color: #000;
}

.no-element #section-banner,
.no-element #region-header,
.no-element #section-footer {
    display: none;
}

#page-content .job-window .fModuleTitle h3 {
    color: var(--brand-color-navy-1);
    font-size: 1.5rem;
}

.job-window .box {
    border: 1px solid var(--brand-color-navy-1);
    margin-bottom: 20px;
}

.job-window .box h4 {
    color: #fff;
    background: var(--brand-color-navy-1);
    margin: 0;
    padding: 0.5rem;
}

.job-window .fButton {
    display: block;
    background: var(--brand-color-navy-1);
    color: #fff;
    transition: 0.6s all;
    text-align: center;
}

.job-window .fButton:hover {
    background: #fff;
    color: var(--brand-color-navy-1);
}


/*Accordion*/

.accordion {
    margin: 0 auto;
}

.accordion-item {
    position: relative;
}

.accordion-item.active .heading {
    color: #fff;
    background: var(--brand-color-navy-1);
}

.accordion-item:hover .heading {
    background: var(--brand-color-navy-1);
    color: #fff;
}

.accordion-item.active .accordion-icon:before {
    background: #fff;
}

.accordion-item.active .accordion-icon:after {
    width: 0;
}

.accordion-item .heading {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--brand-color-navy-1);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 1rem;
    transition: 0.3s ease-in-out;
    border-bottom: 1px solid #dadada;
}

@media (min-width: 40rem) {
    .accordion-item .heading {
        font-size: 1.2rem;
    }
}

.accordion-item .heading:hover .accordion-icon:before,
.accordion-item .heading:hover .accordion-icon:after {
    background: #fff;
}

.accordion-item .accordion-icon {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 3rem;
    height: 3rem;
    transform: translateY(-50%);
}

.accordion-item .accordion-icon:before,
.accordion-item .accordion-icon:after {
    content: "";
    width: 1.25rem;
    height: 0.25rem;
    background: var(--brand-color-navy-1);
    position: absolute;
    border-radius: 3px;
    left: 50%;
    top: 50%;
    transition: 0.3s ease-in-out;
    transform: translate(-50%, -50%);
}

.accordion-item .accordion-icon:after {
    transform: translate(-50%, -50%) rotate(90deg);
    z-index: -1;
}

.accordion-item .content {
    display: none;
}

.accordion-item .content p {
    margin-top: 0;
    padding-left: 1rem;
}

@media (min-width: 40rem) {
    .accordion-item .content {
        line-height: 1.75;
    }
}


/*Content List*/

.content-list-people .f-list-item-container {
    padding-bottom: 2rem;
}

.content-list-people .f-list-item-teaser-image a {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    margin-bottom: 1rem;
    display: block;
}

.content-list-people a {
    color: #000;
    font-weight: 600;
}

.content-list-people .f-list-item-teaser-image {
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.content-list-people .f-list-item-teaser-image img,
.content-list-people .f-list-item-teaser-image a img {
    transform: scale(1);
    transition: 0.6s all;
    max-width: 100%;
}

.content-list-people .f-list-item-container:hover img {
    transform: scale(1.1);
}

.content-list-people .fGalleryText h3 a {
    font-size: inherit;
}

.content-list-people .f-list-item-title,
.content-list-people .f-list-item-title a {
    font-size: 1.2rem;
    font-weight: 600;
}

.content-list-people .f-list-item-subtitle {
    font-size: 1rem;
}

.justify-center {
    justify-content: center;
}

.content-list-people.small-title .f-list-item-teaser-image img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    display: block;
}

.content-list-people.small-title .f-list-item-title {
    font-size: 1rem !important;
    font-weight: 500;
}

.content-list-people.small-title .f-list-item-subtitle {
    font-size: 0.8rem;
}

.content-list-people.small-title .f-list-item-container:hover img {
    transform: none;
}

.content-list-people.small-title .f-list-item {
    margin-left: 10px;
    margin-right: 10px;
}

.testi img {
    margin: 0 auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testi .fGalleryText {
    max-width: 900px;
    margin: 0 auto;
}

.testi .bx-wrapper .bx-controls-direction a {
    display: none;
}

.testi .bx-wrapper .bx-pager.bx-default-pager a {
    border-radius: 100%;
}

.testi .bx-wrapper .bx-pager.bx-default-pager a:hover,
.testi .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #dadada;
}


/**Test Page**/

.regi-pro .fModuleContent {
    padding-top: 81px;
    padding-bottom: 155px;
}

.mile li .fGalleryText {
    padding-left: 15px;
    border-left: 2px solid #e96702;
    transition: .6s all;
}

.mile li {
    padding: 0 !important;
    transform: scale(1);
    transition: .6s all;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.mile li:nth-child(even) {
    flex-direction: column-reverse;
    c
}

.mile li:hover {
    transform: scale(1.05);
}

.mile li:hover .fGalleryText {
    padding-left: 5px;
}

.mile img {
    max-height: 150px;
}

.mile .bx-wrapper .bx-prev {
    left: -65px;
}

.mile .bx-wrapper .bx-prev {
    right: -65px;
}

.testimony li {
    display: flex;
    align-items: center;
    justify-content: center;
}


/*.testimony li:nth-child(even) {
    flex-direction: row-reverse;
}*/

.testimony li .fGalleryText {
    padding: 0 10%;
}

.testimony li .fGalleryText i {
    display: block;
}

.track .track-item p {
    font-size: 0.9rem;
    margin-top: 0;
    font-style: italic;
}

.track .track-item h6 {
    margin-bottom: 0;
    font-size: 1rem;
}

.track .track-item {
    padding: 3em 2em 2em;
    position: relative;
    color: rgba(0, 0, 0, .7);
    border-left: 2px solid rgba(0, 0, 0, .3);
}

.track .track-item::before {
    content: attr(date-is);
    position: absolute;
    left: 2em;
    font-weight: bold;
    top: 1em;
    display: block;
    font-weight: 700;
    font-size: 0.785rem;
    color: #000;
    border-bottom: 1px solid #fd7e14;
}

.track .track-item::after {
    width: 10px;
    height: 10px;
    display: block;
    top: 1em;
    position: absolute;
    left: -7px;
    border-radius: 10px;
    content: '';
    border: 2px solid rgba(0, 0, 0, .3);
    background: white;
}

.track .track-item:last-child {
    -o-border-image: linear-gradient(to bottom, rgba(0, 0, 0, .3) 60%, rgba(0, 0, 0, 0)) 1 100%;
    border-image: linear-gradient(to bottom, rgba(0, 0, 0, .3) 60%, rgba(0, 0, 0, 0)) 1 100%;
}

.regi-pro ul,
.abstract ul {
    justify-content: center;
}

.regi-pro .fGalleryText {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    background: var(--brand-color-navy-1);
    color: #fff;
    padding: 15px;
    opacity: 0;
    transition: .6s all;
}

.regi-pro li:hover .fGalleryText {
    opacity: 1;
}

.regi-pro .fGalleryText:after {
    content: " ";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    border-top: none;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid var(--brand-color-navy-1);
}

.abstract a.fGalleryImage {
    display: none;
}

.abstract h3 {
    font-size: 1rem;
}

.abstract li .fGalleryText {
    height: 100%;
    border: 1px solid var(--brand-color-navy-1);
    border-radius: 5px;
    position: relative;
}

.abstract li .fGalleryText span {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
    width: 30px;
    border-radius: 100%;
    background: var(--brand-color-navy-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    -webkit-box-shadow: 0px 0px 13px -6px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 13px -6px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 13px -6px rgba(255, 255, 255, 1);
}

.abstract li .fGalleryText h3 {
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px 5px 0 0;
}

.abstract li .fGalleryText ul {
    padding: 10px;
    margin: 0;
}

.abstract li:nth-child(odd) .fGalleryText {
    border: 1px solid var(--brand-color-navy-1);
}

.abstract li:nth-child(odd) .fGalleryText h3 {
    background: var(--brand-color-navy-1);
}

.abstract li:nth-child(even) .fGalleryText {
    border: 1px solid #a24a07;
}

.abstract li:nth-child(even) .fGalleryText h3 {
    background: #a24a07;
}

.abstract li:nth-child(even) .fGalleryText span {
    background: #a24a07;
}

.registration-process .fGalleryImage img {
    max-height: 190px;
}

.registration-process h3 {
    font-size: 1.5rem;
}

.registration-process ul li {
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

.registration-process ul li p {
    margin: 0;
    position: relative;
    display: inline-block;
}

.registration-process .fGalleryText ul li p:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 100%;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
}

.registration-process .fGalleryItem:nth-child(even) {
    margin-top: 12%;
}

.registration-process .fGalleryItem:after {
    content: '';
    position: absolute;
    width: 73%;
    height: 3px;
    background: #fdd400;
    top: 37%;
    right: -40%;
    transform: rotate(29deg);
}

.registration-process .fGalleryItem:nth-child(2):after {
    top: 18%;
    right: -40%;
    transform: rotate(-29deg);
}

.registration-process .fGalleryItem:last-child:after {
    display: none;
}

.light-grey-bg {
    background: #f5f5f5;
}

.timeline {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 700px;
    position: relative;
}

.timeline__content-title {
    font-size: 2.5rem;
    margin: -10px 0 0 0;
    transition: 0.4s;
    padding: 35px 10px 0;
    box-sizing: border-box;
    color: #ff8111;
}

.timeline__content-desc {
    margin: 0;
    font-size: 1rem;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.7);
    padding: 0 10px;
}

.timeline:before {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    content: "";
    background: rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 767px) {
    .timeline:before {
        left: 40px;
    }
}

.timeline-item {
    padding: 40px 0;
    opacity: 0.3;
    filter: blur(2px);
    transition: 0.5s;
    box-sizing: border-box;
    width: calc(50% - 40px);
    display: flex;
    position: relative;
    transform: translateY(-80px);
}

.timeline-item:before {
    content: attr(data-text);
    letter-spacing: 3px;
    width: 100%;
    position: absolute;
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    border-left: 2px solid rgba(0, 0, 0, 0.5);
    top: 70%;
    margin-top: -5px;
    padding-left: 15px;
    opacity: 0;
    right: calc(-100% - 56px);
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
}

.timeline-item:nth-child(even):before {
    right: auto;
    text-align: right;
    left: calc(-100% - 56px);
    padding-left: 0;
    border-left: none;
    border-right: 2px solid rgba(0, 0, 0, 0.5);
    padding-right: 15px;
}

.timeline-item--active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.timeline-item--active:before {
    top: 50%;
    transition: 0.3s all 0.2s;
    opacity: 1;
}

.timeline-item--active .timeline__content-title {
    margin: -30px 0 20px 0;
}

@media only screen and (max-width: 767px) {
    .timeline-item {
        align-self: baseline !important;
        width: 100%;
        padding: 0 30px 150px 80px;
    }
    .timeline-item:before {
        left: 10px !important;
        padding: 0 !important;
        top: 50px;
        text-align: center !important;
        width: 60px;
        border: none !important;
    }
    .timeline-item:last-child {
        padding-bottom: 40px;
    }
}

.timeline__img {
    max-width: 90%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}

.timeline-container {
    width: 100%;
    position: relative;
    padding: 80px 0;
    transition: 0.3s ease 0s;
    background-attachment: fixed;
    background-size: cover;
}

.timeline-container:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fafafa;
    content: "";
}

.timeline-header {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-header__title {
    color: #000;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.timeline-header__subtitle {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    letter-spacing: 5px;
    margin: 10px 0 0 0;
    font-weight: normal;
}

.contact-us ul {
    padding: 0;
    margin: 0;
}

.contact-us ul li {
    margin: 0;
    padding: .5rem 0;
    list-style: none;
}

.contact-us ul li h4 {
    font-size: 1.3rem;
}

#page-content .fModule.contact-us {
    overflow: visible;
    /*padding: 2rem 2rem 8rem;
*/
}

.contact-us .map form {
    position: absolute;
    width: 55%;
    top: -9%;
    left: 50%;
    transform: translateX(-50%);
    background: #fdfdfd;
    padding: 1rem 1.5rem;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 16px -3px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 16px -3px rgb(0 0 0 / 75%);
}

.contact-us .map form input,
.contact-us .map form textarea {
    width: 100%;
    padding: .5rem;
    height: 45px;
}

.contact-us .map form textarea {
    height: auto;
}

.contact-us .map .fForm .buttons {
    padding-left: 0;
}

.contact-us .map .fForm .buttons input {
    width: 100%;
    background: var(--brand-color-navy-1);
    color: #fff;
}

.contact-us ul.social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: .5rem 0;
}

.contact-us ul.social li {
    padding: 0 0.5rem 0 0;
}

.contact-us ul.social li a {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: 7px;
    font-size: 1.3rem;
    color: #fff;
    transform: scale(1);
    transition: .5s all;
}

.contact-us ul.social li a:hover {
    transform: scale(1.2);
}

.amp-sec {
    padding: .5rem 0;
}

.content-type-9389 .f-content-container {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-type-9389 #page-title {
    display: block;
}

.content-type-9389 #page-title h1 {
    font-size: 1.4rem;
    line-height: 1.6;
}

.content-type-9389 #page-title span {
    font-size: 1.5rem;
    font-weight: 400;
}


/**********-----------------***********/

.path-blogs- #page-title {
    display: block;
}

.blogs_listingLayout img {
    width: 100%;
}

.blogs_listingLayout .f-list-item-container {
    padding: 14px 15px;
    background: #efefef;
    box-shadow: 0 5px 10px rgb(154 160 185 / 5%), 0 15px 40px rgb(166 173 201 / 20%);
    display: block;
    margin-bottom: 3vw;
    float: left;
    /*    height:810px;*/
}

.blogs_listingLayout .f-list-item-container .f-list-item-title a {
    text-transform: capitalize;
    text-shadow: none;
    font-size: 18px;
    font-weight: 600;
    padding-top: 28px;
    display: block;
    clear: both;
    position: relative;
    color: var(--brand-color-navy-1);
}

.blogs_listingLayout .f-list-item-container .f-list-item-teaser-content p {
    font-size: 13px;
}

.blogs_listingLayout .f-list-item-container .f-list-item-button a {
    color: #0f73b9;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0.2s;
    padding: 0;
    transition: all .3s ease-in 0.35s;
}

.blogs_listingLayout .f-list-item-container .f-list-item-button a:before,
.blogs_listingLayout .f-list-item-container .f-list-item-button a:after {
    content: '';
    background: var(--brand-color-navy-1);
    width: 150%;
    height: 100%;
    transform: translate3d(100%, 0, 0) skew( 20deg);
    transform-origin: 0 0;
    position: absolute;
    top: 0;
    left: -25%;
    z-index: -1;
    transition: transform 0.5s ease;
}

.blogs_listingLayout .f-list-item-container .f-list-item-button a:after {
    transform: translate3d(-100%, 0, 0) skew( 20deg);
    transform-origin: 100% 100%;
}

.blogs_listingLayout .f-list-item-container .f-list-item-button a i {
    margin-left: 5px;
    -webkit-transition: all .3s linear 0ms;
    -khtml-transition: all .3s linear 0ms;
    -moz-transition: all .3s linear 0ms;
    -ms-transition: all .3s linear 0ms;
    -o-transition: all .3s linear 0ms;
    transition: all .3s linear 0ms;
}

.blogs_listingLayout .f-list-item-button a:hover {
    color: #000000;
}

.blogs_listingLayout .f-list-item-button a:hover:before {
    transform: translate3d(-100%, 0, 0) skew( 20deg);
}

.blogs_listingLayout .f-list-item-button a:hover:after {
    transform: translate3d(100%, 0, 0) skew( 20deg);
}

.blogs_listingLayout .f-list-item-button a:hover i {
    margin-left: 10px;
}

.f-list-filter {
    margin-top: 3vw;
}

.f-list-filter a {
    border: 1px solid var(--brand-color-navy-1);
    padding: 6px;
    margin-left: 7px;
}

.f-list-filter .selected {
    background: #ff7303;
    color: white;
}

.f-list-filter a:hover {
    background: #ff7303;
    color: white;
}

.map img {}

.map {
    text-align: center;
    margin: 0 auto;
}

.map-ul ul {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    list-style-type: none;
}

.map-ul ul li:nth-child(1) {
    top: 68%;
    left: 77%;
    background: rgba(255, 255, 255, 0.8);
    transition: 0.5s ease;
    box-shadow: 0 8px 17px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    padding: 10px 15px 10px 15px;
    font-weight: 500;
    color: var(--brand-color-navy-1);
    font-size: 1rem;
    text-align: right;
    text-transform: uppercase;
}

p.font {
    font-weight: 400;
}

.map-ul ul li:nth-child(1):hover {
    background: #fff;
}

.map-ul ul li:nth-child(2):hover {
    background: #fff;
}

.map-ul ul li:nth-child(3):hover {
    background: #fff;
}

.map-ul ul li:nth-child(2) {
    text-align: right;
    top: 32%;
    right: 23%;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.8);
    transition: 0.5s ease;
    box-shadow: 0 8px 17px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    padding: 10px 15px 10px 15px;
    font-weight: 500;
    color: var(--brand-color-navy-1);
    font-size: 1rem;
    text-align: right;
}

.map-ul p {
    font-size: 12px !important;
    color: #000;
    text-align: right !important;
    margin: 0px !important;
}

.map-ul ul li:nth-child(3) {
    top: 54%;
    left: 43%;
    background: rgba(255, 255, 255, 0.8);
    transition: 0.5s ease;
    box-shadow: 0 8px 17px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    padding: 10px 15px 10px 15px;
    font-weight: 500;
    color: var(--brand-color-navy-1);
    font-size: 1rem;
    text-align: right;
    text-transform: uppercase;
}

.map .fModuleContent p {
    font-size: 18px;
    text-align: center;
}

.map .fModuleContent img {
    width: 70%;
    height: auto;
}

.map ul li {
    list-style: none;
    text-align: left;
    margin: 0;
    position: absolute;
}

.map {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: right;
}

.map-location {
    text-align: center;
}

.map-ul {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: right;
}


/*responsive-css*/

@media (max-width: 1199px) {
    .map-ul ul li:nth-child(2) {
        top: 26%;
        border-top: #fff !important;
    }
    .map-ul ul li:nth-child(3) {
        top: 63%;
        left: 37%;
        border-top: #fff !important;
    }
    .map-ul ul li:nth-child(1) {
        border-top: #fff !important;
    }
}

@media (max-width: 992px) {
    .map-ul {
        position: relative;
    }
    .map ul li {
        position: relative;
        text-align: center;
    }
    .map-ul ul li:nth-child(1) {
        box-shadow: none;
        border-top: 1px solid #ccc;
        text-align: center;
        left: 0;
    }
    .map-ul ul li:nth-child(2) {
        box-shadow: none;
        border-top: 1px solid #ccc;
        text-align: center;
        right: 0;
    }
    .map-ul ul li:nth-child(3) {
        box-shadow: none;
        border-top: 1px solid #ccc;
        text-align: center;
        left: 0;
    }
    .map-ul ul {
        display: flex;
        border-bottom: 1px solid #ccc;
        border-top: 1px solid #ccc;
    }
    .map-ul p {
        text-align: center !important;
    }
    .map-ul p {
        font-size: 10px !important;
    }
}

@media (max-width: 780px) {
    .map .fModuleContent img {
        width: 100%;
    }
    .map-ul {
        position: static;
    }
    .map ul li {
        position: static;
    }
    .map-ul ul li:nth-child(1) {
        box-shadow: none;
        text-align: center;
    }
    .map-ul ul li:nth-child(2) {
        box-shadow: none;
        border-top: 1px solid #ccc !important;
        text-align: center;
    }
    .map-ul ul li:nth-child(3) {
        box-shadow: none;
        border-top: 1px solid #ccc !important;
        text-align: center;
    }
    .map-ul p {
        text-align: center !important;
    }
    .map-ul ul {
        display: block;
    }
}

.content-list-mini .f-list-item-teaser-content {
    display: none;
}

.fboxy-wrapper {
    height: 80%;
    max-width: 900px;
    width: 100%
}

img.team-img {
    -webkit-box-shadow: 4px 4px 11px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 4px 4px 11px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 11px 0px rgba(0, 0, 0, 0.2);
    width: 90%;
}

.team-boxy {
    margin: -1rem;
}


/* timeline scetion starts here */

.f-tabs-timeline .fModuleTitle {
    padding-bottom: 0;
    margin-bottom: 0;
}

.f-tabs-timeline .fModuleTitle h3 {
    margin-bottom: 0;
    text-align: center;
}

.f-tabs-timeline .fModuleContent ul {
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 0;
}

.f-tabs-timeline .fModuleContent ul>li {
    margin: 0;
    padding: 1rem;
    list-style: none;
}

.f-tabs-timeline .fModuleContent ul>li>a {
    font-weight: 600;
    color: var(--brand-color-orange-1);
}

.f-tabs-timeline .fModuleContent ul>li>a.inactive {
    color: var(--brand-color-navy-1);
}

.f-timeline-section {
    padding-top: 1rem!important;
    position: relative;
}

.f-timeline-section .fModuleTitle {
    width: fit-content;
    margin: 0 auto 0rem auto;
    display: block;
    position: relative;
    top: -10px;
    padding-bottom: .5rem;
    background-color: white;
    z-index: 9;
}

#page-content .f-timeline-section .fModuleTitle h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0;
    color: #666!important;
    margin-top: 2rem!important;
}

.f-timeline-section .line {
    height: 0;
    width: 3px;
    border-radius: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2rem;
    background-color: var(--brand-color-navy-1);
    transition: height 1s ease-in-out;
    z-index: 8;
    display: inline-block;
    align-content: center;
}

.f-timeline-section::after {
    height: 100%;
    content: "";
    width: 7px;
    border-radius: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-image: url("https://storage.unitedwebnetwork.com/files/486/Dot Line_280174.png");
    background-position: center;
    background-repeat: repeat-y;
    background-size: auto;
}

.f-timeline-section .row {
    position: relative;
}

.f-timeline-section .row .col-12 {
    padding: 0rem 2rem;
    position: relative;
}

.f-timeline-section .row .col-12 .item {
    height: fit-content;
    padding: 0 1rem;
    position: relative;
    z-index: 9;
    background-color: white;
    opacity: 0;
}

.f-timeline-section .row .col-12 .item.animate__ {
    opacity: 1;
}

.f-timeline-section .row .col-12:nth-child(odd) {
    text-align: end;
}


/* .f-timeline-section .row .col-12:nth-child(odd)::after {
    content: "";
    width: 70px;
    height: 3px;
    background-color: #666;
    position: absolute;
    right: 0px;
    top: .5rem;
    z-index: -1;
    transition: all 1s;
    opacity: 0;
    visibility: hidden;
} */


/* .f-timeline-section .row .col-12.active:nth-child(odd)::after {
    opacity: 1;
    visibility: visible;
} */

.f-timeline-section .row .col-12:nth-child(even) {
    margin-top: 5rem;
    margin-bottom: 0rem;
}

.f-timeline-section .row .col-12 .event-name {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--brand-color-navy-1);
    font-weight: 600;
}

.f-timeline-section .row .col-12 .organiser {
    font-size: .9rem;
    margin-top: 0;
    color: var(--brand-color-navy-1);
    margin-bottom: .1rem;
    font-weight: 500;
    font-style: italic;
}

.f-timeline-section .row .col-12 .venue {
    display: block;
    font-size: .9rem;
    color: var(--brand-color-navy-1);
    font-weight: 300;
    position: relative;
}

.f-timeline-section .row .col-12 .venue::before {
    content: "\f3c5";
    font-family: "FontAwesome";
    margin-right: 5px;
}

.f-timeline-section .row .col-12 .attendees {
    display: block;
    color: var(--brand-color-orange-1);
    font-weight: 500;
}

.f-timeline-section .row .col-12 .dot {
    scale: 0;
    transition: all 1s;
}

.f-timeline-section .row .col-12.active .dot {
    scale: 1;
}

.f-timeline-section .row .col-12:nth-child(odd) .dot {
    position: absolute;
    right: -12px;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    background-color: white;
    z-index: 9;
    border: 1px solid var(--brand-color-orange-1);
    padding: 2px;
}

.f-timeline-section .row .col-12:nth-child(odd) .dot span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--brand-color-orange-1);
    border-radius: 500px;
}

.f-timeline-section .row .col-12:nth-child(even) .dot {
    position: absolute;
    left: -12px;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    background-color: white;
    z-index: 9;
    border: 1px solid var(--brand-color-navy-1);
    padding: 2px;
}

.f-timeline-section .row .col-12:nth-child(even) .dot span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--brand-color-navy-1);
    border-radius: 500px;
}

@media(max-width:991.9px) {
    .f-timeline-section .row .col-12 .dot {
        display: none;
    }
    .f-timeline-section::after {
        content: unset;
    }
    .f-timeline-section .line {
        display: none!important;
    }
    .f-timeline-section .row .col-12 {
        margin-top: 2rem!important;
        margin-bottom: 0!important;
        padding: 0 0;
    }
    .f-timeline-section .row .col-12:nth-child(odd) {
        text-align: start;
    }
}


/* timeline section ends here */