@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,600;1,300;1,600&display=swap');

*, *:before, *:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
:root {
    --dark-cerulean: #0C3459;
    --white: #FFFFFF;
    --black: #000000;
    --sunshade: #FA9124;
    --montserrat: 'Montserrat', sans-serif;
}
@media screen and (prefers-reduced-motion: no-preference) {
    html,
    body {
        scroll-behavior: smooth;
    }
}
body {
    background-color: var(--white);
    color: var(--black);
    font: 300 14px/24px var(--montserrat);
}
@media (min-width:768px) {
    body {
        font: 300 16px/26px var(--montserrat);
    }
}
p + p {
    margin-top: 25px;
}
.fs26 {
    font-size: 26px;
}
.fc-white {
    color: var(--white);
}
.text-center {
    text-align: center;
}
.d-block {
    display: block;
}
a {
    text-decoration: none;
    outline: none;
}

.section-welcome {
    background-color: #0C3459;
    background-size: 50%, 30%, 70%;
    background-position: top 0 left 0, top 0 right 0, bottom 0 center;
    background-image: url(../images/bnr-bg-lft.png), url(../images/bnr-bg-r8.png), url(../images/bnr-bg-btm.png);
    background-attachment: fixed, fixed, scroll;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    border-bottom-left-radius: 80% 10%;
    border-bottom-right-radius: 80% 10%;
    height: auto;
    position: relative;
    transform-origin: bottom;
    width: 100%;
}
@media (min-width:768px) {
    .section-welcome {
        border-bottom-left-radius: 100% 20%;
        border-bottom-right-radius: 100% 20%;

    }
}
@media (min-width:1600px) {
    .section-welcome {
        background-size: 569px, 325px, 735px;
        border-bottom-left-radius: 50% 20%;
        border-bottom-right-radius: 50% 20%;
        height: 650px;

    }
}
.hdr-container {
    padding: 15px 30px;
    position: relative;
}
.su-logo {
    background: url(../svg/logo.svg) no-repeat 0 0;
    background-size: cover;
    display: block;
    font-size: 0;
    height: 50px;
    width: 244px;
}
@media (min-width: 1600px) {
    .hdr-container {
        margin: 0 auto;
        padding: 30px 10%;
    }

    .su-logo {
        height: 70px;
        width: 336px;
    }
}
.welcome-wrap {
    color: var(--white);
    display: grid;
    grid-gap: 45px;
    padding: 0 30px;
}
@media (min-width: 768px) {
    .welcome-wrap {
        padding: 0 12%;
    }
}
@media (min-width: 1600px) {
    .welcome-wrap {
        grid-template-columns: auto 720px;
        grid-gap: 100px;
        padding: 0 10%;
    }
}
.welcome-wrap p:first-of-type {
    margin-top: 15px;
}
@media (min-width:768px) {
    .welcome-wrap p:first-of-type {
        margin-top: 50px;
    }
}
@media (min-width:1600px) {
    .welcome-wrap p:first-of-type {
        margin-top: 90px;
    }
}
.welcome-img-col img {
    height: auto;
    margin-bottom: -50px;
    width: 100%;
}
.container {
    padding: 50px 30px;
    position: relative;
}
@media (min-width: 768px) {
    .container {
        margin: 0 auto;
        padding: 50px 12%;
    }
}
@media (min-width: 1600px) {
    .container {
        margin: 0 auto;
        padding: 100px 0;
        width: 1110px;
    }
}
.secn-hdn {
    display: block;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
}
@media (min-width:768px) {
    .secn-hdn {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 15px;
    }
}
.secn-hdn-gap {
    margin-top: 50px;
}
.card {
    padding: 21px 15px 5px;
}
@media (min-width:1600px) {
    .card:last-child {
        padding-right: 2px;
    }

    .card:first-child {
        padding-left: 2px;
    }
}
.card-block {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.card-img-box {
    display: block;
    overflow: hidden;
    position: relative;
}
.card-img-box .card-img {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.card-img-box .card-img img {
    height: auto;
    width: 100%;
}
.card-img-box .card-img::before {
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
    background-blend-mode: multiply;
    content: '';
    height: 100%;
    left: 0px;
    opacity: 0.7;
    position: absolute;
    right: 0px;
    transition: all 500ms ease;
    top: 0px;
    width: 100%;
    z-index: 1;
}
.card-dtls {
    position: relative;
    padding: 25px 30px 30px;
    z-index: 2;
}
.card-icon {
    align-items: center;
    background-color: var(--sunshade);
    display: flex;
    position: absolute;
    height: 70px;
    justify-content: center;
    position: absolute;
    right: 15px;
    text-align: center;
    top: -53px;
    width: 70px;
    z-index: 3;
}
.card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
}
@media (min-width:768px) {
    .card-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
    }
}
.carousel-three-col .slick-track {
    display: flex !important;
}

