/*
Theme Name: yaden
Theme URI: https://www.yadensg.com
Author: Kelvin
Author URI: https:/www.thineover.com
Version: 1.0
*/






html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, ul, li, ol, dl, dt, dd, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0 none;
    margin: 0;
    outline: 0 none;
    padding: 0;
    text-decoration:none;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth; /* 启用全局平滑滚动 */
  }


@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/poppins-v21-latin-300.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v21-latin-regular.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/poppins-v21-latin-500.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/poppins-v21-latin-600.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/poppins-v21-latin-700.woff2') format('woff2'); 
}




body {
    font-family: 'Poppins', 'Noto Sans SC', "PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;
    color: #17294d;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}

a {
    color: #17294d;
}
a:focus, a:hover {
    text-decoration: none;
    outline: none;
    cursor: pointer;
}
a, a:visited, a:focus {
    -webkit-transition: all 0.2s ease-out 0s;
       -moz-transition: all 0.2s ease-out 0s;
            transition: all 0.2s ease-out 0s;
}
h1 {
    font-size: 32px;
    font-weight: 700;
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 22px;
}
h4 {
    font-size: 18px;
}
h2, h3, h4 {
    font-weight: 500;
}
h1,h2,h3,h4 {
    line-height: 160%;
}
p {
    line-height: 180%;
}
.en p {
    line-height: 160%;
}
ul {
    list-style: none;
}
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 30px;
    border-radius: 80px;
    cursor: pointer;
}
.btn-blue {
    color: #ffffff;
    background-color: rgba(88,140,219,1);
}
.btn-black {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 1);
}
.btn-blue:hover {
    background-color: rgba(88,140,219,0.8);
}
.btn-black:hover {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.8);
}
.links {
    display: flex;
}
::selection {
    color: #ffffff;
    background-color: #17294d;
}
::-webkit-selection {
    color: #ffffff;
    background-color: #17294d;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.line {
    display: flex;
    flex-direction: column;
}
.line::after {
    content: '';
    width: 100%;
    height: 1px;
}


@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn 1.4s forwards;
            animation: fadeIn 1.4s forwards;
}

@-webkit-keyframes fadeUp {
  0%{
        opacity:0;
        transform:translateY(20px)
    }
    to{
        opacity:1;transform:none}
    }
}

@keyframes fadeUp {
    0%{
        opacity:0;
        transform:translateY(20px)
    }
    to{
        opacity:1;
        transform:none
    }
}
.fadeUp {
    opacity: 0;
    -webkit-animation: fadeUp 1.4s forwards;
            animation: fadeUp 1.4s forwards;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
    opacity: 0;
    -webkit-animation: fadeInRight 1.4s forwards;
            animation: fadeInRight 1.4s forwards;
}


@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
    opacity: 0;
    -webkit-animation: fadeInleft 1.4s forwards;
            animation: fadeInleft 1.4s forwards;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation: fadeInUp 1.4s forwards;
          animation: fadeInUp 1.4s forwards;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}



.wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
.container {
    max-width: 1920px;
    padding-left: 32px;
    padding-right: 32px;
    margin-left: auto;
    margin-right: auto;
}



@-webkit-keyframes colors{
    0%{background-position:0 50%}
    50%{background-position:100% 50%}
    100%{background-position:0 50%}
}
@keyframes colors{
    0%{background-position:0 50%}
    50%{background-position:100% 50%}
    100%{background-position:0 50%}
}



@media (min-width: 768px) {
    
    .container {
        padding-left: 48px;
        padding-right: 48px;
    }
    
    
}

@media (min-width: 1200px) {
    
    .btn {
        font-size: 20px;
        padding-left: 48px;
        padding-right: 48px;
    }
    .container {
        padding-left: 100px;
        padding-right: 100px;
    }
    
}

@media (min-width: 1440px) {
    
}


    
    
