﻿/*full-service-section*/

.full-service-section {
    background-color:var(--c-141414);
    color:var(--c-F5F5F5);
}

.full-service-section .services-wrapper{
    padding:60px 0;
    font-family:var(--secondary-font);
}
.full-service-section .text-col{
    padding:0px var(--container-padding);
}

.full-service-section h1{
    font-size:80px;
    letter-spacing:4px;
    line-height:80px;
    margin-bottom:32px;
}
.full-service-section strong{
    font-size:80px;
    letter-spacing:2px;
    font-weight:500;
    line-height:80px;
    color:var(--c-E8CFD8);
    font-style:italic;
    font-family:var(--main-font);
}

.full-service-section p{
    font-size:16px;
    letter-spacing:1.6px;
    line-height:24px;
    margin-bottom:32px;
}

.full-service-section .href-link{
    margin-top:60px;
}

.full-service-section .img-col{
    background:url(../img-video/services-img.png) no-repeat center center;
    background-size:cover;
    width:100%;
    height:100%;
    margin-left:auto;
    position:relative;
    border:1px solid var(--d-border-color);
    position:relative;
}

.full-service-section .img-col::before{
    content:"";
    position:absolute;
    top:-60px;
    left:49.9%;
    transform:translateX(50%);
    width:1px;
    height:60px;
    background-color:var(--d-border-color);
}

.full-service-section .img-col .col-6{
    padding:60px;
    display:flex;
    flex-direction:column;
}

.full-service-section .img-col .col-6:first-child{
    border-right:1px solid var(--d-border-color);
    border-bottom:1px solid var(--d-border-color);
}
.full-service-section .img-col .col-6:last-child{
    border-left:1px solid var(--d-border-color);
    border-top:1px solid var(--d-border-color);
}

.full-service-section .img-col .service-text{
    font-size:30px;
    letter-spacing:0px;
    line-height:38px;
}

.full-service-section .img-col svg{
    margin-bottom:50px;
}

@media (max-width: 1200px) {
    .full-service-section h1 {
        padding-left: 25px;
    }
}

@media (max-width: 768px) {
    .full-service-section h1 {
        font-size: 50px;
        letter-spacing: 4px;
        line-height: 50px;
        padding-left:15px;
    }
    .full-service-section .img-col svg {
        margin-bottom: 17px;
    }
    .full-service-section .img-col .service-text {
        font-size: 20px;
        line-height: 28px;
    }
    .full-service-section .img-col {
        height: 390px;
    }
    .full-service-section .img-col .col-6{
        padding:35px;
    }
}

@media (max-width: 576px) {
    .full-service-section .img-col {
        width: 100vw;
        margin-left: -15px;
        border:0;
    }
    .full-service-section .img-col::before{
        top:0px;
        left:14px;
        transform:none;
        width:1px;
        height:100%;
        background-color:var(--d-border-color);
    }

    .full-service-section .img-col::after{
        content:"";
        position:absolute;
        top:0px;
        right:24px;
        transform:none;
        width:1px;
        height:100%;
        background-color:var(--d-border-color);
    }
}

/* marquee-section */

.marquee-section {
    font-size: 180px;
    line-height:100px;
    font-weight: 500;
    font-style: italic;
    pointer-events: none;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.marquee {
    position: relative;
    width: 100vw;
    height: 210px;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 60s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-section {
        font-size: 80px;
        line-height: 60px;
        padding:0;
    }
}

/*expertise-section*/

.expertise-section {
  text-align: center;
  background: url(../img-video/expertise-mask.png) no-repeat center center;
  background-size:cover;
  color: var(--c-F5F5F5);
  font-family:var(--secondary-font);
}

.expertise-content {
    padding: 65px 0px;
}

.expertise-title {
  font-size: 64px;
  font-style: italic;
  margin-bottom: 50px;
  line-height: 70px;
  letter-spacing:0px;
}

.expertise-title strong {
  font-weight: 500;
  font-family:var(--main-font);
}

.expertise-text {
    max-width: 994px;
    margin:0 auto;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 24px;
    margin-bottom: 20px;
}

.expertise-link {
  text-decoration: underline;
  font-weight: 500;
  font-size: 16px;
  letter-spacing:1.6px;
  line-height:24px;
  color: var(--c-F5F5F5);
}
.expertise-link:hover{
  color: var(--c-F5F5F5);
}

@media (max-width: 768px) {
    .expertise-title {
        font-size: 38px;
        margin-bottom: 40px;
        line-height: 50px;
        font-weight:300;
    }
    .expertise-title strong {
      font-size: 62px;
    }
}

