:root {
    --pink: #FB449C;
    --white: #FFFFFF;
    --blue: rgba(87, 198, 238, 0.79);
    --water: #4B6DB9;
    --darkblue: #0d2647;
    --container-width: 1140px;
    --side-indent: calc(((100vw - var(--container-width)) / 2 ) + 15px);
}
html {
    scroll-behavior: smooth;
}
.hidden {
    clip: rect(0 0 0 0);  clip-path: inset(50%);  height: 1px;  overflow: hidden;  position: absolute;  white-space: nowrap;  width: 1px;
}

.container { position: relative; margin: 0 var(--side-indent); max-width: 1140px;}
.container-small {max-width: 1000px;}

img {
    width: 100%; height: auto}





@font-face {
    font-family: 'Raleway';
    src: url('/wp-content/themes/union/fonts/Raleway-Thin.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Raleway-500';
    src: url('/wp-content/themes/union/fonts/Raleway-Medium.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Raleway-700';
    src: url('/wp-content/themes/union/fonts/Raleway-Bold.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Raleway-900';
    src: url('/wp-content/themes/union/fonts/Raleway-Black.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'RockSalt';
    src: url('/wp-content/themes/union/fonts/RockSalt-Regular.woff2') format('woff2');
    font-display: swap;
}

html {
    overflow-x: hidden;
    margin: 0;
}
body {
    overflow-x: hidden;
    font-family: Raleway-500;
    color: var(--darkblue);
    margin: 0;
}

.cta-link {
    display: inline-block;
    font-size: 32px;
    line-height: 32px;
    padding: 25px 45px;
    margin: 30px 0;
    border: 3px solid var(--pink);
    color: var(--pink);
    font-family: Raleway-700;
    text-decoration: none;
    transition: all .24s ease;
}
.cta-link:hover,
.cta-link:focus {
    background: var(--pink);
    color: #fff;
}

.cta-link--white {
    border-color: #fff;
    color: #fff;
}
.cta-link--white:hover,
.cta-link--white:focus {
    background: #fff;
    color: var(--pink);
}

@media (max-width: 1440px) {
    :root {
        --container-width: 1140px;
        --container-width: 1190px;
    }
}
@media (max-width: 1200px) {
    :root {
        --container-width: 990px;
    }
}
@media (max-width: 992px) {
    :root {
        --container-width: 720px;
    }

    .cta-link {
        font-size: 28px;
    }
}
@media (max-width: 769px) {
    :root {
        --container-width: 540px;
    }
    .cta-link {
        font-size: 26px;
    }
}
@media (max-width: 576px) {
    .container {
        margin: 0 24px;
    }
    :root {
        --side-indent: 24px;
    }

    .cta-link {
        font-size: 24px;
        padding: 20px 45px;
    }
}
@media (max-width: 321px) {
    .container {
        margin: 0 20px;
    }

    .cta-link {
        padding: 20px 35px;
        font-size: 22px;
    }
}

/*ZAG HERO SECTION*/
.zag-hero {
    display: flex;
    background: #0D2647;
    color: #fff;
    position: relative;
    width: 100vw;
}
.zag-hero:before {
    content: '#ZAGConf23';
    color: var(--darkblue);
    font-size: 36px;
    position: absolute;
    top: 47vw;
    font-family: 'Raleway-700';
    left: 2vw;
    z-index: 2;
}
.zag-hero-november.zag-hero:before {
    content: '#ZAGConf24';

}
.zag-hero:after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 60px;
    bottom: 0; left: 0;
    z-index: 0;
    background: #57C6EE;
}

.zag-hero_img {
    width: 50%;
    min-width: 50%;
    position: relative;
    z-index: 1;


    display: flex;
    align-items: center;
    padding-bottom: 60px;
}
.zag-hero_img:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 100px;
    bottom: 20px;
    right: 10px;
    background: url('/wp-content/themes/union/img/ZAG-images/blue-lines.svg') no-repeat;
    background-size: contain;
    transform: rotate(-10deg);
}
.zag-hero_img img {
    width: 100%;
}

/*Hero Info*/
.zag-hero_info {
    padding: 61px 40px 80px 120px;
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}
.zag-hero_info:before,
.zag-hero_info:after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-size: contain !important;
    background: url('/wp-content/themes/union/img/ZAG-images/zag-V.svg') no-repeat;
    top: -67px;
    right: -30px;
    transform: rotate(170deg);
}
.zag-hero_info:after {
    background: url('/wp-content/themes/union/img/ZAG-images/zag-G.svg') no-repeat;
    top: unset;
    bottom: -34px;
    right: -10px;
    transform: rotate(91deg);
    z-index: 2;
}

.zag-hero_info img {
    width: 240px;
    width: 415px;
    height: auto;
    margin-left: -15px;
}
.zag-hero_info h2 {
    display: flex;
    flex-direction: column;
    margin: 50px 0 40px 0;
    font-size: 64px;
    line-height: 74px;
    font-family: Raleway;
}
.zag-hero_info h2 span{
    color: #FB449C;
    display: block;
    font-family: RockSalt;
    font-size: 44px;
    line-height: 70px;
    font-weight: 100;
    text-transform: uppercase;
}

.zag-hero_info h3 {
    display: flex;
    flex-direction: column;
    font-size: 40px;
    color: #57C6EE;
    margin-top: 0;
    font-family: Raleway;
}
.zag-hero_info h3 span {
    color: #4B6DB9;
    font-family: Raleway-900;
}

.zag-date-location-info {
    margin-top: 60px;
    margin-bottom: 0;
    font-family: Raleway;
    font-size: 26px;
    line-height: 36px;
}
.scroll-to-main {
    margin-top: 40px;
}
.scroll-to-main svg {
    transition: all .43s ease;
    stroke: #fff;
}
.scroll-to-main:hover svg {
    stroke: var(--pink);
    animation: bounce 1.4s .6s linear infinite;
}
@keyframes bounce {
    0%   { transform: scale(1,1)      translateY(0); }
    10%  { transform: scale(1.1,.9)   translateY(0); }
    30%  { transform: scale(.9,1.1)   translateY(12px); }
    50%  { transform: scale(1.05,.95) translateY(0); }
    57%  { transform: scale(1,1)      translateY(6px); }
    64%  { transform: scale(1,1)      translateY(0); }
    100% { transform: scale(1,1)      translateY(0); }
}

.zdl-location {
    display: block;
    margin-top: 5px;
}

/**** zag-hero-february Banner ****/
.zag-hero-february {
    position: relative;
}
.reg-for-zag-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(15deg);
    z-index: 99;
    max-width: 1200px;
    width: 90%;
}
@media (max-width: 586px) {
    .reg-for-zag-banner {
        top: 41%;
        transform: translate(-50%,-50%) rotate(12deg);
        width: 95%;
    }
}