/* Header */


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 110;
    -webkit-transition: all 0.5s;
            transition: all 0.5s;
}
.header.scrollUp {
    -webkit-transform: translateY(-130px);
            transform: translateY(-130px);
}
.header.header-fixed {
    background-color: #ffffff;
}
.header .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.header .logo {
    display: flex;
    justify-content: left;
    align-items: center;
}
.header .logo a {
    display: block;
    width: 140px;
    height: 30px;
    text-indent: -9999px;
    background: rgba(0, 0, 0, 0) url(images/logo.svg) no-repeat left center / auto 30px;
}
.header .right {
    display: flex;
    align-items: center;
}
.language {
    margin-left: 40px;
}
.home .language a {
    color: #ffffff;
}
.home .header-fixed .language a {
    color: #17294d;
}
.zh-hans .language .zh-hans, .en .language .en {
    display: none;
}
.home .header .logo a {
    background-image: url(images/logo-white.svg);
}
.home .header-fixed.header .logo a {
    background-image: url(images/logo.svg);
}

@media (min-width: 1200px) {
    .header {
        padding-top: 2em;
        padding-bottom: 2em;
    }
    .header .logo a {
        width: 170px;
        height: 40px;
        background-size: auto 40px;
    }
    .header .right {
        justify-content: space-between;
        width: 65%;
    }
    .header .right button.toggle-menu {
        display: none;
    }
    .header .right .navbar ul.nav {
        display: flex;
    }
    .header .right .navbar ul.nav li {
        margin-right: 40px;
    }
    .header .right .navbar ul.nav li a {
        font-size: 24px;
    }
    .home .header .right .navbar ul.nav li a {
        color: #ffffff;
    }
    .home .header.header-fixed .right .navbar ul.nav li a {
        color: #17294d;
    }
    
    .language {
        display: flex;
        align-items: center;
    }
    .header .language::before, .header.header-fixed .language::before {
        content: "";
        display: flex;
        width: 24px;
        height: 24px;
        margin-right: 10px;
        background-image:url(images/svg/icon-globe-black.svg;);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: auto 24px;
    }
    .home .language::before {
        background-image:url(images/svg/icon-globe-white.svg);
    }
    
    
}
@media (max-width: 1199px) {
    body.stop {
        overflow-y: hidden;
    }
    .mask {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        opacity: 0;
        overflow-x: hidden;
        text-align: center;
        background-color: #17294d;
        visibility: hidden;
        z-index: 100;
        -webkit-transition: all 1s ease-in-out;
                transition: all 1s ease-in-out;
    }
    

    .mask li {
        display: flex;
        margin: 20px 0;
        justify-content: center;
        visibility:hidden;
        -webkit-animation-duration: 1.0s;
                animation-duration: 1.0s;
        -webkit-animation-fill-mode: both;
                animation-fill-mode: both;
        -webkit-animation-name: fadeInDown;
                animation-name: fadeInDown;
    }
    
    .mask ul li a {
        position: relative;
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        -webkit-transition: opacity 0.3s ease-in-out;
                transition: opacity 0.3s ease-in-out;
    }
    .mask ul li.active a::after {
        /*content: "";*/
        background-color: #9FD4CA;
        bottom: -8px;
        height: 3px;
        left: 0;
        position: absolute;
        width: 100%;
    }
    .mask .navbar {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
    }
    .mask .navbar ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .mask .navbar a {
        display: block;
        color: rgba(255,255,255,0.5);
        font-size: 24px;
        font-weight: 300;
        padding: 0;
        text-decoration: none;
    }
    .mask .navbar .language a {
        font-size: 20px;
    }
    .mask .navbar a:first {
        padding-top: 0;
    }
    .mask.open {
        opacity: 1;
        visibility: visible;
    }
    .mask.open li {
        visibility: visible;
        -webkit-animation-duration: 1.0s;
                animation-duration: 1.0s;
        -webkit-animation-fill-mode: both;
                animation-fill-mode: both;
        -webkit-animation-name: fadeInUp;
                animation-name: fadeInUp;
    }
    .mask.open .nav li:nth-child(1) {
        -webkit-animation-delay: 0.1s;
                animation-delay: 0.1s;
    }
    .mask.open .nav li:nth-child(2) {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }
    .mask.open .nav li:nth-child(3) {
        -webkit-animation-delay: 0.3s;
                animation-delay: 0.3s;
    }
    .mask.open .nav li:nth-child(4) {
        -webkit-animation-delay: 0.4s;
                animation-delay: 0.4s;
    }
    .mask.open .nav li:nth-child(5) {
        -webkit-animation-delay: 0.5s;
                animation-delay: 0.5s;
    }
    .mask.open .nav li:nth-child(6) {
        -webkit-animation-delay: 0.6s;
                animation-delay: 0.6s;
    }
    .mask.open .nav li:nth-child(7) {
        -webkit-animation-delay: 0.7s;
                animation-delay: 0.7s;
    }
    .mask.open .nav li:nth-child(8) {
        -webkit-animation-delay: 0.8s;
                animation-delay: 0.8s;
    }
    .mask.open .nav li:nth-child(9) {
        -webkit-animation-delay: 0.9s;
                animation-delay: 0.9s;
    }
    .mask.open .language li {
        -webkit-animation-delay: 1s;
                animation-delay: 1s;
    }
    
    .mask.open .navbar .active a {
        color: #ffffff;
    }
    

    .toggle-menu {
        display: inline-block;
        position: relative;
        width: 40px;
        height: 40px;
        outline: none;
        padding: 0;
        pointer-events: initial;
        vertical-align: middle;
        background-color: transparent;
        border: none;
        cursor: pointer;
        z-index: 200;
    }
    .toggle-menu span {
        content: "";
        display: block;
        width: 32px;
        height: 3px;
        left: 10px;
        position: absolute;
        top: calc(50% - 1px );
        background-color: #17294d;
        -webkit-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
        -webkit-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  -webkit-transform 0.2s linear;
                transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  -webkit-transform 0.2s linear;
                transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear;
                transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear, -webkit-transform 0.2s linear;
    }
    .toggle-menu span:before, .toggle-menu span:after {
        content: "";
        display: block;
        width: 24px;
        height: 3px;
        position: absolute;
        background-color: #17294d;
        -webkit-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
        -webkit-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  -webkit-transform 0.2s linear;
                transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  -webkit-transform 0.2s linear;
                transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear;
                transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear, -webkit-transform 0.2s linear;
    }

    .toggle-menu span:before {
        top: 10px;
    }
    .toggle-menu span:after {
        top: -10px;
    }
    .toggle-menu.active span, .home .header .toggle-menu.active span, .home .header.header-fixed .toggle-menu.active span {
        background-color: transparent;
        -webkit-transition: background 0.2s ease-out;
                transition: background 0.2s ease-out;
    }
    .toggle-menu.active span:before, .toggle-menu.active span:after {
        -webkit-transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
                transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
                transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
                transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
    }
    .toggle-menu.active span:before {
        top: 0;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
                transform: rotate3d(0, 0, 1, -45deg);
    }
    .toggle-menu.active span:after {
        top: 0;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
                transform: rotate3d(0, 0, 1, 45deg);
    }

    .home .header .toggle-menu span, .home .header .toggle-menu span:before, .home .header .toggle-menu span:after,.home .header.header-fixed .toggle-menu.active span:before, .home .header.header-fixed .toggle-menu.active span:after {
        background-color: #ffffff;
    }
    .home .header.header-fixed .toggle-menu span, .home .header.header-fixed .toggle-menu span:before, .home .header.header-fixed .toggle-menu span:after {
        background-color: #17294d;;
    }
}


