@import url(aniamtions.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0px;
    box-shadow: none;
}

::-webkit-scrollbar-track {
    box-shadow: none;
}

::-webkit-scrollbar-thumb {
    box-shadow: none;
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: none;
}

h1 {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}


body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.main_page {
    width: 100vw;
    position: relative;
}

header {
    width: 100vw;
    height: 139px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 10;
    transition: height 1s;
}

.fix_header {
    height: 110px;
}

.fix_header .logo img {
    width: 170px;
}

.main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    border-top: 18px solid #D2222A
}

.redLine {
    width: 100%;
    height: 18px;
    background-color: #D2222A;
}

.menu {
    width: 465px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu li {
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: #D2222A !important;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.main a.logo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main a.logo img {
    width: 219px;
    height: 82px;
}

.flex {
    width: 100%;
    max-width: 1366px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.section1 {
    width: 100%;
    height: 100vh;
    max-height: 1080px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../img/sec1_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #22408F;
    color: white;
    position: relative;
    overflow: hidden;
    /*    padding: 62px 0 0;*/
}

.section1 .blue_circle {
    border-radius: 50%;
    width: 100vh;
    max-width: 800px;
    height: 100vh;
    max-height: 800px;
    background-color: #20639B;
    position: absolute;
    z-index: 0;
    /*    top: 139px;*/
    animation: grow_up 1.3s ease-in-out forwards;
}

.section1 .flex {
    justify-content: center;
    padding: 139px 0 0;
}

.section1 .text_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section1 .text_content div {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section1 .text_content .animate_text {
    bottom: 4vw;
    position: absolute;
    min-height: 100px;
}

.section1 h3 {
    font-family: 'Museo700';
    font-size: 2.6vw;
    text-align: center;
}

.section1 h1 {
    font-size: 7.3vw;
    text-align: center;
    line-height: 1.2;
}

.section1 .red_bg {
    font-weight: bold;
    font-size: 1.7vw;
    text-align: center;
    text-transform: uppercase;
    color: white;
    background-color: #D2222A;
    padding: 0 11px;
    width: fit-content;
    margin: 10px auto 0;
}

.section1 .text {
    font-size: 1.7vw;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.ml4 {
    position: relative;
}

.ml4 .letters {
    width: 100%;
    position: absolute;
    left: 0;
    opacity: 0;
}

.section2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 75px 0;
    font-size: 46px;
    font-weight: bold;
    text-transform: lowercase;
}

.section2 p {
    max-width: 713px;
    text-align: center;
}

.section2 span {
    color: white;
    padding: 0 11px;
    width: fit-content;
}

.section2 .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin: 20px 0 20px;
}

.section2 svg line {
    stroke: #C13633;
    stroke-width: 6;
    stroke-linecap: round;
}

.section2 .big_svg {
    margin: 3px 0;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
}

.aos-animate .big_svg {
    animation: dash 0.4s ease-in-out 1 forwards;
    animation-delay: 0.4s;
}

.aos-animate .small {
    animation: dash .2s ease-in-out 1 forwards;
    animation-delay: 0.2s;
}

.section2 .small {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
}

.section2 .small:last-of-type {
    animation-delay: 1s;
}


.container2 .small {
    animation-delay: 1.5s;
}

.container2 .big_svg {
    animation-delay: 1.7s;
}

.container2 .small:last-of-type {
    animation-delay: 2.3s;
}

.container3 .small {
    animation-delay: 2.7s;
}

.container3 .big_svg {
    animation-delay: 2.9s;
}

.container3 .small:last-of-type {
    animation-delay: 3.5s;
}

.container4 .small {
    animation-delay: 4s;
}

.container4 .big_svg {
    animation-delay: 4.2s;
}

.container4 .small:last-of-type {
    animation-delay: 4.8s;
}

.container5 .small {
    animation-delay: 5.3s;
}

.container5 .big_svg {
    animation-delay: 5.5s;
}

.container5 .small:last-of-type {
    animation-delay: 6.1s;
}



.aos-animate .animP {
    opacity: 0;
    animation: fadeIn .5s ease-in-out 1 forwards;
}

[data-aos=fade-up] {
    transform: translate3d(0, 0, 0) !important;
}

.section3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-image: url(../img/sec3_bg.png);
    background-position: 50% 71%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #00B1A3;
    color: white;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    padding: 48px 0 85px;
}

.section3 p {
    margin: 33px 0 54px;
}

.video_box {
    width: 768px;
    height: 432px;
    border: 8px solid #417976;
}

.video_box iframe {
    width: 100%;
    height: 100%;
}

.video_box .ytp-large-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 68px;
    height: 48px;
    margin-left: -34px;
    margin-top: -24px;
    -webkit-transition: opacity .25s cubic-bezier(0, 0, 0.2, 1);
    transition: opacity .25s cubic-bezier(0, 0, 0.2, 1);
    z-index: 63;
}

