﻿#dH1 {
    position: absolute;
    margin-left: -2000px;
}

.owl-carousel {
    display: none;
    width: 100%;
}

    .owl-carousel .owl-stage:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0
    }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        -webkit-transform: translate3d(0,0,0)
    }

    .owl-carousel .owl-item {
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-touch-callout: none
    }

    .no-js .owl-carousel, .owl-carousel.owl-loaded {
        display: block;
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block
    }

.owl-1 .owl-nav {
    width: 100%;
    position: absolute;
    top: 50%;
}

    .owl-1 .owl-nav .owl-next,
    .owl-1 .owl-nav .owl-prev {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 55px;
        height: 55px;
        top: 50%;
        border: 1px solid #fff;
        border-radius: 50%;
        cursor: pointer;
        display: none;
    }

    .owl-1 .owl-nav .owl-next {
        right: 40px;
        background: transparent url("../../images/next.svg") no-repeat scroll center center;
        background-size: auto 20px;
        transition: ease .3s;
    }

        .owl-1 .owl-nav .owl-next:hover {
            border: 1px solid #383838;
            background-color: #1a1a1a;
            transition: ease .3s;
        }

    .owl-1 .owl-nav .owl-prev {
        left: 40px;
        background: transparent url("../../images/prev.svg") no-repeat scroll center center;
        background-size: auto 20px;
        transition: ease .3s;
    }

        .owl-1 .owl-nav .owl-prev:hover {
            border: 1px solid #383838;
            background-color: #1a1a1a;
            transition: ease .3s;
        }

.owl-1 .owl-dots {
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
    display: none;
}

    .owl-1 .owl-dots .owl-dot {
        background: none;
        display: inline-block;
        border: none;
        padding: 0;
        cursor: pointer;
    }

        .owl-1 .owl-dots .owl-dot > span {
            display: inline-block;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            margin: 3px 0;
            transform: scale(0.4);
            -webkit-transform: scale(.8);
            background: #fff;
        }

        .owl-1 .owl-dots .owl-dot.active > span {
            width: 3px;
            height: 3px;
            opacity: 1;
            box-shadow: 0 0 0 2px rgba(255,255,255,1);
            border: 5px solid #000;
            border-radius: 50%;
            background: transparent;
            background-color: #fff;
        }

.sldCon {
    position: relative;
    width: 100%;
    /*- Bu kısım video eklendikten sonra değiştirildi
      - Projeyi başka yerde kullanman gerekirse ana sayfadaki videoyu çıkarıp yükselik ayarını da aşağıdaki gibi yarparsın (Yani videoyu çıkarıp açıklama satırını tekrar aktif etmen yeterli.)*/
    /*min-height: 100vh;*/
    margin-top: 65px;
}

.sld {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 50px;
}

.sldCen {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1435px;
    padding: 0 55px;
    box-sizing: border-box;
    transition: ease .3s;
}

.sldTxAllCon {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 40px 150px 0 50px;
    box-sizing: border-box;
}

.sldBs {
    font-family: original-light;
    font-size: 72px;
    line-height: 1.1;
    color: #41A7D8;
}

    .sldBs a {
        color: #235897;
    }

.sldTxCon {
    display: flex;
    margin-top: 40px;
}

.sldTxLn {
    max-width: 80px;
    min-width: 80px;
    height: 1px;
    margin-right: 50px;
    border-top: 1px solid #41A7D8;
}

.sldTx {
    margin-top: -15px;
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

.sldBtnCon {
    display: flex;
    align-items: center;
    width: max-content;
    margin-top: 30px;
}

.sldBtn {
    display: flex;
    align-items: center;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

    .sldBtn:hover {
        opacity: .7;
        transition: ease .3s;
    }

.sldBtnIco {
    display: block;
    height: 35px;
    margin-right: 15px;
}

.pgDwnA {
    width: max-content;
    margin-top: 80px;
    margin-left: -50px;
}

.pgDwn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    border: 1px solid #235897;
}

.pgDwnIcn {
    height: 13px;
    -webkit-animation: wheel-up-down 4s infinite;
    animation: wheel-up-down 4s infinite;
    -moz-animation: wheel-up-down 4s infinite;
}

@-webkit-keyframes wheel-up-down {
    0%,40%,50%,60%,to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    45% {
        -webkit-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem);
    }

    55% {
        -webkit-transform: translateY(-0.75rem);
        transform: translateY(-0.75rem);
    }
}

@keyframes wheel-up-down {
    0%,40%,50%,60%,to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    45% {
        -webkit-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem);
    }

    55% {
        -webkit-transform: translateY(-0.75rem);
        transform: translateY(-0.75rem);
    }
}

@-moz-keyframes wheel-up-down {
    0%,40%,50%,60%,to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    45% {
        -webkit-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem);
    }

    55% {
        -webkit-transform: translateY(-0.75rem);
        transform: translateY(-0.75rem);
    }
}

.sldImgCon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 75vh;
    border-radius: 0 0 100vw 100vw;
    overflow: hidden;
}

.sldImg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sldLn {
    width: 1px;
    height: 200px;
    border-left: 1px solid #41A7D8;
    margin-left: 50px;
}




.videoBgConDf {
    display: flex;
    justify-content: center;
    width: 100%;
    margin:80px 0 120px 0;
    padding: 0 15px;
    box-sizing: border-box;
}

.videoBgDf {
    max-width: 900px;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 5px;
    background: url(../../images/line-bg.png) no-repeat center center;
    background-size: 250%;
}

    .videoBgDf img {
        width: 100%;
    }





.sldTwCon {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin-top: 65px;
}

.sldTw {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 50px;
}

.sldTwCen {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1435px;
    padding: 0 55px;
    box-sizing: border-box;
    transition: ease .3s;
}

.sldTwTxAllCon {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 40px 120px 0 50px;
    box-sizing: border-box;
}

.sldTwBs {
    font-family: original-light;
    font-size: 72px;
    line-height: 1.1;
    color: #41A7D8;
}

    .sldTwBs a {
        color: #235897;
    }

.sldTwTxCon {
    display: flex;
    margin-top: 40px;
}

.sldTwTxLn {
    max-width: 50px;
    min-width: 50px;
    height: 1px;
    margin-right: 30px;
    border-top: 1px solid #41A7D8;
}

.sldTwTx {
    margin-top: -15px;
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

.sldTwBtnCon {
    display: flex;
    align-items: center;
    width: max-content;
    margin-top: 30px;
}

.sldTwBtn {
    display: flex;
    align-items: center;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

    .sldTwBtn:hover {
        opacity: .7;
        transition: ease .3s;
    }

.sldTwBtnIco {
    display: block;
    height: 35px;
    margin-right: 15px;
}

.sldTwPgDwnA {
    width: max-content;
    margin-top: 80px;
    margin-left: -50px;
}

.sldTwPgDwn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    border: 1px solid #235897;
}

.sldTwPgDwnIcn {
    height: 13px;
    -webkit-animation: wheel-up-down 4s infinite;
    animation: wheel-up-down 4s infinite;
    -moz-animation: wheel-up-down 4s infinite;
}

.sldTwImgCon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 75vh;
    border-radius: 0 0 100vw 100vw;
    overflow: hidden;
}

.sldTwImg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sldTwLn {
    width: 1px;
    height: 200px;
    border-left: 1px solid #41A7D8;
    margin-left: 50px;
}

.sldBt {
    display: flex;
    width: 100%;
}

.sldBtLf {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 38%;
}

.sldBtLfImgTp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 59%;
    height: 325px;
    border-radius: 0 100vw 100vw 0;
    overflow: hidden;
}

    .sldBtLfImgTp img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.sldBtLfImgBtCon {
    width: 100%;
}

.sldBtLfImgBt {
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 380px;
    height: 410px;
    margin-top: 50px;
    border-radius: 100vw 100vw 0 0;
    overflow: hidden;
}

    .sldBtLfImgBt img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.sldBtCen {
    display: flex;
    flex-direction: column;
    width: 42%;
    padding-bottom: 120px;
    box-sizing: border-box;
}

.sldBtCenTpBs {
    margin-bottom: 20px;
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 4px;
    color: #41A7D8;
}

.sldBtCenBs {
    width: 60%;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    color: #235897;
}

.sldBtCenTxAllCon {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    padding: 0 25px 0 24%;
}

.sldBtCenTxCon {
    display: flex;
}

.sldBtCenTx {
    width: 50%;
    padding-right: 25px;
    box-sizing: border-box;
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235897;
}

.sldBtCenTxTw {
    width: 50%;
    padding-left: 25px;
    box-sizing: border-box;
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235897;
}

.sldBtLnk {
    display: flex;
    align-items: center;
    width: max-content;
    height: 55px;
    margin-top: 40px;
    padding: 0 20px;
    border-radius: 5px;
    background-color: #CDF2FF;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

.sldBtRg {
    width: 20%;
}

.sldBtRgImg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 280px;
    border-radius: 100vw 0 0 100vw;
    overflow: hidden;
}

    .sldBtRgImg img {
        display: block;
        width: 100%;
        object-fit: cover;
    }

.clrBg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 200px 55px 400px 55px;
    box-sizing: border-box;
    background: #D6EDF9 url(../../images/dalga-bg.svg) center no-repeat;
    background-size: cover;
}

.clrBgRn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45vw;
    height: 45vw;
    border: 1px solid #41a8d84d;
    border-radius: 50%;
}

.clrBgRnTxCon {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 150px;
    box-sizing: border-box;
}

.clrBgRnTpBs {
    margin-bottom: 20px;
    font-family: msgothic;
    font-size: 14px;
    text-align: center;
    letter-spacing: 5px;
    color: #F39988;
}

.clrBgRnBs {
    font-family: original-light;
    font-size: 72px;
    text-align: center;
    line-height: 1.1;
    color: #235897;
}