/* Home ################################ */

.home .section-banner .banner {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
.home .section-banner .banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.2);
    z-index: 0;
}
.home .section-banner .banner .content {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 10%;
    left: 0;
    align-items: flex-end;
    z-index: 1;
}
.home .section-banner .banner .content .slogan {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 140%;
}
.home .section.share {
    padding: 50px 0;
}
.home .section-about .subtile {
    color: #17294d;
    border-top: solid 1px #17294d;
}
.home .section-about .heading {
    color: #17294d;
}
.home .section-about .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.home .section-about .content .list {
    width: 45%;
    padding-top: 10px;
    padding-bottom: 30px;
    border-top: solid 1px #e5e5e5;
}
.home .section-about .content .list .number {
    color: #a7a7a7;
    padding-right: 30px;
}
.home .section-about .content .list .name {
    color: #17294d;
}

.home .section-projects.section.share {
    background-color: #17294d;
    padding-bottom: 0;
}
.home .section-projects .subtile  {
    color: #ffffff;
    border-top: solid 1px #ffffff;
}
.home .section-projects .heading span {
    color: #5584c4;
}
.home .section-projects .heading {
    color: #ffffff;
}

.home .section-projects .content {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0 auto;
    z-index: 2;
}
.home .section-projects .content .item {
    position: relative;
      width: 100%;
      background-color: #fff;
      overflow: hidden;
}
.home .section-projects .content .item::before {
      content: "";
      display: block;
      padding-top: 100%; 
    }