.section4 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../img/sec4_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #22408F;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 130px 0;
}

.section4 .flex {
    justify-content: center;
}

.section4 h1 {
    position: relative;
    z-index: 1;
    width: 690px;
    line-height: 1.3;
}

.section4 .blue_circle {
    border-radius: 50%;
    width: 400px;
    height: 400px;
    background-color: #20639B;
    position: absolute;
    z-index: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
}

.section4 .blue_circle_animate {
    animation: grow_up 1.3s ease-in-out forwards;
}

.section4 .chief_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 50px 0 0;
}

.section4 .chief_img {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/Headshots/IMG_0930.png);
    margin: 0 24px 0 0;
}

.section4 .chief_text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.section4 .name {
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
}

.section4 .position {
    font-size: 15px;
    width: 100%;
    text-align: left;
}

.section5 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 50px 0 66px;
}

.section5 h1 {
    color: #D2222A;
}

.section5 .box_all {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 0 0;
}

.mob {
    display: none;
}

.section5 .box {
    width: 273px;
    margin: 0 37px 21px;
}

.section5 .box h1 {
    color: white;
}

.section5 .circle_icon {
    border-radius: 50%;
    background-color: #22408F;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto -48px;
    width: 96px;
    height: 96px;
    position: relative;
    z-index: 1;
}

.section5 .circle_icon .icon1 {
    max-width: 53px;
    max-height: 60px;
}

.section5 .circle_icon .icon2 {
    max-width: 67px;
    max-height: 55px;
}

.section5 .circle_icon .icon3 {
    max-width: 48px;
    max-height: 55px;
}

.section5 .circle_icon .icon4 {
    max-width: 58px;
    max-height: 52px;
}

.section5 .circle_icon .icon5 {
    max-width: 49px;
    max-height: 60px;
}

.section5 .circle_icon .icon6 {
    max-width: 70px;
    max-height: 61px;
}