.clrBgRnLnk {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

.clrBgRnLnkIco {
    display: block;
    height: 35px;
    margin-right: 15px;
}

.clrBgBx {
    position: absolute;
}

.clrBgBxLfTp {
    left: -13vw;
    top: 6vw;
}

.clrBgBxRgTp {
    right: -13vw;
    top: 8vw;
}

.clrBgBxLfBt {
    left: -5vw;
    bottom: 0;
}

.clrBgBxRgBt {
    right: -15vw;
    bottom: 2vw;
}

.clrBgBxCnt {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 17vw;
    padding: 30px;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 1;
}

.clrBgBxBs {
    margin-bottom: 15px;
    text-align: center;
    font-family: original-light;
    font-size: 26px;
    color: #235897;
}

.clrBgBxTx {
    text-align: center;
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #23569599;
}

.clrBgBxNbr {
    position: absolute;
    font-family: espritstd-medium;
    font-size: 22vw;
    line-height: 1;
    background: url(../../Images/number-bg.svg);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clrBgBxNbrLfTp {
    top: -13vw;
    right: -6vw;
}

.clrBgBxNbrRgTp {
    top: -13vw;
    left: -9vw;
}

.clrBgBxNbrLfBt {
    bottom: -10vw;
    left: -6vw;
}

.clrBgBxNbrRgBt {
    bottom: -10vw;
    left: -8vw;
}

.bdyImg {
    width: calc(100% - 85px);
    height: 600px;
    margin-top: -200px;
}

    .bdyImg img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.infBdyCon {
    display: flex;
    flex-direction: column;
    padding: 80px 0;
}

.infBdyCen {
    display: flex;
    flex-direction: column;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.infBdyBs {
    margin-bottom: 70px;
    font-family: mont-light;
    font-size: 67px;
    line-height: 1.2;
    color: #235897;
}

    .infBdyBs a {
        font-family: original-light;
    }

.infBdyLnCon {
    display: flex;
    align-items: center;
}

.infBdyLn {
    width: calc(100px - 30px);
    height: 1px;
    margin-right: 30px;
    background-color: #41A7D8;
}

.infBdyLnTx {
    box-sizing: border-box;
    font-family: mont-light;
    font-size: 14px;
    letter-spacing: 10px;
    color: #41A7D8;
}

.sycCon {
    width: 100%;
    border-top: 1px solid #c8d5e5;
    border-bottom: 1px solid #c8d5e5;
}

.sycCen {
    display: flex;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.sycBx {
    width: 33.3333%;
    padding: 60px 0 75px 0;
}

    .sycBx:nth-child(2n) {
        border-left: 1px solid #c8d5e5;
        border-right: 1px solid #c8d5e5;
    }

.sycBxBs {
    margin-bottom: 15px;
    font-family: original-light;
    font-size: 64px;
    text-align: center;
    color: #F39988;
}

.sycBxTx {
    padding: 0 10px;
    box-sizing: border-box;
    font-family: mont-regular;
    font-size: 13px;
    text-align: center;
    letter-spacing: 2px;
    color: #235897;
}

.dblBdyCon {
    position: relative;
    display: flex;
    justify-content: end;
    width: 100%;
    margin: 150px 0;
}

.dblBdyCen {
    position: absolute;
    width: 100%;
    max-width: 1310px;
    padding: 0 55px;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.dblBdyTxCon {
    display: flex;
    flex-direction: column;
    width: 45%;
}

.dblBdyBs {
    margin-bottom: 50px;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.2;
    color: #235897;
}

.dblBdyTx {
    display: flex;
    margin-bottom: 25px;
    font-family: mont-book;
    font-size: 15px;
    line-height: 1.8;
    color: #235897;
}

.dblBdyTxHr {
    min-width: 40px;
    max-width: 40px;
    height: 1px;
    margin: 10px 20px 0 0;
    background: #41A7D8;
}

.dblBdyLnk {
    display: flex;
    align-items: center;
    height: 35px;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

.dblBdyLnkIco {
    display: block;
    height: 35px;
    margin-right: 15px;
}

.dblBdyImg {
    width: 43%;
    height: 650px;
    padding: 50px 0 50px 70px;
    box-sizing: border-box;
    border-radius: 100vw 0 0 100vw;
    overflow: hidden;
    background: url(../../images/line-bg.png) no-repeat center center;
    background-size: 200%;
}

    .dblBdyImg img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 100vw 0 0 100vw;
    }

.dfCntCon {
    width: 100%;
    padding-bottom: 80px;
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(135,202,241,0)),to(#c6e5f4));
    background: linear-gradient(180deg,rgba(135,202,241,0) 0%,#c6e5f4 100%);
}

.dfCntCen {
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.dfCntTp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.dfCntTpItmCon {
    display: flex;
    justify-content: space-between;
    padding: 35px 150px 100px 150px;
    box-sizing: border-box;
}

.dfCntTpItm {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.dfCntTpItmLn {
    width: 1px;
    height: 50px;
    margin-bottom: 30px;
    background-color: #fff;
}

.dfCntTpItmBs {
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
    color: #fff;
}

.dfCntTpItmLnk {
    display: flex;
    align-items: center;
    width: max-content;
    height: 55px;
    margin-top: 40px;
    padding: 0 20px;
    border-radius: 5px;
    background-color: #FFC0B7;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

.dfCntBtCen {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box
}

.dfCntBt {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 90px 0 100px 0;
    background-color: #fff;
}

.dfCntBtTxAllCon {
    width: 50%;
    padding: 0 60px;
    box-sizing: border-box;
}

.dfCntBtTpBs {
    margin-bottom: 20px;
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 5px;
    color: #F39988;
}

.dfCntBtBs {
    width: 75%;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    color: #235897;
}

.dfCntBtTxCon {
    display: flex;
    margin-top: 30px;
}

.dfCntBtTxLn {
    max-width: 60px;
    min-width: 60px;
    height: 1px;
    margin: -4px 20px 0 0;
    border-top: 1px solid #41A7D8;
}

.dfCntBtTx {
    margin-top: -15px;
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

.dfCntBtFrm {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 0 80px;
    box-sizing: border-box;
}

.dfCntBtFrmBs {
    display: flex;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

    .dfCntBtFrmBs a {
        margin-top: -5px;
        font-family: original-light;
        font-size: 25px;
        color: #e85c41;
    }

.dfCntBtFrmErCon {
    display: flex;
    align-items: center;
    height: 60px;
}

.dfCntBtFrmEr {
    font-family: mont-regular;
    font-size: 14px;
    color: #B94A48;
}

.dfCntBtFrmTxBx {
    width: 100%;
    padding: 8px 12px;
    box-sizing: border-box;
    font-family: mont-regular;
    font-size: 15px;
    color: #808080;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    outline: none;
    border-bottom: 1px solid #235897;
    background-color: transparent;
}

.dfCntBtFrmBtn {
    width: max-content;
    height: 40px;
    padding-left: 50px;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
    background: transparent url('../../Images/sld-link-icon.svg') no-repeat center left;
    background-size: 35px;
    border: none;
    outline: none;
    cursor: pointer;
}

.pgBt {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 120px 0;
    background: transparent url('../../Images/line-bg-bt.svg') no-repeat center bottom;
    background-size: 100%;
}


.pgBtBs {
    max-width: 1000px;
    margin: 0 auto 25px auto;
    padding: 0 55px;
    box-sizing: border-box;
    font-family: original-light;
    font-size: 72px;
    text-align: center;
    line-height: 1.1;
    color: #235897;
}


.pgBtAltBs {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
    font-family: mont-light;
    font-size: 32px;
    text-align: center;
    line-height: 1.4;
    color: #235695b3;
}

.pgBtLnk {
    width: max-content;
    margin-top: 30px;
    padding: 15px 25px;
    border-radius: 5px;
    background-color: #FFC0B7;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

#popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background-color: rgba(000,0,0,0.7);
}

#popupCen {
    position: fixed;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

    #popupCen img {
        width: 100%;
        float: left;
    }

    #popupCen iframe {
        width: 100%;
        float: left;
    }

#close {
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    margin: -12px -10px -10px -10px;
    z-index: 9999;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}

    #close img {
        width: 100%;
    }

.abtHd {
    width: 100%;
    min-height: calc(100vh - 170px);
}

.abtCon {
    width: 100%;
    background-color: #fff;
}

.abtCen {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 55px;
    box-sizing: border-box;
}

.abtImgCon {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50%;
    max-width: 50%;
    height: fit-content;
    margin-top: -235px;
    padding: 80px;
    box-sizing: border-box;
    border-radius: 40rem;
    overflow: hidden;
    background: url(../../images/line-bg.png) no-repeat center center;
    background-size: cover;
}

.abtImg {
    display: block;
    width: 100%;
    height: 700px;
    border-radius: 40rem;
    object-fit: cover;
}

.abtTxCon {
    display: flex;
    flex-direction: column;
    width: 35%;
    margin-top: 50px;
}

.abtTpBs {
    margin-bottom: 25px;
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 5px;
    color: #F39988;
}

.abtBs {
    margin-bottom: 15px;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    color: #235897;
}

.abtTx {
    font-family: mont-book;
    font-size: 14px;
    line-height: 2;
    color: #235695b3;
}

.abtTxDty {
    font-family: mont-book;
    font-size: 14px;
    line-height: 2;
    color: #235695b3;
}

.abtTxLnDty {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #F39988;
    font-family: mont-book;
    font-size: 14px;
    line-height: 2;
    color: #235695b3;
}

.abtTxLnAltDty {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #F39988;
    font-family: mont-book;
    font-size: 14px;
    line-height: 2;
    color: #235695b3;
}

    .abtTxLnAltDty a:before {
        content: "•";
        color: rgba(35,86,149,0.7);
        margin-right: 12px;
    }

.abtTxLnAltDtyEndSpn {
    margin-top: 20px;
}

.abtTxLnAltDty .abtTxLnAltDtyEndSpn:before {
    content: "" !important;
}

.abtBtCon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
}

.abtBtCen {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1300px;
}

.abtBtBs {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 55px;
    box-sizing: border-box;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
    color: #235897;
}

.abtBtItmCon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.abtBtItm {
    display: flex;
    flex-direction: column;
    width: calc(50% - 110px);
    margin: 20px 55px;
    box-sizing: border-box;
}

.abtBtItmIcnAllCon {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.abtBtItmIcnCon {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80px;
    min-width: 80px;
    height: 80px;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #FFF7F2;
}

.abtBtItmIcn {
    display: block;
    width: 100%;
}

.abtBtItmIcnLn {
    width: 100%;
    margin-left: 30px;
    border-bottom: 1px solid #C8D5E5;
}

.abtBtItmBs {
    margin-bottom: 10px;
    font-family: original-light;
    font-size: 26px;
    line-height: 1.1;
    color: #235897;
}

.abtBtItmTx {
    font-family: mont-regular;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

.abtBdyCon {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0 120px 0;
    background-color: #fff;
}

.abtBdyTx {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
    color: #235897;
}

.abtBdyIcnCon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 80px;
    padding: 0 40px;
    box-sizing: border-box;
}

.abtBdyIcn {
    max-width: 100px;
    margin: 0 15px;
}

    .abtBdyIcn img {
        display: block;
        width: 100%;
    }

.abtBtDblCon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
}

.abtBtDblCen {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1300px;
}

.abtBtDblBs {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 55px;
    box-sizing: border-box;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
    color: #235897;
}

.abtBtItmDblCon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.abtBtItmDbl {
    display: flex;
    flex-direction: column;
    width: calc(50% - 110px);
    margin: 20px 55px;
    padding-bottom: 50px;
    box-sizing: border-box;
    border-bottom: 1px solid #C8D5E5;
}

.abtBtItmDblIcnAllCon {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.abtBtItmDblIcnCon {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80px;
    min-width: 80px;
    height: 80px;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #FFF7F2;
}

.abtBtItmDblIcn {
    display: block;
    width: 100%;
}

.abtBtItmDblIcnLn {
    width: 100%;
    margin-left: 30px;
    border-bottom: 1px solid #C8D5E5;
}

.abtBtItmDblBs {
    margin-bottom: 10px;
    font-family: original-light;
    font-size: 26px;
    line-height: 1.1;
    color: #235897;
}

.abtBtItmDblTx {
    font-family: mont-regular;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

.abtHstCon {
    display: flex;
    flex-direction: column;
    max-width: 1435px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 55px;
    padding: 120px 180px;
    box-sizing: border-box;
    background-color: #235897;
}

.abtHstItm {
    width: 100%;
    margin: 50px 0;
}

.abtHstBs {
    margin-bottom: 40px;
    font-family: original-light;
    font-size: 26px;
    line-height: 1.1;
    color: #fff;
}

.abtHstLnCon {
    display: flex;
    width: 100%;
}

.abtHstSmlLnCon {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 4px solid #244f83;
}

.abtHstSmlLnConAkt {
    border-top: 4px solid #41A7D8;
}

.abtHstSmlLn {
    width: 2px;
    height: 12px;
    margin-top: -8px;
    background-color: #4f6175;
}

.abtHstSmlLnAkt {
    background-color: #fff;
}

.abtHstSmlLnTx {
    font-family: mont-regular;
    font-size: 12px;
    line-height: 2;
    color: #708399;
}

.abtHstSmlLnTxAkt {
    color: #fff;
    font-size: 15px;
}

.abtHstTx {
    max-width: 80%;
    margin-bottom: 25px;
    font-family: mont-regular;
    font-size: 13px;
    line-height: 2;
    color: #fff;
}

.abtAcrHstBg {
    padding: 120px 0;
    box-sizing: border-box;
    background: -webkit-gradient(linear,left top,left bottom,from(#d9eef9),to(#fff));
    background: linear-gradient(180deg,#d9eef9 0%,#fff 100%);
}

.abtAcrHstCen {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.abtAcrHstBs {
    margin: 40px 0 60px 0;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    color: #235897;
}

.abtAcrHstTx {
    margin: 40px 0 60px 0;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    color: #235897;
}

.abtAcrHstTx {
    font-family: mont-book;
    font-size: 14px;
    line-height: 2;
    color: #235695b3;
}

.txPgCon {
    width: 1230px;
    margin: 0 auto;
    padding: 80px 15px;
    box-sizing: border-box;
}

.txPgBs {
    margin-bottom: 10px;
    font-family: titilliumweb-regular;
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 1.6;
    color: #444444;
}

.txPgTx {
    font-family: titilliumweb-regular;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.yrmItmCon {
    display: flex;
    width: 100%;
    margin-bottom: 25px;
}

.yrmItmIcn {
    max-width: 45px;
    min-width: 45px;
    margin-right: 15px;
}

.yrmItmCntCon {
    display: flex;
    flex-direction: column;
}

.yrmItmBs {
    font-family: BlockBertholdBold;
    font-size: 18px;
    color: #303113;
}

.yrmItmTx {
    font-family: RobotoCondensed-Regular;
    font-size: 16px;
    line-height: 28px;
    color: #303133;
}

.cntTitBg {
    width: 100%;
    padding-top: 65px;
    background: transparent url("../../images/line-bg-rg.svg") no-repeat scroll right top;
    background-size: 590px;
}

.cntTit {
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto 120px auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.cntTitImg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    margin-right: 100px;
    border-radius: 100vw 100vw 100vw 100vw;
    overflow: hidden;
}

    .cntTitImg img {
        display: block;
        width: 100%;
        height: 100%;
        background-size: cover;
        object-fit: cover;
    }

.cntTitBs {
    width: 55%;
    padding-left: 50px;
    box-sizing: border-box;
    font-family: original-light;
    font-size: 72px;
    line-height: 1.1;
    color: #235897;
}

    .cntTitBs a {
        color: #009EE3;
    }

.cntCon {
    display: flex;
    max-width: 1440px;
    margin: 50px auto 120px auto;
    padding: 80px 55px 0 55px;
    box-sizing: border-box;
}

.cntInfCon {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin-right: 100px;
}

.cntInfItm {
    display: flex;
    height: fit-content;
    margin-bottom: 80px;
}

.cntInfItmLn {
    width: 1px;
    height: 40px;
    margin-right: 50px;
    opacity: .5;
    background-color: #235897;
}

.cntInfItmCnt {
    width: 100%;
}

.cntBs {
    font-family: original-light;
    font-size: 26px;
    line-height: 1.1;
    color: #235897;
}

.cntTx {
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

    .cntTx a {
        color: red;
    }

.cntTxClr a {
    color: #235695b3;
}

.cntTxXl a {
    color: #235695b3;
}

#uptPnlCnt {
    width: 55%;
}

.frmCon {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 50px;
    box-sizing: border-box;
}

.frmBs {
    margin-bottom: 40px;
    font-family: original-light;
    font-size: 26px;
    line-height: 1.1;
    color: #235897;
}

.txtBs {
    display: flex;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

.txt {
    width: 100%;
    padding: 8px 12px;
    box-sizing: border-box;
    font-family: mont-regular;
    font-size: 15px;
    color: #808080;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    outline: none;
    border-bottom: 1px solid #235897;
    background-color: transparent;
}

::placeholder {
    color: #808080;
}

:-ms-input-placeholder {
    color: #808080;
}

::-ms-input-placeholder {
    color: #808080;
}

.txtRqCon {
    display: flex;
    align-items: center;
    height: 60px;
}

.txtRq {
    font-family: mont-regular;
    font-size: 14px;
    color: #B94A48;
}

.fu {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
    background-color: #eee;
    border: none;
    border-radius: 3px;
}


.frmKvk {
    display: flex;
    font-family: mont-book;
    font-size: 13px;
    color: #235695b3;
}

#cb {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    overflow: hidden;
}

#cbImg {
    width: 30px;
    height: 15px;
    margin-left: -15px;
}

.frmKvkBld {
    cursor: pointer;
    font-family: mont-regular;
    color: #235897;
}

    .frmKvkBld:hover {
        cursor: pointer;
        font-family: mont-semibold;
        color: #235897;
        text-decoration: underline;
    }

.kvkPopUp {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2;
}

.kvkPopUpCnt {
    width: 100%;
    max-width: 1024px;
    height: 100%;
    padding: 60px 30px;
    box-sizing: border-box;
}

#kvkCls {
    position: absolute;
    width: 25px;
    right: 25px;
    top: 25px;
    cursor: pointer;
    transition: ease .3s;
}

    #kvkCls:hover {
        opacity: .5;
    }

.frmBtnCon {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

#frmBtnEnb {
    display: none;
}

#frmBtnDsb {
    opacity: .5;
    cursor: auto;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 55px;
    padding: 0 20px;
    border: none;
    border-radius: 5px;
    cursor: auto;
    background-color: #FFC0B7;
    cursor: pointer;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

.lbl {
    margin-left: 10px;
    font-family: mont-regular;
    font-size: 14px;
    color: #D90E16;
}

.cntSmCon {
    display: flex;
    padding-left: 50px;
    box-sizing: border-box;
}

.cntSm {
    display: flex;
    align-items: center;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

    .cntSm img {
        display: block;
        height: 18px;
        margin-right: 5px;
    }

.mapBg {
    width: 100%;
    padding-bottom: 120px;
    background: transparent url('../../Images/line-bg-bt.svg') no-repeat center bottom;
    background-size: 100%;
}

.map {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.mapIfrm {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.mapIfrmHd {
    width: 100%;
    margin-bottom: 10px;
    font-family: original-light;
    font-size: 26px;
    line-height: 1.1;
    color: #235897;
}

.mapIfrm iframe {
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 5px;
}

.hbrMstBsCon {
    max-width: 1490px;
    margin: 0 auto;
    padding: 100px 55px;
    box-sizing: border-box;
}

.hbrMstBs {
    width: 50%;
    margin-bottom: 20px;
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 5px;
    color: #F39988;
}

.hbrMstTx {
    width: 50%;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    color: #235897;
}

.sssCon {
    display: flex;
    width: 100%;
}

.sssLf {
    width: 40%;
}

.hbrMnLnkCon {
    display: flex;
    justify-content: end;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 60px;
    margin-bottom: 80px;
    width: 100%;
    height: 380px;
    padding-right: 180px;
    box-sizing: border-box;
    border-radius: 0 100vw 100vw 0;
    background-color: #fff;
}

.hbrMnLnkCntCon {
    display: flex;
    flex-direction: column;
}

.hbrMnLnk {
    border-left: 4px solid #fff;
    padding: 12px 0 12px 65px;
    box-sizing: border-box;
    opacity: 0.6;
    transition: ease .2s;
    cursor: pointer;
    font-family: original-light;
    font-size: 18px;
    line-height: 1.1;
    color: #235897;
}

    .hbrMnLnk:hover {
        opacity: 1;
        transition: ease .2s;
    }

.sssRg {
    width: 40%;
    margin-left: 200px;
}

.accordion-section {
    border-bottom: 1px solid #C8D5E5;
}

.accordion-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    box-sizing: border-box;
    cursor: pointer;
    font-family: mont-semibold;
    line-height: 1.6;
    font-size: 18px;
    color: #235897;
}

.accordionTitLft {
    display: flex;
    align-items: center;
    padding-right: 50px;
    box-sizing: border-box;
}

.accordionTitLftIco {
    height: 18px;
    margin-right: 25px;
}

.accordion-section-title-ico {
    width: 7px;
    outline: none;
}

    .accordion-section-title-ico img {
        display: block;
        width: 100%;
    }

.accordion-section-title.active .accordion-section-title-ico {
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.accordion-section-content {
    display: none;
    padding: 0 30px 70px 45px;
    box-sizing: border-box;
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

.sssInfCon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 100px 15px 120px 15px;
    box-sizing: border-box;
}

.sssInfIcn {
    height: 32px;
    margin-bottom: 10px;
}

.sssInfBs {
    margin-bottom: 10px;
    font-family: titilliumweb-regular;
    font-size: 16px;
    text-align: center;
    color: #666e75;
}

.sssInfTx {
    font-family: titilliumweb-regular;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #444444e48;
}

    .sssInfTx a {
        font-family: titilliumweb-semibold;
        color: #009EE3;
    }

        .sssInfTx a:hover {
            text-decoration: underline;
        }

.hbrCon {
    display: flex;
    flex-wrap: wrap;
    max-width: 1490px;
    margin: 0 auto;
    padding: 0 35px 100px 35px;
    box-sizing: border-box;
}

.hbrA {
    width: calc(33.3333% - 40px);
    margin: 0 20px 25px 20px;
}

.hbr {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hbrImg {
    width: 100%;
}

.hbrTxCon {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 40px 40px 40px;
    box-sizing: border-box;
    background-color: #fff;
}

.hbrBs {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 25px 0 10px 0;
    overflow: hidden;
    font-family: original-light;
    font-size: 22px;
    line-height: 1.1;
    color: #235897;
    height: 48px;
}

.hbrAltBs {
    margin-bottom: 10px;
    font-family: mont-regular;
    font-size: 14px;
    color: #F39988;
}

.hbrOzt {
    display: -webkit-box;
    height: 115px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: mont-book;
    font-size: 14px;
    line-height: 2;
    color: #235695b3;
}

.hbrLnk {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-family: original-light;
    font-size: 18px;
    color: #235897;
}

.hbrLnkIcn {
    margin-left: 10px;
    height: 10px;
}

.prdTxCon {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 80px auto 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.prdTxBs {
    margin-bottom: 30px;
    font-family: mont-semibold;
    font-size: 14px;
    text-align: center;
    letter-spacing: 5px;
    color: #F39988;
}

.prdTx {
    font-family: mont-light;
    font-size: 26px;
    text-align: center;
    line-height: 2;
    color: #235897;
}

.ovlBxCon {
    width: 100%;
    padding-top: 120px;
    background: url(../../images/line-bg-lf.svg) no-repeat left top;
    background-size: 30%;
}

.ovlBxCen {
    display: flex;
    flex-wrap: wrap;
    max-width: 1490px;
    margin: 0 auto;
    padding: 0 35px;
    box-sizing: border-box;
}

.ovlBx {
    width: calc(25% - 40px);
    height: 600px;
    margin: 0 20px;
    border-radius: 100vw 100vw 100vw 100vw;
    overflow: hidden;
    background-color: #fff;
}

.ovlBxTp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35%;
    background-size: cover;
    background-color: #d6edf9;
}

    .ovlBxTp img {
        display: block;
        width: 70%;
        height: auto;
        margin-top: 30px;
    }

.ovlBxBt {
    width: 100%;
    height: 65%;
    padding: 40px 50px 50px 50px;
    box-sizing: border-box;
    background-color: #fff;
}

.ovlBxSmlBs {
    margin-bottom: 20px;
    font-family: mont-semibold;
    font-size: 14px;
    text-align: center;
    letter-spacing: 5px;
    color: #F39988;
}

.ovlBxBs {
    font-family: original-light;
    font-size: 25px;
    text-align: center;
    line-height: 1.1;
    color: #235897;
}

.ovlBxTx {
    font-family: mont-book;
    font-size: 15px;
    text-align: center;
    line-height: 2;
    color: #235695b3;
}

.ovlBxDwnCon {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    width: 100%;
}

.ovlBxDwnA {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
}

.ovlBxDwn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    border: 1px solid #F39988;
}

.ovlBxDwnIcn {
    height: 13px;
    -webkit-animation: wheel-up-down 4s infinite;
    animation: wheel-up-down 4s infinite;
    -moz-animation: wheel-up-down 4s infinite;
}

.ovlBxDwnTx {
    margin-top: 20px;
    font-family: mont-regular;
    font-size: 9px;
    text-align: center;
    letter-spacing: 5px;
    color: #235897;
}

.ovlBdyTit {
    width: 100%;
    margin-top: 100px;
}

    .ovlBdyTit img {
        display: block;
        width: 100%;
    }

.ovlBdy {
    width: 100%;
    padding-bottom: 120px;
    background-color: #D6EDF9;
}

.ovlBdyTxCon {
    display: flex;
    flex-direction: column;
    padding: 0 55px;
    box-sizing: border-box;
}

.ovlBdyTpBs {
    margin-bottom: 30px;
    font-family: mont-semibold;
    font-size: 14px;
    text-align: center;
    letter-spacing: 5px;
    color: #F39988;
}

.ovlBdyBs {
    font-family: original-light;
    font-size: 48px;
    text-align: center;
    line-height: 1.1;
    color: #235897;
}

.ovlBdyItmCon {
    display: flex;
    flex-wrap: wrap;
    max-width: 1490px;
    margin: 120px auto 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.ovlBdyItm {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(20% - 30px);
    margin: 0 15px;
    padding: 0 0 40px 0;
    border-radius: 100vw 100vw 100vw 100vw;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #c1ddeb;
}

.ovlBdyItmImg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    margin-bottom: 35px;
    padding: 20px 45px 0 45px;
    background-color: #cde8f5;
}

    .ovlBdyItmImg img {
        width: 100%;
    }

.ovlBdyItmBs {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 30px;
    box-sizing: border-box;
    font-family: mont-semibold;
    font-size: 14px;
    text-align: center;
    letter-spacing: 5px;
    color: #F39988;
}

.ovlBdyItmTx {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    font-family: mont-book;
    font-size: 15px;
    text-align: center;
    line-height: 2;
    color: #235897;
}

.ovlBdyTitTw {
    width: 100%;
}

    .ovlBdyTitTw img {
        display: block;
        width: 100%;
    }

.ovlBdyTw {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #D6EDF9;
}

.ovlBdyTwTxCon {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 55px;
    box-sizing: border-box;
}

.ovlBdyTwTpBs {
    margin-bottom: 20px;
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 5px;
    color: #F39988;
}

.ovlBdyTwBs {
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
    color: #235897;
}

.ovlBdyTwImg {
    width: 100%;
    padding: 40px 100px 100px 100px;
    box-sizing: border-box;
}


    .ovlBdyTwImg img {
        display: block;
        width: 100%;
    }

.ovlBdyTwLnkA {
    width: fit-content;
}

.ovlBdyTwLnk {
    width: max-content;
    margin: 30px auto 80px auto;
    padding: 15px 25px;
    border-radius: 5px;
    background-color: #FFC0B7;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
}

.titCenTxCon {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.titCenTpBs {
    margin-bottom: 25px;
    font-family: mont-semibold;
    font-size: 14px;
    text-align: center;
    letter-spacing: 5px;
    color: #F39988;
}

.titCenBs {
    margin-bottom: 15px;
    font-family: original-light;
    font-size: 48px;
    text-align: center;
    line-height: 1.1;
    color: #235897;
}

.titCenTx {
    font-family: mont-book;
    font-size: 18px;
    text-align: center;
    line-height: 2;
    color: #235695b3;
}

.cenImgCon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    padding: 0 55px;
    box-sizing: border-box;
}

.cenImg {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    height: 600px;
    padding: 70px 80px;
    box-sizing: border-box;
    border-radius: 40rem;
    overflow: hidden;
    background: url(../../images/line-bg.png) no-repeat center center;
    background-size: cover;
}

    .cenImg img {
        width: 100%;
        height: 100%;
        border-radius: 40rem;
        object-fit: cover;
    }

.pgDwnTwCon {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    width: 100%;
}

.pgDwnTwA {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
}

.pgDwnTw {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    border: 1px solid #F39988;
}

.pgDwnTwIcn {
    height: 13px;
    -webkit-animation: wheel-up-down 4s infinite;
    animation: wheel-up-down 4s infinite;
    -moz-animation: wheel-up-down 4s infinite;
}

.pgDwnTwTx {
    margin-top: 20px;
    font-family: mont-regular;
    font-size: 9px;
    text-align: center;
    letter-spacing: 5px;
    color: #235897;
}

.ovlBdyTitThr {
    width: 100%;
}

    .ovlBdyTitThr img {
        display: block;
        width: 100%;
    }

.ovlBdyThr {
    width: 100%;
    background: #D6EDF9;
}

.ovlBdyThrTxCon {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 55px;
    box-sizing: border-box;
}

.ovlBdyThrTpBs {
    margin-bottom: 20px;
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 5px;
    color: #F39988;
}

.ovlBdyThrBs {
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
    color: #235897;
}

.prdBxCon {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 55px;
    box-sizing: border-box;
}

.prdBx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1490px;
    margin: 0 auto;
    padding: 100px 0 50px 0;
    border-bottom: 1px solid #C6E4F3;
}

    .prdBx:last-child {
        border: none;
    }


    .prdBx:nth-child(even) {
        flex-direction: row-reverse;
    }

.prdBxTxCon {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin-right: 60px;
}

.prdBx:nth-child(even) .prdBxTxCon {
    margin: 0 0 0 60px;
}

.prdBxTpBs {
    margin-bottom: 50px;
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 5px;
    color: #F39988;
}

.prdBxBs {
    margin-bottom: 15px;
    font-family: original-light;
    font-size: 36px;
    line-height: 1.1;
    color: #235897;
}

.prdBxTx {
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

.prdBxImg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%;
    height: 700px;
    margin-left: 60px;
    padding: 60px 0 60px 70px;
    box-sizing: border-box;
    border-radius: 100vw 0 0 100vw;
    overflow: hidden;
    background: url(../../images/line-bg.png) no-repeat center center;
    background-size: 200%;
}

    .prdBxImg img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 100vw 0 0 100vw;
    }

.prdBx:nth-child(even) .prdBxImg {
    margin: 0 60px 0 0;
    padding: 60px 70px 60px 0;
    border-radius: 0 100vw 100vw 0;
}

    .prdBx:nth-child(even) .prdBxImg img {
        border-radius: 0 100vw 100vw 0;
    }

.prdBtBxCon {
    display: flex;
    flex-wrap: wrap;
    max-width: 1230px;
    margin: 80px auto;
    padding: 0 5px;
    box-sizing: border-box;
}

.prdBtBx {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(25% - 20px);
    margin: 10px;
    padding: 25px;
    box-sizing: border-box;
    background-color: #eee;
}

.prdBtBxImgCon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prdBtBxImg {
    display: block;
    width: 100%;
}

.prdBtBxTx {
    margin-top: 10px;
    font-family: titilliumweb-regular;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    color: #009EE3;
}

.prdDgrBxCon {
    width: 100%;
    margin: 40px 0 80px 0;
    padding: 100px 0;
    background-color: #fafafa;
}

.prdDgrBxCen {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
}

.prdDgrBx {
    display: flex;
    flex-direction: column;
    width: calc(20% - 20px);
    margin: 10px;
    border: 1px dashed #d2d2d8;
    box-sizing: border-box;
    background-color: #fff;
}

.prdDgrBxImgCon {
    padding: 50px 50px 0 50px;
    box-sizing: border-box;
}

.prdDgrBxImg {
    display: block;
    width: 100%;
}

.prdDgrBxTxCon {
    padding: 15px;
    box-sizing: border-box;
}

.prdDgrBxBs {
    font-family: titilliumweb-semibold;
    font-size: 18px;
    text-align: center;
    color: #444444;
}

.prdDgrBxTx {
    font-family: titilliumweb-light;
    font-size: 16px;
    text-align: center;
    line-height: 2;
    color: #6c6d73;
}

.othPgCon {
    display: flex;
    flex-direction: column;
    max-width: 1150px;
    margin: 0 auto;
    padding: 120px 55px 120px 55px;
    box-sizing: border-box;
}

.othPgMstBs {
    margin-bottom: 80px;
    font-family: original-light;
    font-size: 72px;
    line-height: 1.1;
    color: #235897;
}

.othPgBs {
    margin: 70px 0 30px 0;
    font-family: original-light;
    font-size: 36px;
    line-height: 1.1;
    color: #235897;
}

.othPgBtBs {
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    font-weight: 100;
    color: #235897;
}

.othPgTx {
    margin-block-start: 5px !important;
    margin-block-end: 5px !important;
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

    .othPgTx span {
        /*        color: #F39988 !important;
*/ color: #235695b3 !important;
    }

.othPgImg {
    display: block;
    width: 65%;
    margin: 25px 0;
    border-radius: 0 100vw 100vw 0;
}

.othPgLfImg {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    height: 250px;
    margin: 80px 0;
    padding: 50px 0;
    border-radius: 0 100vw 100vw 0;
    overflow: hidden;
    background: #D6EDF9 url(../../images/insan-kaynaklari.png) center no-repeat;
    background-size: cover;
}

    .othPgLfImg img {
        display: block;
        height: 100%;
        margin-right: 50px;
    }

.othPgRg {
    width: 100%;
}

.frmTwCon {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.frmTwBs {
    margin-bottom: 40px;
    font-family: original-light;
    font-size: 26px;
    line-height: 1.4;
    color: #235897;
}

.tpLfTxConBg {
    width: 100%;
    padding: 120px 0;
    background: url(../../images/line-bg-lf.svg) no-repeat left top;
    background-size: 30%;
}

.tpLfTxCon {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.tpLfTxCnt {
    max-width: 700px;
}

.tpLfTxTpBs {
    margin-bottom: 25px;
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 5px;
    color: #F39988;
}

.tpLfTxBs {
    margin-bottom: 15px;
    font-family: original-light;
    font-size: 72px;
    line-height: 1.1;
    color: #235897;
}

    .tpLfTxBs a {
        color: #41A7D8;
    }

.smpDblCon {
    display: flex;
    align-items: center;
    max-width: 1340px;
    margin: 90px auto 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.smpDblImg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-right: 150px;
    border-radius: 100vw 100vw 100vw 100vw;
    overflow: hidden;
}

    .smpDblImg img {
        display: block;
        width: 100%;
        height: 100%;
        background-size: cover;
        object-fit: cover;
    }

.smpDblTxCon {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.smpDblDlgTx {
    font-family: original-light;
    font-size: 120px;
    line-height: 1.1;
    background: url(../../Images/text-bg.svg) no-repeat center center;
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smpDblTx {
    display: flex;
    flex-direction: column;
    width: 90%;
    font-family: mont-book;
    font-size: 15px;
    line-height: 1.8;
    color: #235897;
}

.slgTxCon {
    max-width: 1450px;
    margin: 100px auto 120px auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.slgTxCnt {
    display: flex;
    flex-direction: column;
    width: 80%;
    padding-left: 200px;
    box-sizing: border-box;
}

.slgTxLn {
    height: 1px;
    margin-bottom: 40px;
    background-color: #41A7D8;
}

.slgTx {
    font-family: original-light;
    font-size: 52px;
    line-height: 1.4;
    color: #235897;
}

.slgTxBt {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.slgTxBtLn {
    margin-right: 30px;
    width: 200px;
    height: 1px;
    background: #41A7D8;
}

.slgTxBtTx {
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 5px;
    color: #23569599;
}

.lstDblConBg {
    width: 100%;
    padding: 70px 0 70px 0;
    background-color: #fff;
}

.lstDblCon {
    display: flex;
    align-items: center;
    max-width: 1340px;
    margin: 0 auto;
    padding: 50px 55px;
    box-sizing: border-box;
    border-bottom: 1px solid #C6E4F3;
}

    .lstDblCon:nth-child(even) {
        flex-direction: row-reverse;
    }

    .lstDblCon:last-child {
        border: none;
    }

.lstDblImg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin-right: 90px;
    padding: 45px 55px;
    box-sizing: border-box;
    border-radius: 40rem;
    overflow: hidden;
    background: url(../../images/line-bg.png) no-repeat center center;
    background-size: 150%;
}

    .lstDblImg img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 40rem;
        object-fit: cover;
    }

.lstDblCon:nth-child(even) .lstDblImg {
    margin: 0 0 0 90px;
}

.lstDblTxCon {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.lstDblBs {
    margin-bottom: 15px;
    font-family: original-light;
    font-size: 36px;
    line-height: 1.1;
    color: #235897;
}

.lstDblTx {
    display: flex;
    flex-direction: column;
    width: 90%;
    font-family: mont-book;
    font-size: 15px;
    line-height: 1.8;
    color: #235897;
}

.titCenTwTxCon {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.titCenTwTpBs {
    margin-bottom: 25px;
    font-family: mont-semibold;
    font-size: 14px;
    text-align: center;
    letter-spacing: 5px;
    color: #F39988;
}

.titCenTwBs {
    margin-bottom: 15px;
    font-family: original-light;
    font-size: 48px;
    text-align: center;
    line-height: 1.1;
    color: #235897;
}

.titCenTwTx {
    font-family: mont-light;
    font-size: 26px;
    text-align: center;
    line-height: 2;
    color: #235897;
}

.lnBdyBg {
    width: 100%;
    padding: 120px 0;
    background: url(../../images/line-bg-lf.svg) repeat-y left top;
    background-size: 32%;
}

.lnBdyCen {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.lnBdyTp {
    display: flex;
    justify-content: end;
    width: 100%;
    margin-bottom: 120px;
}

.lnBdyTpRg {
    width: 37%;
}

.lnBdyTpRgTpBs {
    margin-bottom: 25px;
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 5px;
    color: #F39988;
}

.lnBdyTpRgBs {
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    color: #235897;
}

.lnBdyBt {
    display: flex;
    width: 100%;
}

.lnBdyBtLf {
    width: 63%;
    padding-right: 20%;
    box-sizing: border-box;
}

.lnBdyItm {
    display: flex;
    width: 100%;
    margin-bottom: 110px;
}

.lnBdyItmLf {
    width: 50%;
    border-radius: 100vw 0 0 100vw;
    overflow: hidden;
}

    .lnBdyItmLf img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.lnBdyItmRg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 25px 0 25px 50px;
    box-sizing: border-box;
    border-radius: 0 100vw 100vw 0;
    background-color: #fff;
}

.lnBdyItmRnd {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 53px;
    height: 53px;
    margin-bottom: 20px;
    border: 1px solid #F39988;
    border-radius: 50%;
    font-family: mont-light;
    font-size: 14px;
    color: #F39988;
}

.lnBdyItmTpBs {
    width: max-content;
    margin-bottom: 20px;
    font-family: mont-semibold;
    font-size: 14px;
    letter-spacing: 5px;
    color: #F39988;
}

.lnBdyItmBs {
    width: calc(100% + 180px);
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    color: #235897;
}

.lnBdyBtRg {
    display: flex;
    flex-direction: column;
    width: 37%;
    border-left: 1px solid #C6E4F3;
    padding-left: 130px;
    box-sizing: border-box;
}

    .lnBdyBtRg a {
        height: fit-content;
        border-bottom: 1px solid #cee8f3;
    }

        .lnBdyBtRg a:last-child {
            border-bottom: none;
        }

.lnBdyBtRgItm {
    padding: 10px 0 20px 0;
}

.lnBdyBtRgItmTx {
    font-family: mont-semibold;
    font-size: 16px;
    color: #41A7D8;
}

.lnBdyBtRgItmBtTx {
    font-family: mont-regular;
    font-size: 16px;
    color: #235897;
}

.whBdy {
    width: 100%;
    background: #fff;
}

.hbrDtyCon {
    display: flex;
    flex-direction: column;
    max-width: 1300px;
    margin: 120px auto 0 auto;
    padding: 0 35px 100px 55px;
    box-sizing: border-box;
}

.hbrDtyBs {
    width: 60%;
    margin-bottom: 50px;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    color: #235897;
}

.hbrDtyOzt {
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

.hbrDtyImg {
    width: 50%;
    margin: 30px 0;
}

.hbrDtyInf {
    font-family: mont-regular;
    font-size: 14px;
    color: #F39988;
}

.hbrDtyDty {
    font-family: mont-book;
    font-size: 15px;
    line-height: 2;
    color: #235695b3;
}

.videoBgCon {
    display: flex;
    justify-content: center;
    max-width: 1230px;
    margin: 0 auto 80px auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.videoBg {
    width: 50%;
    margin: 10px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
    background: url(../../images/line-bg.png) no-repeat center center;
    background-size: 250%;
}

    .videoBg img {
        width: 100%;
    }

.grpSrkLg {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 55px;
}

    .grpSrkLg img {
        display: flex;
        justify-content: center;
        max-width: 300px;
    }

#puInf {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 55px;
    box-sizing: border-box;
    background: rgba(65,167,216,0.7);
    z-index: 2;
}


.puInfBx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 550px;
    padding: 55px;
    box-sizing: border-box;
    border: 1px solid #c8d5e5;
    background-color: #fff;
    box-shadow: 0 -1px 10px 0 rgba(172,171,171,.3);
}

#puInfCls {
    position: absolute;
    width: 15px;
    right: 15px;
    top: 20px;
    cursor: pointer;
    transition: ease .3s;
}

    #puInfCls:hover {
        opacity: .5;
    }

.puInfBxIc {
    display: block;
    width: 120px;
    margin-bottom: 15px;
}

.puInfBxTx {
    margin-bottom: 15px;
    text-align: center;
    font-family: original-light;
    font-size: 22px;
    color: #235897;
}

#puInfBxBtn {
    display: flex;
    align-items: center;
    width: max-content;
    height: 55px;
    margin-top: 20px;
    padding: 0 20px;
    border-radius: 5px;
    background-color: #CDF2FF;
    font-family: original-light;
    font-size: 17px;
    color: #235897;
    cursor: pointer;
    transition: ease .3s;
}

    #puInfBxBtn:hover {
        background-color: #FFC0B7
    }

.abtBtDblCon_A {
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
}

.abtBtDblCen_A {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.abtBtDblBs_A {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto 40px auto;
    padding: 0 55px;
    box-sizing: border-box;
    font-family: original-light;
    font-size: 48px;
    line-height: 1.1;
    color: #235897;
}

.abtBtItmDblCon_A {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.abtBtItmDbl_A {
    display: flex;
    flex-direction: column;
    width: calc(33.3333% - 110px);
    margin: 20px 55px;
    padding-bottom: 50px;
    box-sizing: border-box;
    /*border-bottom: 1px solid #C8D5E5;*/
}

.abtBtItmDblIcnAllCon_A {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.abtBtItmDblIcnCon_A {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 70px;
    min-width: 70px;
    margin-right: 5px;
    height: 70px;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 100vw;
    background-color: #FFF7F2;
}

.abtBtItmDblIcn_A {
    border-radius: 100vw;
    display: block;
    width: 100%;
}

.abtBtItmDblIcnLn_A {
    width: 100%;
    margin-left: 30px;
    border-bottom: 1px solid #C8D5E5;
}

.abtBtItmDblBs_A {
    margin-bottom: 10px;
    font-family: original-light;
    font-size: 26px;
    line-height: 1.1;
    color: #235897;
    display: none;
}

.abtBtItmDblBs_Bs {
    margin-bottom: 10px;
    font-family: original-light;
    font-size: 26px;
    line-height: 1.1;
    color: #235897;
}

.abtBtItmDblTx_A {
    display: flex;
    align-items: center;
    font-family: mont-regular;
    font-size: 17px;
    line-height: 2;
    color: #235695b3;
}

.abtBtItmDblTx_A_img {
    height: 20px;
    margin-right: 10px;
}


@media (max-width: 1800px) {
    .clrBgRn {
        width: 55vw;
        height: 55vw;
    }

    .clrBgBxCnt {
        width: 22vw;
    }
}

@media (max-width: 1400px) {
    .sldTxAllCon {
        padding-right: 90px;
    }

    .sldBs {
        font-size: 60px;
    }

    .sldLn {
        display: none;
    }

    .sldTwTxAllCon {
        padding-right: 90px;
    }

    .sldTwBs {
        font-size: 60px;
    }

    .sldTwLn {
        display: none;
    }

    .sldBtLfImgTp {
        width: 52%;
        height: 260px;
    }

    .sldBtLfImgBt {
        width: 330px;
        height: 350px;
    }

    .sldBtCenBs {
        font-size: 40px;
    }

    .sldBtCenTxAllCon {
        padding-left: 18%;
    }

    .sldBtCenTxCon {
        flex-direction: column;
    }

    .sldBtCenTx {
        width: 100%;
        padding: 0;
    }

    .sldBtCenTxTw {
        width: 100%;
        margin-top: 25px;
        padding: 0;
    }

    .sldBtRgImg {
        height: 260px;
    }

    .clrBgRn {
        width: 64vw;
        height: 64vw;
    }

    .clrBgRnBs {
        font-size: 60px;
    }

    .clrBgBxCnt {
        width: 25vw;
        padding: 25px;
    }

    .clrBgBxBs {
        font-size: 22px;
    }

    .bdyImg {
        width: calc(100% - 75px);
        height: 500px;
    }

    .sycBxBs {
        font-size: 52px;
    }

    .sycBxTx {
        font-size: 12px;
    }

    .dblBdyTxCon {
        width: 40%;
    }

    .dblBdyBs {
        font-size: 40px;
    }

    .dblBdyImg {
        width: 50%;
        height: 550px;
        padding: 40px 0 40px 60px;
    }

    .dfCntTpItmBs {
        font-size: 40px;
    }

    .dfCntBtBs {
        font-size: 40px;
        width: 90%;
    }

    .abtBs {
        font-size: 40px;
    }

    .abtBtBs {
        font-size: 40px;
    }

    .abtBdyTx {
        font-size: 40px;
    }

    .abtAcrHstBs {
        font-size: 40px;
    }

    .cntTitImg {
        margin-right: 50px;
    }

    .cntTitBs {
        font-size: 60px;
    }

    .cntInfCon {
        margin-right: 50px;
    }

    .mapIfrmHd {
        font-size: 40px;
    }

    .hbrMstTx {
        font-size: 40px;
    }

    .ovlBxBt {
        padding: 40px 30px 50px 30px;
    }

    .ovlBdyTxCon {
        padding-top: 40px;
    }

    .ovlBdyTwBs {
        font-size: 40px;
    }

    .ovlBdyThrBs {
        font-size: 40px;
    }

    .titCenBs {
        font-size: 40px;
    }

    .ovlBdyThrBs {
        font-size: 40px;
    }

    .prdBxBs {
        font-size: 26px;
    }

    .prdBxImg {
        height: 550px;
    }

    .othPgMstBs {
        margin-bottom: 60px;
        font-size: 72px;
    }

    .othPgBs {
        font-size: 26px;
        margin: 50px 0 20px 0;
    }

    .tpLfTxConBg {
        padding: 120px 0 80px 0;
        background-size: 40%;
    }

    .tpLfTxBs {
        font-size: 60px;
    }

    .smpDblImg {
        margin-right: 110px;
    }

    .smpDblDlgTx {
        font-size: 130px;
    }

    .slgTxCnt {
        padding-left: 100px;
    }

    .slgTx {
        font-size: 44px;
    }

    .slgTxBtLn {
        width: 125px;
    }

    .lstDblBs {
        font-size: 26px;
    }

    .titCenTwBs {
        font-size: 40px;
    }

    .lnBdyTpRgBs {
        font-size: 40px;
    }

    .lnBdyItmBs {
        font-size: 40px;
    }
}

@media (max-width: 1200px) {
    .sldTxLn {
        max-width: 60px;
        min-width: 60px;
        margin-right: 30px;
    }

    .sldImgCon {
        height: 62vh;
    }

    .sldTwImgCon {
        height: 62vh;
    }

    .sldBtCenBs {
        width: 75%;
    }

    .sldBtLfImgTp {
        width: 70%;
        height: 240px;
    }

    .sldBtLfImgBt {
        width: 300px;
        height: 340px;
    }

    .clrBg {
        padding: 320px 55px 550px 55px;
    }

    .clrBgRn {
        width: 55vw;
        height: 55vw;
    }

    .clrBgRnTxCon {
        padding: 0 100px;
    }

    .clrBgBxCnt {
        width: 28vw;
        padding: 20px;
    }

    .clrBgBxLfTp {
        left: -13vw;
        top: -10vw;
    }

    .clrBgBxRgTp {
        top: -6vw;
    }

    .clrBgBxLfBt {
        bottom: -12vw;
    }

    .clrBgBxRgBt {
        right: -10vw;
        bottom: -12vw;
    }

    .clrBgBxTx {
        font-size: 14px;
    }

    .clrBgBxNbr {
        background-size: 300%;
    }

    .dfCntTpItmCon {
        padding: 35px 60px 100px 60px;
    }

    .dfCntTpItm {
        width: 43%;
    }

    .dfCntBtTxAllCon {
        padding: 0 40px;
    }

    .dfCntBtFrm {
        padding: 0 50px;
    }

    .abtImgCon {
        min-width: 55%;
        max-width: 55%;
    }

    .pgBt {
        background-size: 170%;
    }

    .pgBtBs {
        font-size: 60px;
    }

    .mapBg {
        background-size: 170%;
    }

    .hbrA {
        width: calc(50% - 40px);
    }

    .prdTx {
        font-size: 22px;
    }

    .ovlBxCen {
        max-width: 900px;
    }

    .ovlBx {
        width: calc(50% - 40px);
        margin: 20px 20px;
    }

    .ovlBxBt {
        padding: 40px 50px 50px 50px;
    }

    .ovlBdyItmCon {
        max-width: 1000px;
    }

    .ovlBdyItm {
        width: calc(33.3333% - 30px);
        margin-bottom: 50px;
    }

    .ovlBdyTwImg {
        padding: 20px 30px 80px 30px;
    }

    .prdBxTxCon {
        margin-right: 0;
    }

    .prdBx:nth-child(even) .prdBxTxCon {
        margin-left: 0;
    }

    .prdBxImg {
        width: 50%;
        height: 450px;
        padding: 30px 0 30px 50px;
    }

    .othPgMstBs {
        font-size: 60px;
    }

    .lnBdyTp {
        justify-content: start;
    }

    .lnBdyTpRg {
        width: 70%;
    }

    .lstDblImg {
        margin-right: 70px;
        padding: 35px 45px;
        background-size: 180%;
    }

    .lstDblCon:nth-child(even) .lstDblImg {
        margin: 0 0 0 70px;
    }

    .lnBdyBtLf {
        width: 68%;
    }

    .lnBdyBtRg {
        width: 32%;
        padding-left: 70px;
    }
}

@media (max-width: 1020px) {
    .sldCon {
        min-height: auto;
        margin-bottom: 80px;
    }

    .sldTxAllCon {
        padding-top: 0;
        padding-right: 50px;
        padding-left: 0;
    }

    .sldBs {
        font-size: 44px;
    }

    .sldTxLn {
        max-width: 40px;
        min-width: 40px;
        margin-right: 20px;
    }

    .pgDwnA {
        margin-left: 0;
    }

    .sldImgCon {
        height: 60vh;
    }

    .sldTwCon {
        min-height: auto;
        margin-bottom: 80px;
    }

    .sldTwTxAllCon {
        padding: 0 50px 0 0;
    }

    .sldTwBs {
        font-size: 44px;
    }

    .sldTwTxLn {
        max-width: 40px;
        min-width: 40px;
        margin-right: 20px;
    }

    .sldTwPgDwnA {
        margin-left: 0;
    }

    .sldTwImgCon {
        height: 60vh;
    }

    .sldBtCenBs {
        font-size: 32px;
    }

    .sldBtRgImg {
        margin-top: 70px;
    }

    .clrBgRn {
        width: 60vw;
        height: 60vw;
    }

    .bdyImg {
        width: calc(100% - 55px);
        height: 400px;
    }

    .infBdyBs {
        font-size: 56px;
    }

    .sycBxBs {
        font-size: 40px;
    }

    .dblBdyBs {
        font-size: 32px;
    }

    .dfCntTpItmBs {
        font-size: 32px;
    }

    .dfCntBtBs {
        font-size: 32px;
    }

    .abtCon {
        padding-top: 80px;
    }

    .abtBs {
        font-size: 32px;
    }

    .abtBtBs {
        font-size: 32px;
    }

    .abtBdyTx {
        font-size: 32px;
    }

    .abtAcrHstBs {
        font-size: 32px;
    }

    .cntTitBs {
        font-size: 44px;
    }

    .cntInfItmLn {
        margin-right: 30px;
    }

    .mapIfrmHd {
        font-size: 32px;
    }

    .hbrMstTx {
        font-size: 32px;
    }

    .ovlBdyBs {
        font-size: 32px;
    }

    .ovlBdyTwBs {
        font-size: 32px;
    }

    .titCenBs {
        font-size: 32px;
    }

    .ovlBdyThrBs {
        font-size: 32px;
    }

    .tpLfTxConBg {
        background-size: 50%;
    }

    .tpLfTxBs {
        font-size: 44px;
    }

    .smpDblTx {
        width: 100%;
    }

    .smpDblImg {
        margin-right: 60px;
    }

    .smpDblDlgTx {
        font-size: 110px;
    }

    .slgTxCnt {
        padding-left: 70px;
    }

    .slgTx {
        font-size: 36px;
    }

    .slgTxBtLn {
        width: 110px;
        margin-right: 20px;
    }

    .titCenTwBs {
        font-size: 32px;
    }

    .lnBdyTpRgBs {
        font-size: 32px;
    }

    .lnBdyItmBs {
        width: calc(100% + 120px);
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .sldImgCon {
        height: 45vh;
    }

    .sldTwImgCon {
        height: 45vh;
    }

    .sldBtLf {
        width: 32%;
    }

    .sldBtLfImgTp {
        width: 70%;
        height: 210px;
    }

    .sldBtLfImgBt {
        width: 251px;
        height: 300px;
    }

    .sldBtCen {
        width: 48%;
    }

    .sldBtRgImg {
        height: 220px;
    }

    .clrBgRn {
        width: 64vw;
        height: 64vw;
    }

    .clrBgRnBs {
        font-size: 50px;
    }

    .dblBdyTxCon {
        width: 43%;
    }

    .abtImgCon {
        margin-top: -100px;
        padding: 50px;
    }

    .abtImg {
        height: 600px;
    }

    .abtBtBs {
        text-align: left;
    }

    .abtBtItm {
        width: 100%;
    }

    .abtBtDblBs {
        text-align: left;
    }

    .abtBtItmDbl {
        width: 100%;
    }

    .abtBtItmDblIcnLn {
        display: none;
    }

    .pgBt {
        background-size: 200%;
    }

    .pgBtBs {
        font-size: 44px;
    }

    .pgBtAltBs {
        font-size: 28px;
    }

    .cntTx {
        font-size: 16px;
    }

    .mapBg {
        background-size: 200%;
    }

    .hbrMstBs {
        width: 80%;
    }

    .hbrMstTx {
        width: 80%;
    }

    .prdTx {
        font-size: 20px;
    }

    .cenImg {
        height: 530px;
        padding: 55px 65px;
    }

    .othPgMstBs {
        font-size: 44px;
    }

    .tpLfTxConBg {
        padding: 120px 0 0 0;
    }

    .smpDblCon {
        flex-direction: column;
        padding: 0 100px;
    }

    .smpDblImg {
        width: 100%;
        margin: 0 0 80px 0;
    }

    .smpDblTxCon {
        width: 100%;
    }

    .slgTxCnt {
        padding-left: 45px;
    }

    .lstDblCon {
        flex-direction: column;
        padding: 50px 100px;
        border: none;
    }

        .lstDblCon:nth-child(even) {
            flex-direction: column;
        }

    .lstDblImg {
        width: 100%;
        margin: 0 0 80px 0;
        padding: 45px 55px;
    }

    .lstDblCon:nth-child(even) .lstDblImg {
        margin: 0 0 80px 0;
    }

    .lstDblTxCon {
        width: 100%;
    }

    .lnBdyItmBs {
        width: calc(100% + 50px);
    }

    .lnBdyBtRg {
        padding-left: 50px;
    }

    .abtBtItmDbl_A {
        width: calc(50% - 110px);
    }
}

@media (max-width: 850px) {
    .pgDwnA {
        display: none;
    }

    .sldTwPgDwnA {
        display: none;
    }

    .sldBt {
        padding-right: 55px;
        box-sizing: border-box;
    }

    .sldBtLfImgTp {
        width: 100%;
        height: 220px;
    }

    .sldBtLfImgBt {
        float: left;
        margin-left: 35px;
        width: 190px;
        height: 180px;
    }

    .sldBtCen {
        width: 68%;
        padding: 0 0 80px 40px;
    }

    .sldBtCenBs {
        width: 85%;
    }

    .sldBtCenTxAllCon {
        padding-left: 25px;
        padding-right: 0;
    }

    .sldBtRg {
        display: none;
    }

    .clrBg {
        padding: 100px 55px 250px 55px;
    }

    .clrBgRn {
        flex-direction: column;
        width: 100%;
        height: auto;
        border: none;
        border-radius: 0;
    }

    .clrBgRnTxCon {
        padding: 0;
        margin-bottom: 80px;
    }

    .clrBgBx {
        position: relative;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        width: 100%;
        height: min-content;
        margin-bottom: 60px;
    }

    .clrBgBxLfTp {
        left: auto;
        top: auto;
    }

    .clrBgBxRgTp {
        right: auto;
        top: auto;
    }

    .clrBgBxLfBt {
        left: auto;
        bottom: auto;
    }

    .clrBgBxRgBt {
        right: auto;
        bottom: auto;
    }

    .clrBgBxCnt {
        width: 100%;
        height: min-content;
        padding: 30px;
    }

    .clrBgBxBs {
        text-align: left;
    }

    .clrBgBxTx {
        text-align: left;
    }

    .clrBgBxNbr {
        position: relative;
        margin-right: 40px;
    }

    .clrBgBxNbrLfTp {
        top: auto;
        right: auto;
    }

    .clrBgBxNbrRgTp {
        top: auto;
        left: auto;
    }

    .clrBgBxNbrLfBt {
        bottom: auto;
        left: auto;
    }

    .clrBgBxNbrRgBt {
        bottom: auto;
        left: auto;
    }

    .dblBdyCon {
        flex-direction: column-reverse;
        align-items: end;
        box-sizing: border-box;
        margin-top: 80px;
    }

    .dblBdyCen {
        position: relative;
        transform: none;
        left: auto;
        top: auto;
        padding: 0;
    }

    .dblBdyTxCon {
        width: 100%;
        padding: 0 150px 0 55px;
        box-sizing: border-box;
    }

    .dblBdyImg {
        width: 85%;
        height: 500px;
        margin: 0 0 80px 0;
        padding: 40px 0 40px 60px;
    }

    .dfCntCen {
        width: 100%;
        padding: 0;
    }

    .dfCntBt {
        flex-direction: column;
        background-color: transparent;
        padding: 90px 0 0 0;
    }

    .dfCntBtTxAllCon {
        width: 100%;
        margin-bottom: 50px;
        padding: 0;
    }

    .dfCntBtTxLn {
        display: none;
    }

    .dfCntBtFrm {
        width: 100%;
        padding: 0;
    }

    .ovlBdyItmCon {
        max-width: 700px;
    }

    .ovlBdyItm {
        width: calc(50% - 30px);
    }

    .cenImg {
        height: 460px;
    }

    .prdBx {
        flex-direction: column;
        padding: 50px 0;
    }

        .prdBx:nth-child(even) {
            flex-direction: column;
        }

    .prdBxTxCon {
        width: 100%;
    }

    .prdBxImg {
        width: 100%;
        margin: 80px 0 0 0;
    }

    .prdBx:nth-child(even) .prdBxImg {
        margin: 80px 0 0 0;
    }

    .othPgImg {
        width: 80%;
    }

    .abtBtItmDbl_A {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .bdyImg {
        width: calc(100% - 30px);
        height: 300px;
    }

    .cntTitBg {
        padding-top: 0;
    }

    .cntTit {
        flex-direction: column;
    }

    .cntTitImg {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .cntTitBs {
        width: 100%;
        margin-top: 50px;
        padding-left: 0;
        font-size: 38px;
    }

    .cntCon {
        flex-direction: column;
    }

    .cntInfCon {
        width: 100%;
        margin-right: 0;
    }

    .cntSmCon {
        padding-left: 0;
    }

    .frmBs {
        font-size: 38px;
    }

    .frmCon {
        margin-top: 120px;
        padding-left: 0;
    }

    #uptPnlCnt {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .sldCon {
        margin-top: 0;
    }

    .sldCen {
        flex-direction: column-reverse;
    }

    .sldTxAllCon {
        width: 100%;
        margin-top: 45px;
        padding: 0 15px;
    }

    .sldTxLn {
        display: none;
    }

    .sldBs {
        font-size: 38px;
    }

    .sldImgCon {
        width: 100%;
    }

    .videoBgConDf {
        margin: 0 0 80px 0;
    }

    .sldTwCon {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .sldTwCen {
        flex-direction: column-reverse;
    }

    .sldTwTxAllCon {
        width: 100%;
        margin-top: 45px;
        padding: 0 15px;
    }

    .sldTwTxLn {
        display: none;
    }

    .sldTwBs {
        font-size: 38px;
    }

    .sldTwImgCon {
        width: 100%;
    }

    .clrBgRnBs {
        font-size: 38px;
    }

    .clrBgBxNbr {
        display: none;
    }

    .infBdyBs {
        font-size: 42px;
    }

    .sycCen {
        flex-direction: column;
    }

    .sycBx {
        width: 100%;
    }

        .sycBx:nth-child(2n) {
            border-left: none;
            border-right: none;
            border-top: 1px solid #c8d5e5;
            border-bottom: 1px solid #c8d5e5;
        }

    .dfCntTpItmCon {
        flex-direction: column;
    }

    .dfCntTpItm {
        width: 100%;
        margin-top: 80px;
    }

    .dfCntTpItmBs {
        font-size: 28px;
    }

    .abtCen {
        flex-direction: column;
        padding: 0 55px 50px 55px;
    }

    .abtImgCon {
        max-width: 100%;
        min-width: 100%;
        margin-top: 0;
        padding: 60px;
    }

    .abtImg {
        height: 700px;
    }

    .abtTxCon {
        width: 100%;
        margin-top: 80px;
    }

    .abtBs {
        font-size: 28px;
    }

    .abtBtBs {
        font-size: 28px;
    }

    .abtBdyTx {
        font-size: 28px;
    }

    .abtAcrHstBs {
        font-size: 28px;
    }

    .mapIfrmHd {
        font-size: 28px;
    }

    .hbrMstTx {
        font-size: 28px;
    }

    .hbrA {
        width: 100%;
        margin: 0 0 80px 0;
    }

    .prdTx {
        font-size: 18px;
    }

    .ovlBxBt {
        padding: 40px 30px 50px 30px;
    }

    .ovlBxTx {
        font-size: 13px;
    }

    .ovlBdyBs {
        font-size: 28px;
    }

    .ovlBdyTwBs {
        font-size: 28px;
    }

    .titCenBs {
        font-size: 28px;
    }

    .titCenTx {
        font-size: 15px;
    }

    .cenImgCon {
        padding: 0 30px;
    }

    .cenImg {
        height: 370px;
        padding: 40px 50px;
    }

    .ovlBdyThrBs {
        font-size: 28px;
    }

    .prdDgrBx {
        width: calc(50% - 20px);
    }

    .othPgLfImg {
        height: 180px;
    }

    .tpLfTxConBg {
        padding: 80px 0 0 0;
    }

    .smpDblCon {
        margin-top: 50px;
        padding: 0 55px;
    }

    .smpDblImg {
        margin: 0 0 50px 0;
    }

    .slgTxCnt {
        width: 100%;
        padding-left: 0;
    }

    .slgTx {
        font-size: 24px;
    }

    .slgTxBtLn {
        width: 40px;
    }

    .lstDblCon {
        padding: 50px 55px;
    }

    .titCenTwBs {
        font-size: 28px;
    }

    .titCenTwTx {
        font-size: 20px;
    }

    .lnBdyBg {
        background-repeat: no-repeat;
        background-size: 49%;
    }

    .lnBdyTpRg {
        width: 85%;
    }

    .lnBdyBt {
        flex-direction: column;
    }

    .lnBdyBtLf {
        width: 100%;
        padding-right: 0;
    }

    .lnBdyBtRg {
        width: 100%;
        border-left: none;
        padding-left: 0;
    }

    .videoBgCon {
        flex-wrap: wrap;
    }

    .videoBg {
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 600px) {
    .sldCon {
        margin-bottom: 20px;
    }

    .sldTwCon {
        margin-bottom: 20px;
    }

    .sldBt {
        flex-direction: column;
    }

    .sldBtLf {
        width: 55%;
    }

    .sldBtLfImgBtCon {
        display: none;
    }

    .sldBtCen {
        width: 100%;
        margin-top: 50px;
        padding-bottom: 50px;
    }

    .sldBtCenTxAllCon {
        padding-left: 25px;
    }

    .sldBtRg {
        display: block;
        width: 100%;
    }

    .sldBtRgImg {
        float: right;
        width: 40%;
        height: 200px;
        margin: -85px -35px 0 0;
        border-radius: 100vw 100vw 0 0;
    }

    .dblBdyCon {
        padding: 0 55px;
    }

    .dblBdyImg {
        width: 100%;
        height: 700px;
        padding: 35px 45px 35px 45px;
        border-radius: 100vw 100vw 100vw 100vw;
        background-size: 300%;
    }

        .dblBdyImg img {
            border-radius: 100vw 100vw 100vw 100vw;
        }

    .dblBdyTxCon {
        padding: 0;
    }

    .bdyImg {
        height: 230px;
    }

    .abtImgCon {
        padding: 50px;
    }

    .abtImg {
        height: 500px;
    }

    .abtAcrHstBg {
        padding: 80px 0;
    }

    .accordionTitLft {
        margin-left: 20px !important;
    }

    .accordion-section-content {
        padding: 0 0px 30px 30px !important;
    }

    .accordionTitLftAltBs {
        font-size: 13px !important;
    }

    .accordionTitLftTx {
        font-size: 12px !important;
    }

    .pgBt {
        background-size: 300%;
    }

    .pgBtBs {
        font-size: 38px;
    }

    .pgBtAltBs {
        font-size: 22px;
    }

    .mapBg {
        background-size: 300%;
    }

    .hbrMstBs {
        width: 100%;
    }

    .hbrMstTx {
        width: 100%;
    }

    .prdTx {
        font-size: 16px;
    }

    .ovlBxCon {
        padding-top: 70px;
    }

    .ovlBxCen {
        flex-direction: column;
        align-items: center;
        max-width: 800px;
    }

    .ovlBx {
        width: 100%;
        max-width: 350px;
        margin: 20px 0;
    }

    .ovlBdyTxCon {
        padding-top: 80px;
    }

    .ovlBdyItmCon {
        max-width: 400px;
    }

    .ovlBdyItm {
        width: 100%;
        min-height: 500px;
        margin: 0 0 50px 0;
    }

    .ovlBdyTwTxCon {
        padding: 50px 30px 20px 30px;
    }

    .cenImg {
        height: 300px;
        padding: 35px 45px;
    }

    .prdBxImg {
        height: 550px;
        margin: 50px 0 0 0;
        padding: 40px 50px 40px 50px;
        border-radius: 100vw 100vw 100vw 100vw;
        background-size: cover;
    }

        .prdBxImg img {
            border-radius: 100vw 100vw 100vw 100vw;
        }

    .prdBx:nth-child(even) .prdBxImg {
        margin: 50px 0 0 0;
        padding: 40px 50px 40px 50px;
        border-radius: 100vw 100vw 100vw 100vw;
    }

        .prdBx:nth-child(even) .prdBxImg img {
            border-radius: 100vw 100vw 100vw 100vw;
        }

    .othPgCon {
        padding: 80px 55px 120px 55px;
    }

    .othPgMstBs {
        font-size: 38px;
    }

    .smpDblDlgTx {
        font-size: 75px;
    }

    .lstDblCon {
        padding: 30px 55px;
    }

    .lstDblImg {
        margin: 0 0 50px 0;
        padding: 30px 40px;
        background-size: 250%;
    }

    .lstDblTx {
        width: 100%;
    }

    .lnBdyItmRg {
        padding: 25px 0 25px 25px;
    }

    .puInfBxTx {
        font-size: 18px;
    }
}

@media (max-width: 450px) {
    .sldCen {
        padding: 0 15px;
    }

    .sldTwCen {
        padding: 0 15px;
    }

    .sldBt {
        padding-right: 30px;
    }

    .sldBtLf {
        width: 65%;
        height: 200px;
    }

    .sldBtCen {
        padding-left: 30px;
    }

    .sldBtCenTxAllCon {
        padding-left: 0;
    }

    .sldBtCenBs {
        width: 95%;
    }

    .sldBtRgImg {
        width: 60%;
        height: 200px;
        margin: 0 -30px 80px 0;
        border-radius: 100vw 0 0 100vw;
    }

    .clrBg {
        padding: 100px 30px 250px 30px;
    }

    .infBdyCen {
        padding: 0 30px;
    }

    .sycCen {
        padding: 0 30px;
    }

    .dblBdyCon {
        padding: 0 30px;
    }

    .dblBdyImg {
        height: 500px;
        padding: 25px 35px 25px 35px;
    }

    .dfCntTpItmCon {
        padding: 35px 30px 100px 30px;
    }

    .dfCntBtCen {
        padding: 0 30px;
    }

    .abtCen {
        padding: 0 30px 0 30px;
    }

    .abtImg {
        height: 420px;
    }

    .abtBtBs {
        padding: 0 30px;
    }

    .abtBtItm {
        margin: 20px 30px;
    }

    .abtBtDblBs {
        padding: 0 30px;
    }

    .abtBtItmDbl {
        margin: 20px 30px;
    }

    .abtBdyTx {
        padding: 0 30px;
    }

    .abtBdyIcnCon {
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .abtBdyIcn {
        width: calc(50% - 30px);
        max-width: none;
        margin: 0 15px 15px 15px;
    }

    .abtAcrHstCen {
        padding: 0 30px 0 55px;
    }

    .pgBtBs {
        padding: 0 30px;
    }

    .pgBtAltBs {
        padding: 0 30px;
    }

    .cntTit {
        padding: 0 30px;
    }

    .cntCon {
        padding: 50px 30px 0px 30px;
    }

    .map {
        padding: 0 30px;
    }

    .hbrMstBsCon {
        padding: 80px 30px;
    }

    .hbrCon {
        padding: 0 30px 100px 30px;
    }

    .sssInfCon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 520px;
        margin: 0 auto;
        padding: 100px 15px 120px 15px;
        box-sizing: border-box;
    }

    .sssInfIcn {
        height: 32px;
        margin-bottom: 10px;
    }

    .sssInfBs {
        margin-bottom: 10px;
        font-family: HelveticaNeueLTProBd;
        font-size: 16px;
        text-align: center;
        color: #666e75;
    }

    .sssInfTx {
        font-family: HelveticaNeueLTProLt;
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        color: #44444448;
    }

        .sssInfTx a {
            color: #BB1E32;
        }

            .sssInfTx a:hover {
                text-decoration: underline;
            }

    .prdTxCon {
        padding: 0 30px;
    }

    .prdTx {
        font-size: 14px;
    }

    .ovlBxCen {
        padding: 0 30px;
    }

    .ovlBdy {
        padding-bottom: 80px;
    }

    .ovlBdyTxCon {
        padding: 80px 30px 0 30px;
    }

    .ovlBdyItmCon {
        margin: 80px auto 0 auto;
        padding: 0 30px;
    }

    .ovlBdyTwTxCon {
        padding: 50px 30px 0 30px;
    }

    .titCenTxCon {
        padding: 0 30px;
    }

    .cenImg {
        height: 230px;
        padding: 20px 30px;
    }

    .ovlBdyThrTxCon {
        padding: 50px 30px;
    }

    .prdBxCon {
        padding: 0 30px;
    }

    .prdBxImg {
        height: 450px;
        padding: 30px 40px 30px 40px;
        background-size: 230%;
    }

        .prdBxImg img {
            border-radius: 100vw 100vw 100vw 100vw;
        }

    .prdBx:nth-child(even) .prdBxImg {
        padding: 30px 40px 30px 40px;
    }

    .othPgCon {
        padding: 80px 30px 120px 30px;
    }

    .othPgMstBs {
        width: 100%;
    }

    .tpLfTxCon {
        padding: 0 30px;
    }

    .smpDblCon {
        padding: 0 30px;
    }

    .slgTxCon {
        margin: 50px auto 100px auto;
        padding: 0 30px;
    }

    .lstDblCon {
        padding: 30px 30px;
    }

    .lstDblImg {
        padding: 20px 30px;
    }

    .titCenTwTxCon {
        padding: 0 30px;
    }

    .lnBdyCen {
        padding: 0 30px;
    }

    .lnBdyItmBs {
        width: calc(100% + 30px);
    }

    .videoBgCon {
        padding: 30px;
    }

    .videoBg {
        padding: 15px;
        background-size: 300%;
    }

    .videoBgCon {
        padding: 0 30px;
    }

    #puInf {
        padding: 30px;
    }

    .puInfBx {
        padding: 30px;
    }

    .abtBtDblBs_A {
        padding: 0 30px;
    }

    .abtBtItmDbl_A {
        width: calc(100% - 60px);
        margin: 20px 30px;
    }
}