.home .section-projects .content .item .inner {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 30px;
}
.home .section-projects .content .item .icon {
    width: 100px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 60px;
}
.home .section-projects .content > .item:nth-child(2) .icon {
    background-image: url(images/svg/icon-a.svg);
}
.home .section-projects .content > .item:nth-child(3) .icon {
    background-image: url(images/svg/icon-b.svg);
}
.home .section-projects .content > .item:nth-child(4) .icon {
    background-image: url(images/svg/icon-c.svg);
}
.home .section-projects .content > .item:nth-child(5) .icon {
    background-image: url(images/svg/icon-d.svg);
}

.home .section-projects .content .item .info .title {
    color: #17294d;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}
.home .section-projects .content .item p {
    color: #17294d;
}
.home .section-projects .content > .item:first-child, .home .section-projects .content .item:last-child {
    display: none;
    background-color: transparent;
    pointer-events: none;
    visibility: hidden;
}
.home .section-projects .content > .item:nth-child(2) { background-color: #dedede; }
.home .section-projects .content > .item:nth-child(3) { background-color: #588cdb; }
.home .section-projects .content > .item:nth-child(4) { background-color: #ffffff; }
.home .section-projects .content > .item:nth-child(5) { background-color: #ccd6d1; }
.home .swiper-projects {
    position: relative;
    margin-top: -50px;
    overflow-x:hidden;
}
.home .swiper-projects .swiper-slide {
    height: 400px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.home .swiper-projects .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background-color: #ffffff;
    border-radius: inherit;
}


.home .section-news .subtile {
    color: #17294d;
    border-top: solid 1px #17294d;
}
.home .section-news .content {
    width: 100%;
}

.section-contact .container {
    padding-top: 50px;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 100%;
}
.section-contact .heading {
    color: #ffffff;
    font-size: 32px;
    font-weight: 500;
    padding-top: 0;
    padding-bottom: 30px;
}
.section-contact p {
    color: #ffffff;
}
.contact-from div.wpforms-container-full .wpforms-field-label, .contact-from .wp-core-ui div.wpforms-container-full .wpforms-field-label {
    color: #ffffff;
}
.contact-from .wpforms-container .wpforms-field-label, .contact-from .wp-core-ui div.wpforms-container .wpforms-field-label {
    font-weight: normal;
}
.section-contact .wpforms-submit {
    height: auto! important;
    padding: 18px 30px !important;
    border-radius: 80px !important;
    background-color: rgba(88, 140, 219, 1) !important;
}
.section-contact div.wpforms-container .wpforms-form input, .section-contact div.wpforms-container .wpforms-form textarea {
    background-color: rgba(255,255,255,0.5);
    border-color:transparent;
}



.home .section.share .heading {
    font-size: 32px;
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 60px;
}
.home .section.share .subtile {
    padding-top: 15px;
}



@media (min-width: 768px) {

}
@media (min-width: 1200px) {
    .home .section-banner .banner {
        height: 920px;
    }
    .home .section-banner .banner .content .slogan {
        font-size: 72px;
        max-width: 65%;
        margin-bottom: 60px;
    }
    .home .section.share {
        padding: 110px 0;
    }
    .home .section.share .subtile {
        font-size: 24px;
        padding-top: 30px;
        border-width: 2px;
    }
    .home .section.share .heading {
        font-size: 64px;
        max-width: 80%;
        padding-top: 50px;
        padding-bottom: 90px;
    }
    .home .section-about .content {
        max-width: 80%;
        margin-left: auto;
    }
    .home .section-about .content .list {
        padding-top: 25px;
        padding-bottom: 60px;
    }
    .home .section-about .content .list .number {
        padding-bottom: 10px;
    }
    .home .section-about .content .list .name {
        font-size: 26px;
    }
    .home .swiper-projects {
        margin-top: -150px;
    }
    .home .section-projects .content {
        grid-template-columns: repeat(3, 1fr);
    }
   .home .section-projects .content > .item:first-child, .home .section-projects .content .item:last-child {
       display: block;
    }
    .home .section-projects .content .item .info .title {
        font-size: 26px;
    }
    .home .section-projects .content .item p {
        font-size: 18px;
    }
    .home .swiper-projects .swiper-slide {
        height: 700px;
    }
    .home .section-news .content {
        max-width: 80%;
        margin-left: auto;
    }
    
    .section-contact .container {
        padding: 110px 100px;
        background-size: cover;
    }
    .section-contact .heading {
        font-size: 64px;
    }
    .section-contact p {
        font-size: 20px;
    }
    .contact-from {
        max-width: 50%;
        margin-left: auto;
    }
    
}
@media (min-width: 1920px) {
    .section-contact {
        padding-top: 120px;
        margin-bottom: 120px;
    }
    
}





/* Page */

.main {
    min-height: 500px;
}
.full-image-section {
    min-height: 450px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero {
    padding-top: 50px;
    padding-bottom: 50px;
}
.hero .heading {
    font-size: 32px;
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 60px;
}
.hero .heading span {
    color: #588cdb;
}

@media (min-width: 1200px) {

    .hero {
        padding-top: 110px;
        padding-bottom: 110px;
    }
    .hero .container {
        display: flex;
        justify-content: space-between;
    }
    .hero .title {
        font-size: 20px;
    }
    .hero .info {
        max-width: 70%;
        flex: none;
    }
    .hero .info .heading {
        font-size: 64px;
        padding-top: 0px;
    }
    .hero .info p {
        font-size: 26px;
    }
    .full-image-section {
        min-height: 900px;
    }
}



/* About ################################ */


.about .our-mission {
    color: #ffffff;
    padding: 50px 0;
    background-color: #17294d;
}
.about .our-mission .subtile {
    color: #ffffff;
    padding-top: 15px;
    border-top: solid 1px #ffffff;
}
.about .our-mission .heading {
    font-size: 32px;
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 60px;
}
.about .our-mission .heading span {
    color: #588cdb;
}
.about .our-services {
    padding: 50px 0;
}
.about .our-services .subtile {
    padding-top: 15px;
    padding-bottom: 60px;
    border-top: solid 1px #17294d;
}
.about .our-services .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about .our-services .content .list {
    width: 45%;
    padding-top: 10px;
    padding-bottom: 30px;
    border-top: solid 1px #d5d5d5;
}
.about .our-services .content .list .number {
    color: #a7a7a7;
    padding-right: 30px;
}
.about .our-services .content .list .name {
    color: #17294d;
}
@media (min-width: 1200px) {
    .about .our-mission {
        padding: 110px 0;
    }
    .about .our-mission .subtile {
        font-size: 24px;
        padding-top: 30px;
        border-width: 2px;
    }
    .about .our-mission .heading {
        font-size: 64px;
        max-width: 80%;
        padding-top: 50px;
        padding-bottom: 90px;
    }
    .about .our-services {
        padding: 110px 0;
    }
    .about .our-services .subtile {
        font-size: 24px;
        padding-top: 30px;
        padding-bottom: 90px;
        border-width: 2px;
    }
    .about .our-services .content {
        max-width: 80%;
        margin-left: auto;
    }
    .about .our-services .content .list {
        padding-top: 25px;
        padding-bottom: 60px;
    }
    .about .our-services .content .list .number {
        padding-bottom: 10px;
    }
    .about .our-services .content .list .name {
        font-size: 26px;
    }
}

/* Team ################################ */

.team .partner {
    padding: 50px 0 110px;
}
.team .partner .container {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto;
}
.team .partner .photo {
    height: 400px;
    background-color: #f0f4fa;
}
.team .partner .info {
    padding: 20px;
}
.team .partner .info .name {
    font-size: 26px;
    font-weight: 500;
    padding-bottom: 10px;
}
@media (min-width: 1200px) {
    .team .partner .container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .team .partner .info .name {
        font-size: 32px;
    }
}

/* Projects ################################ */

.all-cases {
    padding: 50px 0;
    background-color: #f0f4fa;
}
.case {
    margin-bottom: 50px;
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
}
.case .image {
    min-height: 260px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.case .info {
    padding: 20px;
}
.case .info .title {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 20px;
}

@media (min-width: 1200px) {
    
    .all-cases {
        padding: 110px 0;
    }
    .case {
        display: flex;
        margin-bottom: 100px;
    }
    .case:last-child {
        padding-bottom: 0;
    }
    .case .image {
        width: 50%;
        height: 680px;
    }
    .case .info {
        display: flex;
        width: 50%;
        padding: 100px;    
        flex-direction: column;
        justify-content: space-between;
    }
    .case .info .title {
        font-size: 40px;
    }
}


/* News ################################ */

.headlines {
    position: relative;
    min-height: 400px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.headlines::after {
    content: '';
    position: absolute;
    top:0;right: 0;bottom: 0;left: 0;
    background-color: rgba(0,0,0,0.2);
}
.headlines .content {
    display: flex;
    position: absolute;
    align-items: flex-end;
    top:0;right: 0;bottom: 0;left: 0;
    z-index: 1;
}
.headlines .container {
    margin-bottom: 50px;
}
.headlines .content h2 {
    color: #ffffff;
    padding-bottom: 20px;
}
.latest-news {
    padding-top: 50px;
    padding-bottom: 50px;
}
.latest-news .subtile {
    padding-top: 15px;
    padding-bottom: 60px;
    border-top: solid 1px #17294d;
}
.newslist {
    border-top: solid 1px #d5d5d5;
}
.newslist a {
    display: flex;
    padding-top: 25px;
    padding-bottom: 50px;
    justify-content: space-between;
}
.newslist a .info {
    max-width: 70%;
    
}
.newslist a .info .time {
    color: #a7a7a7;
    margin-bottom: 10px;
}
.more {
    display: flex;
    width: 50px;
    height: 50px;
    border: solid 1px #d5d5d5;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.more i {
    display: block;
    width: 40px;
    height: 16px;
    background: url(images/svg/icon-arrow.svg) no-repeat center center / 100% 16px;
}
@media (min-width: 1200px) {
    .headlines {
        height: 900px;
    }
    .headlines .content h2 {
        font-size: 60px;
        max-width: 60%;
        padding-bottom: 40px;
    }
    .headlines .container {
        margin-bottom: 110px;
    }
    .latest-news {
        padding-top: 110px;
        padding-bottom: 110px;
    }
    .latest-news .subtile {
        font-size: 24px;
        padding-top: 30px;
        padding-bottom: 90px;
        border-width: 2px;
    }
    .latest-news .content {
        max-width: 80%;
        margin-left: auto;
    }
    .newslist a {
        padding-bottom: 100px;
    }
    .newslist a .info h4 {
        font-size: 26px;
        font-weight: 500;
    }
    .more {
        width: 80px;
        height: 80px;
    }
    .more i {
        display: block;
        width: 40px;
        height: 20px;
        background-size: 100% 20px;
    }
}

/* News Post ################################ */

.post .title {
    font-size: 32px;
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 20px;
}
.post .meta {
    color: #d5d5d5;
    font-weight: 500;
}
.post .content {
    padding-top: 50px;
    padding-bottom: 50px;
}
.post .content p {
    padding-bottom: 20px;
}
@media (min-width: 1200px) {
    
    .post .title {
        font-size: 64px;
        max-width: 80%;
        padding-top: 100px;
        padding-bottom: 20px;
    }
    .post .content {
        padding-top: 50px;
        padding-bottom: 110px;
    }
    .post .content p {
        font-size: 20px;
        padding-bottom: 40px;
    }
    
}



.footer {
    color: #ffffff;
    padding: 50px 0;
    background-color: #17294d;
}
.footer a {
    color: #5790e1;
}
.footer .logomark {
    display: block;
    width: 140px;
    height: 30px;
    margin-bottom: 40px;
    text-indent: -9999px;
    background: rgba(0, 0, 0, 0) url(images/logo-white.svg) no-repeat left center / auto 30px;
}
.footer .office .country .name {
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    padding-bottom: 15px;
}
.footer .copyright {
    padding-top: 15px;
    margin-top: 50px;
    border-top: solid 1px rgba(255,255,255,0.2);
}



@media (min-width: 1200px) {
   .footer {
        padding: 80px 0;
    }
    .footer .logomark {
        width: 170px;
        height: 40px;
        background-size: auto 40px;
    }
    .footer .content {
        display: flex;
        justify-content: space-between;
    }
    .footer .content .country {
        font-size: 20px;
    }
    .footer .copyright {
        display: flex;
        justify-content: space-between;
    }
}