.carousel-three-col .slick-slide {
    height: inherit !important;
}
.arrow-wrap {
    margin-top: 30px;
}
.prev-btn,
.next-btn {
    align-items: center;
    background-color: var(--white);
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    font-size: 0;
    line-height: 0;
    height: 40px;
    justify-content: center;
    margin-right: 10px;
    width: 40px;
}
.prev-btn:after,
.next-btn:after {
    background: url(../svg/angle.svg) no-repeat 0 0;
    content: '';
    display: block;
    height: 13px;
    width: 8px;
}

.next-btn:after {
    transform: rotate(180deg);
}
.prev-btn:hover:after,
.next-btn:hover:after {
    background: url(../svg/angle-o.svg);
}
.about-team {
    background: url(../images/team-bg.jpg) no-repeat 0 0 var(--dark-cerulean);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.about-team .container {
    display: grid;
    grid-gap: 45px;
}
@media (min-width: 1600px) {
    .about-team .container {
        align-items: center;
        grid-template-columns: auto 50%;
        grid-gap: 100px;
    }
}
.team-img-wrap img {
    height: auto;
    width: 100%;
}
.partners {
    align-content: center;
    display: flex;
    height: 30px;
    justify-content: center;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
}
@media (min-width:768px) {
    .partners {
        height: 40px;
    }
}
@media (min-width:1600px) {
    .partners {
        height: 50px;
    }
}
.partners div {
    padding: 0 10px;
    position: relative;
}
@media (min-width:768px) {
    .partners div {
        padding: 0 20px;
    }
}
@media (min-width:1600px) {
    .partners div {
        padding: 0 30px;
    }
}
.partners div:first-child {
    padding-left: 0;
}
.partners div:last-child {
    padding-right: 0;
}
.partners div img {
    height: 30px;
}
@media (min-width:768px) {
    .partners div img {
        height: 40px;
    }
}
@media (min-width:1600px) {
    .partners div img {
        height: 50px;
    }
}
.partners div + div:before {
    background-color: rgba(0, 0, 0, 0.1);
    content: '';
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}
@media (min-width:1600px) {
    .partners div + div:before {
        height: 30px;
    }
}
.section-contact {
    background-color: #0C3459;
}
@media (min-width:1600px) {
    .section-contact {
        margin-top: 50px;
    }
}
.iframe-container {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    height: 500px;
    width: 100%;
}
@media (min-width:1600px) {
    .iframe-container {
        height: 500px;
        margin: -50px 0;
    }
}
.iframe-container iframe {
    border: none;
    height: 100%;
    width: 100%;
}
.contact-container {
    display: grid;
    position: relative;
}
@media (min-width:1600px) {
    .contact-container {
        grid-template-columns: auto 50%;
        padding: 0 10%;
    }
}
.contact-wrap {
    display: block;
    padding: 50px 30px;
    width: auto;
}
@media (min-width:768px) {
    .contact-wrap {
        margin: auto;
    }
}
@media (min-width:1600px) {
    .contact-wrap {
        margin: auto 0;
        padding: 0 70px;
    }
}
.contact-logo-gap {
    margin-bottom: 30px;
}
.contact-call, .contact-mail, .contact-location {
    display: flex;
    color: var(--white);
    grid-gap: 15px;
    line-height: 22px;
    vertical-align: middle;
}
.contact-call::before {
    background: url(../svg/call-icn.svg) no-repeat 0 0;
    content: '';
    display: block;
    height: 20px;
    margin-bottom: 15px;
    width: 20px;
}
.contact-mail::before {
    background: url(../svg/mail-icn.svg) no-repeat 0 0;
    content: '';
    display: block;
    height: 20px;
    margin-top: 2px;
    margin-bottom: 15px;
    width: 20px;
}
.contact-location::before {
    background: url(../svg/location-icn.svg) no-repeat 0 0;
    content: '';
    display: block;
    height: 20px;
    width: 20px;
}
.copyright {
    background-color: var(--white);
    font: 300 14px/24px var(--montserrat);
    padding: 50px 30px;
}
@media (min-width:1600px) {
    .copyright {
        font: 300 16px/26px var(--montserrat);
        margin-top: 100px;
    }
}