/**** Summary section ****/
.section-summary {
    background: #57C6EE;
    padding: 120px 0;
    position: relative;
    font-family: Raleway-700;
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 120px;
    margin-bottom: 80px;
}
.section-summary:before,
.section-summary:after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-size: contain !important;
    background: url('/wp-content/themes/union/img/ZAG-images/zag-G.svg') no-repeat;
    bottom: -90px;
    left: 40px;
}
.section-summary:after  {
    width: 120px;
    height: 120px;
    left: unset;
    right: -20px;
    bottom: -65px;
    background: url('/wp-content/themes/union/img/ZAG-images/blue-lines-triangle.svg') no-repeat;
}
@media (max-width: 1200px) {
    .section-summary {
        background: #57C6EE;
        padding: 80px 0 100px 0;
        font-size: 28px;
        line-height: 38px;
    }
    .section-summary:before{
        width: 120px;
        height: 120px;
        bottom: -52px;
        left: -19px;
    }
    .section-summary:after {
        width: 80px;
        height: 80px;
        right: 82px;
        bottom: -19px;
    }
}
@media (max-width: 992px) {
    .section-summary {
        background: #57C6EE;
        padding: 80px 0;
        font-size: 26px;
        line-height: 36px;
    }
    .section-summary:before {
        width: 80px;
        height: 80px;
        bottom: -29px;
    }
    .section-summary:after {
        right: -36px;
        bottom: -19px;
    }
}
@media (max-width: 769px) {
    .section-summary {
        font-size: 24px;
        line-height: 34px;
    }
}
@media (max-width: 586px) {
    .section-summary {
        margin-bottom: 40px;
    }
}