.section5 .text_box {
    width: 100%;
    height: 273px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 0 27px;
    background: rgb(0, 99, 160);
    background: linear-gradient(90deg, #eab330 50%, rgb(0, 99, 160) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}

.box.aos-animate .text_box {
    animation: 1.3s change_bg .2s ease-in-out forwards;
}

.section5 .text_box p {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.section5 .box4 {
    transition-delay: 3.1s !important;
}

.section5 .box4 .circle_icon {
    transition-delay: 3.4s !important;
}

.section5 .box5 {
    transition-delay: 4.1s !important;
}

.section5 .box5 .circle_icon {
    transition-delay: 4.4s !important;
}

.section5 .box6 {
    transition-delay: 5.1s !important;
}

.section5 .box6 .circle_icon {
    transition-delay: 5.4s !important;
}

.section5 .box4 .text_box {
    animation-delay: 3.2s;
}

.section5 .box5 .text_box {
    animation-delay: 4.2s;
}

.section5 .box6 .text_box {
    animation-delay: 5.2s;
}

.content1 {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    position: relative;
}

.main1 {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2000px;
    margin-right: 10px;
    background: #ccc;
    background: linear-gradient(to bottom, #eeeeee 0%, #B7EAE0 100%);
}

.side {
    display: flex;
    align-items: center;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
    width: 100%;
    height: 140px;
    color: #fff;
    background: #30b298;
}

.side2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    /*    position: absolute;*/
    bottom: 10px;
    width: 100%;
    height: 140px;
    color: #fff;
    background: #30b298;
}


.section6 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.section6 .flex {
    max-width: 100%;
}

.section6 .sec_header {
    width: 100%;
    color: white;
    background-color: #297B77;
    display: flex;
    justify-content: center;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    z-index: 1;
    padding: 25px 0;
}

.section6 .slider_box {
    display: none;
}

.section6 .scroll_content {
    flex: 1 0 auto;
    width: 100%;
    height: auto;
    min-height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section6 .scroll_section {
    width: 868px;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.section6 .left_scroll {
    height: 2187px;
    width: 50%;
    float: left;
    background: white;
    background-size: 434px;
    background-image: url(../img/img_goes_down.png);
    font-size: 20px;
    box-sizing: border-box;
    text-align: center;
    font-weight: bold;
    position: relative;
    background-attachment: fixed;
}

.section6 .right_scroll {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.section6 .img {
    width: 100%;
    height: 243px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section6 .fixed_block {
    width: 470px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: sticky;
    top: calc(210px + 3%);
    right: 100px;
    margin: 0 auto;
}

.section6 .fixed_block_mobile {
    display: none;
}

.section6 .bg_box {
    width: 100%;
    height: 27px;
    margin: 10px 0 0;
    background-image: url(../img/red_dots.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section6 .text_box {
    width: 100%;
    height: 400px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #3CAEA3;
    position: relative;
}

.section6 .text_box p {
    font-size: 27px;
    font-family: 'Museo700';
    text-align: center;
    width: 86%;
}

.section6 .text_box span {
    font-size: 46px;
    font-weight: bold;
    background-color: #357B77;
    padding: 0 10px;
    margin: 30px 0 10px;
    width: fit-content;
    line-height: 1.4;
}

.section6 .text_box span.animation {
    animation: fade_In_ 2s ease-in-out;
}

.section6 .text_box span.animation2 {
    animation: fade_In_ 2s ease-in-out;
}

.section6 .text_box span.animation3 {
    animation: fade_In_ 2s ease-in-out;
}

.section6 .text_box span.animation4 {
    animation: fade_In_ 2s ease-in-out;
}

@keyframes fade_In_ {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.section6 .text_box .tittle_scroll {
    font-size: 22px;
    font-weight: 600;
}

.section6 .text_scroll {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.section8 {
    width: 100%;
    height: 830px;
    color: #D2222A;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section8 .flex {
    justify-content: center;
    background-image: url(../img/sec7_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section8 h1 {
    width: 32%;
    line-height: 1.3;
    padding: 40px 0 0;
}

.scroll_dRaw {
    width: 100%;
    background-color: #22408F;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 50px 0;
    color: white;
}

.scroll_dRaw .flex {
    padding: 0 100px;
}

.scroll_dRaw .sec_header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    z-index: 1;
    margin: 0 0 25px;
    padding: 15px 0 15px;
    background-color: #22408F;
}

.scroll_dRaw .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 27px;
    font-weight: 600;
    color: white;
}

.scroll_dRaw .t_cont {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll_dRaw .t_cont img {
    width: 27px;
}

.scroll_dRaw .text h4 {
    font-size: 46px;
    font-weight: bold;
    background-color: #D2222A;
    padding: 0 10px;
    margin: 0 6px;
}

.scroll_dRaw .scroll_content {
    flex: 1 0 auto;
    width: 100%;
    height: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.scroll_dRaw .first {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto 0 0;
}

#svg {
    margin: 0 0 0 16%;
}

#pin2 {
    width: 100%;
}

.scroll_dRaw .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -110px 0 0;
}

.scroll_dRaw .row2 {
    flex-direction: row-reverse;
    margin: -95px 0 0 0;
    padding: 0 75px 0 0;
}

.scroll_dRaw .row3 {
    margin: -30px 0 0;
    padding: 0 0 0 38px;
}

.scroll_dRaw .nj {
    width: 426px;
    margin: 0 0 0 -25px;
}

.scroll_dRaw .map {
    width: 594px;
    margin: 0 -55px 0 0px;
}

.scroll_dRaw .globe {
    width: 316px;
    margin: 0 0 0 -25px;
}

.scroll_dRaw .Trd {
    width: 81%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin: 30px 0 0;
}

.scroll_dRaw .Frd {
    width: 64%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 30px auto 0;
}

.section9 {
    width: 100%;
    background-color: #00B1A3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 65px 0 100px;
    color: white;
}

.section9 h1 {
    line-height: 1.3;
}

.section9 .content {
    width: 100%;
    height: 456px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0 0;
}

.section9 .parallax_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.section9 .img {
    width: 564px;
    height: 456px;
    margin: 0 -24px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.section9 .content:nth-of-type(2) .img {
    margin: 0 0 0 -24px;
}

.section9 .text_box {
    width: 594px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #191919;
    font-size: 18px;
    padding: 45px 60px;
    position: relative;
    z-index: 1;
}

.section9 .text_box2 {
    margin: 55px 0 0;
}

.section9 .text_box3 {
    margin: 106px 0 0;
}

.section9 h3 {
    color: #D2222A;
    font-size: 27px;
    font-family: 'Museo700';
}

.section9 .line {
    width: 62px;
    height: 6px;
    border-radius: 6px;
    background-color: #E2B44D;
    margin: 35px 0 45px;
}

.section10 {
    width: 100%;
    background-color: #297B77;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 65px 0 70px;
    color: white;
}

.section10 .slider_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 75px 0 0;
}

.section10 h1 {
    line-height: 1.3;
}

.section10 .owl-carousel {
    width: 73%;
}


.section10 .owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0 0;
}

.section10 .owl-carousel button.owl-dot {
    background: transparent;
    color: inherit;
    border: 5px solid #F1D570;
    padding: 0 !important;
    font: inherit;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    margin: 0 7px;
}

.section10 .owl-carousel button.active {
    background: #F1D570;
    color: inherit;
    padding: 0 !important;
    font: inherit;
}

.section10 .owl-carousel button.owl-dot:active,
.section10 .owl-carousel button.owl-dot:focus {
    outline: none;
}

.section10 .slide_item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0 5px;
}

.section10 .slide_item .img_client {
    width: 273px;
    height: 273px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*    margin: 0 -20px 0 0;*/
    position: absolute;
    left: 0;
}

.section10 .slide_item .textbox_content {
    background-color: #00B1A3;
    padding: 65px 73px 65px 196px;
    width: 86%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 0 auto;
}

.section10 .slide_item .quote {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.section10 .slide_item .quote img {
    width: 25px;
    position: absolute;
}

.section10 .slide_item .quote img.left_quote {
    top: 4px;
    left: -35px;
}

.section10 .slide_item .quote img.right_quote {
    bottom: 0;
}

.section10 .slide1 .quote img.right_quote {
    right: 28%;
}

.section10 .slide_item span {
    font-family: 'Catamaran', sans-serif;
    color: #F6D55C;
    font-size: 81px;
    position: absolute;
    line-height: 1.3;
}

.section10 .slide_item span:first-of-type {
    top: -14px;
    left: -38px;
}

.section10 .slide_item span:last-of-type {
    margin: 0 0 0 5px;
}

.section10 .slide2 .quote img.right_quote {
    right: 58%;
}

.section10 .slide3 .quote img.right_quote {
    right: -3%;
}

.section10 .slide4 .quote img.right_quote {
    right: -2%;
}

.section10 .slide5 .quote img.right_quote {
    right: 71%;
}

.section10 .slide6 .quote img.right_quote {
    right: 49%;
}

.section10 .slide_item .text {
    font-size: 27px;
    font-family: 'Museo700';
    position: relative;
}

.section10 .slide_item .name {
    font-size: 17px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    margin: 35px 0 0;
    text-transform: uppercase;
}

.section10 .slide_item .position {
    font-size: 15px;
    width: 100%;
    text-align: left;
}

.section10 .owl-nav {
    width: 120%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 34%;
    left: -100px;
    z-index: 10;
}

.section10 .owl-carousel .owl-nav button.owl-next,
.section10 .owl-carousel .owl-nav button.owl-prev {
    width: 26px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/arrow_l.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.section10 .owl-carousel .owl-nav button.owl-next {
    background-image: url(../img/arrow_r.png);
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-prev:focus,
.owl-carousel .owl-nav button.owl-next:active,
.owl-carousel .owl-nav button.owl-prev:active {
    outline: none;
}


.section11 {
    width: 100%;
    height: 433px;
    position: relative;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}

.section11 .parallax__container {
    clip: rect(0, auto, auto, 0);
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -100;
}

.section11 .parallax {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.section12 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 80px;
}

.section12 h1 {
    color: #D2222A;
    margin: 0 0 70px;
    line-height: 1.3;
    max-width: 710px;
}

.section12 p {
    color: #191919;
    font-size: 22px;
    margin: 0 0 40px;
    max-width: 768px;
}

.section12 p:last-of-type {
    margin: 0;
}

.section13 {
    width: 100%;
    height: 433px;
    position: relative;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}

.section13 .parallax__container {
    clip: rect(0, auto, auto, 0);
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -100;
}

.section13 .parallax {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.section14 {
    width: 100%;
    height: calc(100vh - 110px);
    max-height: 1080px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #22408F;
    color: white;
    position: relative;
    overflow: hidden;
}

.section14 .flex {
    justify-content: center;
    align-items: center;
}

.section14 .logo {
    width: 225px;
    height: 73px;
}

.section14 .blue_circle {
    border-radius: 50%;
    width: 110vh;
    height: 110vh;
    background-color: #20639B;
    position: absolute;
    z-index: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
}

.section14 .blue_circle_animate {
    animation: grow_up 1.3s ease-in-out forwards;
}

.section14 .text_content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.section14 h1 {
    font-size: 70px;
    line-height: 1.2;
}

.section14 h3 {
    font-size: 35px;
    font-family: 'Museo700';
    margin: 15px 0 0;
}

.section14 .title {
    font-size: 12px;
    max-width: 55%;
}

.section14 .adress {
    font-size: 16px;
    font-weight: 600;
    margin: 40px 0 10px;
}

.section14 .title a {
    text-decoration: underline;
    color: white;
    cursor: pointer;
}

.section14 img {
    width: 225px;
    margin: 40px 0 30px;
}

.section7 {
    width: 100%;
}

.section7 .sec_footer {
    width: 100%;
    color: white;
    background-color: #22408F;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
    /*    position: sticky;*/
    z-index: 10;
    top: 0;
}

.panel {
    /*    height: 100%;*/
    width: 100%;
}

#pinContainer {
    width: 100%;
    height: calc(100vh - 110px) !important;
    overflow: hidden;
}

.panel {
    height: calc(100vh - 210px);
    width: 100%;
    position: absolute;
    z-index: 4;
}


.section7 .slide {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section7 .slide2 {
    z-index: 3;
}

.section7 .slide3 {
    z-index: 2;
}

.section7 .slide4 {
    z-index: 1;
    right: 0;
    height: calc(100vh - 210px);
    position: absolute;
}

.section7 .content {
    width: 96%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 90px 30px 90px 90px;
}

.section7 .title_box {
    width: 336px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.section7 .title_box h1 {
    color: white;
    font-size: 56px;
    font-weight: bold;
    text-align: left;
}

.section7 .title_box span {
    color: #F6D55C;
    font-size: 35px;
    font-family: 'Museo700';
}

.section7 .slide1 .title_box span,
.section7 .slide2 .title_box span {
    color: #EAB330;
}

.section7 .clm_box {
    width: 640px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.section7 .clm {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    font-size: 27px;
    font-family: 'Museo700';
    margin: 0 0 60px;
}

.section7 .clm p {
    width: 64%;
}

.section7 .clm .img {
    width: 87px;
    margin: 0 15px 0 0;
}

.section7 .slide1 .img2 {
    width: 63px;
    margin: 0 24px 0 0;
}

.section7 .slide1 .img3 {
    width: 69px;
    margin: 0 33px 0 0;
}

.section7 .slide1 .img4 {
    width: 70px;
    margin: 0 17px 0 0;
}

.section7 .slide1 .img5 {
    width: 70px;
    margin: 0 33px 0 0;
}

.section7 .slide2 .img1 {
    width: 73px;
    margin: 0 30px 0 0
}

.section7 .slide2 .img2 {
    width: 82px;
    margin: 0 23px 0 0;
}

.section7 .slide2 .img3 {
    width: 63px;
    margin: 0 28px 0 10px;
}

.section7 .slide3 .img1 {
    /*    width: 73px;*/
    margin: 0 18px 0 0
}

.section7 .slide3 .img2 {
    /*    width: 87;*/
    margin: 0 18px 0 0;
}

.section7 .slide3 .img3 {
    width: 64px;
    margin: 0 31px 0 10px;
}

.section7 .slide4 .img1 {
    width: 78px;
    margin: 0 22px 0 0
}

.section7 .slide4 .img2 {
    width: 70px;
    margin: 0 23px 0 0;
}


.section7 .clm img {
    max-width: 100%;
    width: auto;
}

.section7 .tab {
    width: 4%;
    height: 100%;
    background-image: url(../img/red_dot_triang.png);
    background-position: 37% 98%;
    background-repeat: no-repeat;
    background-size: 73%;
    color: white;
    font-size: 17px;
    font-weight: bold;

    padding: 53px 0;

}

.section7 .tab p {
    transform: translate3d(0px, 11px, 0px) rotate(90deg);
}

.section7 .slide2 .tab p:last-of-type {
    transform: translate3d(0px, 90px, 0px) rotate(90deg);
}

.section7 .slide2 .img3 {
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.section7 .slide1 .tab p:last-of-type {
    transform: translate3d(0px, 75px, 0px) rotate(90deg);
}

.section7 .large {
    height: 500vh;
    flex: 1 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.section7 .stiky {
    width: 100%;
    height: calc(100vh - 110px);
    /*
   
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    top: 110px;
*/
}

#svg2 {
    transform: rotate(180deg);
}

#svg3 {
    transform: rotate(180deg);
}

#reveal1,
#reveal2,
#reveal3,
#reveal4,
#reveal5,
#reveal6,
#reveal1m,
#reveal2m,
#reveal3m,
#reveal4m,
#reveal5m,
#reveal6m {
    opacity: 0;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

/*.scroll_dRaw .globe*/

#reveal1.visible,
#reveal2.visible,
#reveal3.visible,
#reveal4.visible,
#reveal5.visible,
#reveal6.visible,
#reveal1m.visible,
#reveal2m.visible,
#reveal3m.visible,
#reveal4m.visible,
#reveal5m.visible,
#reveal6m.visible {
    opacity: 1;
}

.svg_an {
    width: 100%;
    position: relative;
}

.mobile_sec {
    display: none;
}

#reveal5 .t_cont {
    margin: 35px 0 0;
}