/*Zag 2 styles*/
.zag-hero_info h2.zag2-title {
    color: var(--water);
    font-family: Raleway-900;
    font-size: 90px;
    line-height: 100px;
    margin: 50px 0 60px 0;
}
.zag-hero_info h2.zag2-title span {
    font-family: Raleway;
    color: #57C6EE;
    font-weight: 600;
    font-size: 60px;
    line-height: 65px;
    text-transform: lowercase;
}

.zag2-reg-cta {
    font-family: Raleway-700;
    font-size: 38px;
    line-height: 42px;
    color: var(--darkblue);
    background: var(--pink);
    padding: 12px 30px;
    border-radius: 1px;
    text-decoration: none;
    border: 2px solid var(--pink);
    position: relative;
    transition: all .24s ease;
}
.zag2-reg-cta:is(:hover,:focus) {
    background: var(--darkblue);
    color: var(--pink);
}


.sub-section-summary {
    margin-top: -80px;
    background: transparent;
    /* color: #fff; */
    padding: 100px 0;
}
.sub-section-summary p {
    margin: 0 auto;
    font-family: Raleway-700;
    font-size: 32px;
    line-height: 48px;
    color: var(--darkblue);
}

.sub-section-summary p a {
    color: var(--darkblue);
    background-image: linear-gradient(90deg, var(--pink) 50%, var(--darkblue) 50%);
    background-size: 200% 3px;
    background-position: 100% bottom;
    background-repeat: no-repeat;
    transition: all .24s ease;
    text-decoration: none;
}
.sub-section-summary p a:is(:hover,:focus) {
    color: var(--pink);
    background-position: 0% bottom;
    background-size: 200% 3px;
}




@media (max-width: 1440px) {
    .zag-hero_img {
        width: 48%;
        min-width: 48%;
    }
    .zag-hero_info {
        padding: 21px 40px 80px 60px;
        /*width: 55%;*/
    }
}
@media (max-width: 1200px) {
    .zag-hero_info img {
        width: 370px;
    }

    .zag-hero_img:after {
        content: '';
        position: absolute;
        width: 200px;
        height: 100px;
        bottom: 41px;
        left: 50px;
    }

    .zag-hero_info h2 {
        font-size: 54px;
    }

    .zag-hero_info h2 span {
        font-size: 36px;
    }

    .zag-hero_info h3 {
        font-size: 36px;
    }

    .zag-date-location-info {
        margin-top: 20px;
        font-size: 24px;
    }

    .zag-hero_info:after {
        width: 160px;
        height: 160px;
    }

    .zag-hero_info h2.zag2-title {
        font-size: 73px;
        line-height: 94px;
    }

    .zag-hero_info h2.zag2-title span {
        font-size: 50px;
        line-height: 50px;
    }

    .zag2-reg-cta {
        font-size: 32px;
        line-height: 35px;
        padding: 10px 26px;
    }
}
@media (max-width: 1100px) {
    .zag-hero_img {
        width: 42%;
        min-width: 42%;
    }
    .zag-hero_img:after {
        bottom: 21px;
        left: -45px;
    }

    .zag-hero:before {
        font-size: 26px;
        top: 54vw;
    }
}
@media (max-width: 992px) {

    .zag-hero:after {
        display: none;
    }
    .zag-hero_img {
        width: 100%;
        height: 100%;
        min-width: unset;
        position: absolute;
        opacity: .07;
        pointer-events: none;
    }
    .zag-hero_img img {
        height: 100%;
        object-fit: cover;
    }
    .zag-hero_info {
        width: 100%;
        padding: 0;
        margin: 60px var(--side-indent);
    }
    .zag-hero_info:before {
        width: 160px;
        height: 160px;
        top: -100px;
        right: -133px;
    }
    .zag-hero_info:after {
        width: 140px;
        height: 140px;
        bottom: -133px;
    }

    .zag-hero:before {
        font-size: 26px;
        top: calc(100% + 30px);
        left: var(--side-indent);
    }

    .zag-hero_info img {
        width: 419px;
    }
}
@media (max-width: 769px) {
    .zag-hero_info h2 {
        font-size: 48px;
        line-height: 60px;
    }
    .zag-hero_info h2 span {
        font-size: 32px;
        line-height: 60px;
    }
    .zag-hero_info h3 {
        font-size: 32px;
    }
    .zag-hero_info:after {
        width: 100px;
        height: 100px;
        bottom: -102px;
        right: -38px;
    }
}
@media (max-width: 586px) {
    .zag-hero_info {
        margin: 10px var(--side-indent) 40px;
    }
    .zag-hero_info img {
        width: 180px;
    }
    .zag-hero_info img {
        width: calc(100% - 49px);
    }
    .zag-hero_info:before {
        display: none;
    }
    .zag-hero_info h2 {
        font-size: 42px;
        line-height: 52px;
        margin:40px 0 50px 0;
    }
    .zag-hero_info h2 span {
        font-size: 26px;
    }

    .scroll-to-main {
        margin-top: 20px;
    }

    .zag-hero_info h2.zag2-title {
        font-size: 50px;
        line-height: 62px;
        margin: 40px 0 19px 0;
    }
    .zag-hero_info h2.zag2-title span {
        font-size: 34px;
        line-height: 34px;
        margin-bottom: 30px;
    }
    .zag2-reg-cta {
        font-size: 26px;
        line-height: 30px;
        padding: 8px 16px;
        margin-bottom: 30px;
    }
}



/**** Our Speakers section ****/
.section-speakers {
    margin: 120px 0;
}
.section-title {
    font-family: Raleway-900;
    font-size: 48px;
    line-height: 56px;
    color: var(--water);
    margin-bottom: 40px;
}
.section-txt {
    max-width: 1000px;
    font-size: 26px;
    line-height: 36px;
    font-family: Raleway-500;
    margin-bottom: 40px;
}

.speakers-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 140px
}
.speakers-item {
    /*margin: 0 auto;*/
    /*width: 26%;*/
    text-decoration: none;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.speaker-item-img {
    position: relative;
}
.speaker-item-img:after {
    content: 'Read More';
    position: absolute;
    top: 50%; left: 50%;
    transform-origin: center;
    transform: translate(-50%,-50%) scale(0);
    font-family: RockSalt;
    font-size: 30px;
    overflow: hidden;
    font-weight: bolder;
    display: flex;
    justify-content:  center;
    align-items: center;
    width: 70%; height: 70%;
    background: rgba(255, 255, 255, 0.7);
    color: var(--darkblue);
    border-radius: 50%;
    transition: all .23s linear;
}
.speakers-item:hover .speaker-item-img:after{
    transition: all .4s cubic-bezier(0.34, 0.17, 0, 0.91);
    transform: translate(-50%,-50%) scale(1);
}

.speakers-item_modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    z-index: 98;
}
.sm-opened {
    display: block;
}

.speakers-item_modal:before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0, .3);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.speakers-item_modal-cnt {
    position: relative;
    z-index: 99;
    width: 100%;
    max-width: 600px;
    height: auto;
    background: #fff;
    padding: 30px 30px 40px 40px;
    border-radius: 20px;
    border: 5px solid var(--blue);
}

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
}
.modal-close svg{
    transition: all .3s ease;
    stroke: var(--darkblue);
    width: 28px; height: 28px;
}
.modal-close svg:hover {
    stroke: var(--pink);
}

.speakers-item_modal-header {
    display: flex;
    align-items: center;
}
.speakers-item_modal-header img {
    width: 120px;
    margin-right: 40px;
}
.speakers-item_modal-header h3 {
    font-size: 32px;
    line-height: 42px;
    color: var(--water);
}

.modal-text-cnt {
    position: relative;
    font-size: 22px;
    line-height: 34px;
    font-family: Raleway-500;
    max-height: 280px;
    overflow-y: scroll;
    margin: 20px 0;
    padding-right: 20px;
}
.modal-text-cnt::-webkit-scrollbar {
    width: 3px;
}
.modal-text-cnt::-webkit-scrollbar-track {
    background: #F4F4F4;
}
.modal-text-cnt::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border-radius: 20px;
    border: 0px solid #fff;
}

.speakers-item h3 {
    text-align: center;
    font-size: 24px;
    line-height: 34px;
    font-weight: normal;
    color: #4B6DB9;
    position: relative;
    transition: all .3s ease-out;
}
.speakers-item:hover h3,
.speakers-item:focus h3 {
    color: var(--pink);
}
.speakers-item p {
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    font-family: Raleway-500;
    color: var(--darkblue);
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 42px;
        line-height: 52px;
    }
    .section-txt {
        font-size: 24px;
        line-height: 34px;
    }
    .speakers-items {
        gap: 60px 120px
    }
}
@media (max-width: 1200px) {
    .section-title {
        font-size: 38px;
        line-height: 48px;
    }

    .section-txt {
        font-size: 22px;
        line-height: 32px;
    }

    .speakers-items {
        gap: 60px 100px
    }

    .speaker-item-img:after {
        display: none;
    }

    .modal-text-cnt {
        max-height: 360px;
    }

    .speakers-item_modal {
        width: 100%;
    }
    .speakers-item_modal-cnt {
        max-width: 600px;
        margin: 0 auto;
    }
    .speakers-item_modal-header img {
        width: 100px;
        margin-right: 30px;
    }
    .speakers-item_modal-header h3 {
        font-size: 28px;
        line-height: 38px;
    }
    .modal-text-cnt {
        font-size: 20px;
        line-height: 30px;
    }
}
@media (max-width: 769px) {
    .section-title {
        font-size: 32px;
        line-height: 42px;
    }
    .section-txt {
        font-size: 24px;
        line-height: 34px;
    }
    .speakers-items {
        gap: 60px
    }
    .speakers-item h3 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    .speakers-item p {
        font-size: 18px;
        line-height: 28px;
        margin-top: 0;
    }

    .speakers-item_modal-cnt {
        max-width: 428px;
        margin: 0 auto;
    }
}
@media (max-width: 586px) {
    .section-speakers {
        margin: 80px 0;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .section-txt {
        margin-bottom: 60px;
        font-size: 20px;
        line-height: 30px;
    }

    .speakers-items {
        grid-template-columns: 1fr;
    }
    .speakers-item_modal {
        width: 100vw;
        height: 100vh;
    }
    .sm-opened {
        display: flex;
        align-items: center;
    }
    .speakers-item_modal-cnt {
        max-width: calc(100% - 100px);
        margin: 20px auto;
        padding: 20px 25px;
        height: 100%;
        max-height: 85vh;
        display: flex;
        flex-direction: column;
    }
    .speakers-item_modal-header {
        align-items: baseline;
        flex-direction: column;
    }
    .speakers-item_modal-header {
        align-items: baseline;
        flex-direction: column;
    }
    .speakers-item_modal-header h3 {
        font-size: 24px;
        line-height: 34px;
        margin: 10px 0;
    }
    .modal-text-cnt {
        max-height: unset;
        flex-grow: 1;
    }
    .modal-text-cnt {
        font-size: 19px;
        line-height: 29px;
    }
    .speaker-item-img {
        position: relative;
        max-width: 80%;
        margin: 0 auto;
    }
}



/**** Benefits (What to expect) section ****/
.section-benefits {
    background: var(--darkblue);
    position: relative;
    padding: 200px 0;
    margin-top: 220px;
}
.section-benefits .section-title{
    color: var(--blue);
}
.section-benefits .section-txt {
    color: #fff;
}
.benefits-dec-img {
    position: absolute;
    top: -60px;
    left: -40px;
    width: 220px;
    height: 220px;
    object-fit: contain;
}
.benefits-dec-img:nth-of-type(1) {
    transform: rotate(122deg);
    top: -96px;
}
.benefits-dec-img:nth-of-type(2) {
    left: 30%;
    top: -92px;
    width: 190px;
    height: 190px;
    transform: rotate(310deg);
}
.benefits-dec-img:nth-of-type(3) {
    left: 60%;
    width: 90px;
    height: 90px;
    top: -10px;
}
.benefits-dec-img:nth-of-type(4) {
    left: 89%;
    top: -53px;
}
.benefits-bottom-img {
    position: absolute;
    left: 50%;
    bottom: -80px;
    width: 160px;
    height: 160px;
    transform: translateX(-50%);
}

/*Hiding the benefits items*/
.benefits-items {
    /*display: none;*/
}

@media (max-width: 1200px) {
    .section-benefits {
        padding: 160px 0;
        margin-top: 200px;
    }
    .benefits-dec-img:nth-of-type(1) {
        transform: rotate(122deg) scale(.8);
    }
    .benefits-dec-img:nth-of-type(2) {
        transform: rotate(310deg) scale(.7);
    }
    .benefits-dec-img:nth-of-type(3) {
        top: -35px;
        transform: scale(.9);
    }
    .benefits-dec-img:nth-of-type(4) {
        left: 84%;
        top: -112px;
        transform: scale(.7);
    }
    .benefits-bottom-img {
        transform: translateX(-50%) scale(.7);
    }
}
@media (max-width: 992px) {
    .section-benefits {
        padding: 120px 0 140px 0;
        margin-top: 180px;
    }
    .benefits-dec-img:nth-of-type(2) {
        display: none;
    }
    .benefits-dec-img:nth-of-type(3) {
        display: none;
    }
    .benefits-dec-img:nth-of-type(4) {
        transform: scale(.5);
    }
}
@media (max-width: 769px) {
    .section-benefits {
        padding: 100px 0 120px 0;
        margin-top: 140px;
    }
    .benefits-dec-img:nth-of-type(1) {
        transform: rotate(122deg) scale(.6);
        left: -75px;
    }
    .benefits-dec-img:nth-of-type(4) {
        left: unset;
        right: -15px;
        width: 82px;
        height: 81px;
        top: -26px;
        transform: scale(1);
    }
}
@media (max-width: 586px) {
    .section-benefits {
        padding: 80px 0;
        margin-top: 100px;
    }
    .benefits-bottom-img {
        bottom: 0;
        width: 80px;
        height: 80px;
    }
}


/**** FAQs section ****/
.section-faqs {
    background: var(--darkblue);
    padding: 180px 0;
    color: #fff;
}
.faqs-title {
    font-size: 48px;
    line-height: 56px;
    color: var(--pink);
    font-weight: normal;
    text-transform: uppercase;
    font-family: RockSalt;
    margin-bottom: 60px;
}

.faqs-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 65px;
}
.faqs-item h3 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 25px;
    font-family: Raleway;
    color: var(--blue);
}
.faqs-item p {
    font-size: 20px;
    line-height: 28px;
    font-family: Raleway-500;
}
.faqs-item p a {
    color: var(--pink);
    text-decoration: none;
}
.faqs-item p a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .section-faqs {
        padding: 140px 0;
    }
    .faqs-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 40px;
    }

    .faqs-items {
        grid-gap: 10px 45px;
    }
}
@media (max-width: 769px) {
    .section-faqs {
        padding: 120px 0;
    }
    .faqs-title {
        font-size: 34px;
        line-height: 46px;
        margin-bottom: 30px;
    }
    .faqs-items {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 586px) {
    .section-faqs {
        padding: 40px 0 80px 0;
    }
    .faqs-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }
    .faqs-items {
        grid-gap: 20px;
    }
    .faqs-item h3 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    .faqs-item p {
        font-size: 19px;
    }
}


/**** Contact us section ****/
.section-contactus {
    background: #fff;
    padding: 200px 25px 140px 25px;
    padding: 40px 25px 140px 25px;
    position: relative;
    color: var(--darkblue);
    text-align: center;
}
.section-contactus h2 {
    max-width: 680px;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    font-family: Raleway-900;
    margin: 0 auto;
    color: #4B6DB9;
    margin-bottom: 50px;
}

.contactus-dec-img {
    position: absolute;
    top: -70px;
    left: 10%;
    width: 200px;
    height: 200px;
}
.contactus-dec-img:nth-of-type(1) {
    top: -110px;
    width: 240px;
    height: 240px;
}
.contactus-dec-img:nth-of-type(2) {
    left: calc(90% - 200px);
    transform: rotate(64deg);
}
.contactus-dec-img:nth-of-type(3) {
    top: 85%;
    width: 180px;
    height: 180px;
}
.contactus-dec-img:nth-of-type(4) {
    top: 90%;
    left: calc(90% - 100px);
    width: 120px;
    height: 120px;
    transform: rotate(-15deg);
}

@media (max-width: 1200px) {
    .section-contactus h2 {
        font-size: 36px;
        line-height: 48px;
    }
    .contactus-dec-img:nth-of-type(1),
    .contactus-dec-img:nth-of-type(3){
        transform: scale(.8);
    }
    .contactus-dec-img:nth-of-type(2) {
        transform: scale(.8) rotate(64deg);
    }
    .contactus-dec-img:nth-of-type(4) {
        transform: scale(.8) rotate(-15deg);
    }
}
@media (max-width: 769px) {
    .section-contactus h2 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 10px;
    }
    .contactus-dec-img:nth-of-type(1) {
        transform: scale(.6);
        left: 20px;
        top: -111px;
    }
    .contactus-dec-img:nth-of-type(2) {
        left: calc(90% - 150px);
        transform: scale(.6) rotate(64deg);
    }
    .contactus-dec-img:nth-of-type(4) {
        transform: scale(.6) rotate(-15deg);
    }
}
@media (max-width: 586px) {
    .section-contactus {
        background: #fff;
        padding: 40px 0px 100px 0px;
    }
    .section-contactus h2 {
        font-size: 26px;
        line-height: 36px;
    }
    .contactus-dec-img:nth-of-type(1) {
        transform: scale(.4);
        left: -100px;
    }
    .contactus-dec-img:nth-of-type(2) {
        left: calc(90% - 100px);
        transform: scale(.5) rotate(64deg);
        top: -93px;
    }
    .contactus-dec-img:nth-of-type(3) {
        transform: scale(.5);
        left: -70px;
    }
    .contactus-dec-img:nth-of-type(4) {
        left: 85%;
    }
}
@media (max-width: 321px){
    .section-contactus {
        padding: 120px 0px 80px 0px;
    }
    .section-contactus h2 {
        font-size: 22px;
        line-height: 32px;
    }
}


/**** UNION logo section ****/
.section-logo {
    padding: 160px 0;
    background: #57C6EE;
    text-align: center;
}
.union-logo {
    display: inline-block;
    width: 260px;
    height: auto;
}



/**** Newsletter section ****/
.section-newsletter {
    padding: 120px 0;
    background: var(--darkblue);
    text-align: center;
}

.section-newsletter h2 {
    font-size: 30px;
    line-height: 42px;
    font-family: RockSalt;
    font-weight: normal;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
}
.section-newsletter h2 span {
    color: var(--pink);
    font-size: 48px;
    display: inline-block;
    transform: translate(4px, 5px);
}
@media (max-width: 321px){
    .union-logo {
        transform: scale(0.8);
    }
}


@media (max-width: 769px){
    .section-newsletter h2 {
        transform: scale(.8);
    }
}
@media (max-width: 589px){
    .section-newsletter {
        padding: 100px 0;
    }
    .section-newsletter h2 {
        line-height: 52px;
        transform: scale(.9);
    }
}
@media (max-width: 321px){
    .section-newsletter {
        padding: 80px 0;
    }
    .section-newsletter h2 {
        font-size: 26px;
        transform: scale(1);
    }
    .section-newsletter h2 span {
        font-size: 36px;
    }
}
