html, body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body{
    background-color: white;
    font-family: sans-serif;
    font-weight: bold;
    color: #fff;
    overflow-x: hidden; 
}
a{
    color: black;
}
header{
    background-color: black;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    margin: 0 auto;
    height: 40px;
    position: fixed;
    top: 0;
    z-index: 2;
}
header img{
    width: 200px;
}
header a.logo{
    position: fixed;
    top:21px;
    left: 40%;
    margin-left: -70px;
}
@media (min-width: 1590px) {
    header img{
        width: 200px;
    }
    header a.logo{
        margin-right: 40px;
        position: relative;
        top:initial;
        left: initial;
        margin-left: initial;
    }
}
.center-nav{
    display: none;
}
@media (min-width: 1590px) {
    .center-nav{
        position: relative;
        left: 410px;
        display: block;
    }
}
.center-nav a, .right-nav a, .left-nav a{
    color:white;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    padding: 0;
    margin: 0 30px; 
    position: relative;
    transition: color 0.4s ease-in-out;
}
header.scrolled .center-nav a{
    color:white
}
.center-nav a:before, .right-nav a:before, .left-nav a::before{
    content: '';
    width: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: width .2s linear;
}
.center-nav a:hover:before, .right-nav a:hover:before, .left-nav a:hover::before{
    right: initial;
    left: 0;
    width: 100%;
}
.right-nav {
    position: fixed;
    left: 1300px;
    top: 20px;
    height: 40px;
    display: flex;
    align-items: center;
}
.right-nav a{
    display: none;
    transition: color 0.4s ease-in-out;
}
header.scrolled .right-nav a{
    color:white
}
.left-nav {
    position: fixed;
    right: 1300px;
    top: 20px;
    height: 40px;
    display: flex;
    align-items: center;
}
.left-nav a{
    display: none;
    transition: color 0.4s ease-in-out;
}
header.scrolled .left-nav a{
    color:white
}
@media (min-width: 1590px) {
    .right-nav a{
        display: inline-block;
        padding: 0;
        margin: 0 50px;
    }
    .left-nav a{
        display: inline-block;
        padding: 0;
        margin: 0 50px;
    }
}
.hamburger{
    position:fixed;
    z-index: 3;
    right: 6px;
    top: 13px;
    color: gray;
    padding: 20px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.hamburger span{
    display: block;
    width: 16px;
    margin: 2px 0;
    height: 2px;
    background-color: gray;
    position: relative;
    transition: all 0.2s linear;
}
.hamburger.active span:first-child,
.hamburger.active span:nth-child(2){
   transform: rotate(45deg);
}
.hamburger.active span:nth-child(2){
    transform: rotate(-45deg);
    top: -4px;
 }
.hamburger.active span:last-child{
    opacity: 0;
}
.shadow.active{
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,.3);
    z-index: 1;
}
nav.mobile-nav{
    padding-top: 70px;
    display: block;
    position: fixed;
    top: 0;
    right: -280px;
    bottom: 0;
    z-index: 2;
    width: 280px;
    background-color:#000;
    transition: right 0.3s ease-in-out;
}
nav.mobile-nav.active{
    right: 0;
}
nav.mobile-nav a{
    display: block;
    opacity: 0;
    border-bottom: 1px solid #222;
    text-transform: uppercase;
    padding: 16px 25px;
    text-decoration: none;
    text-align: right;
    transition: opacity .3s linear;
    transition-delay: .2s;
}
nav.mobile-nav.active a{
    opacity: 1;
    color: white;
}
nav.mobile-nav a:nth-child(2){transition-delay: .25s;}
nav.mobile-nav a:nth-child(3){transition-delay: .3s;}
nav.mobile-nav a:nth-child(4){transition-delay: .35s;}
nav.mobile-nav a:nth-child(5){transition-delay: .4s;}
nav.mobile-nav a:nth-child(6){transition-delay: .45s;}
nav.mobile-nav a:nth-child(7){transition-delay: .5s;}
nav.mobile-nav a:nth-child(8){transition-delay: .55s;}
section{
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
}
section div.content-outer{
    flex-grow: 1;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
section.active div.content{
    opacity: 1;
    bottom: 20vh;
}
section.active div.content.up{
    opacity: 1;
    bottom: 40vh;
} 
section div.content{
    position: absolute;
    left: 50px;
    max-width: 360px;
    opacity: 0;
    bottom: 10vh;
    transition: all .5s linear;
}
section div.content h2{
    font-size: 48px;
    margin: 0;
    color: white; 
    text-align: center;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; 
}
section div.content a{
    border: 2px solid black;
    display: inline-block;
    padding: 20px 60px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 30px;
    position: relative;
}
section div.content a:before{
    content:'';
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0%;
    transition: height 0.3s ease-in-out;
    background-color: white;
}
section div.content a:hover:before{
    height: 100%;
    top: initial;
    bottom: 0;
}
section div.content a span{
    position: relative;
    z-index: 1;
    transition: color .3s ease-in-out;
}
section div.content a:hover span{
    color:black
}
.read-more {
    border: 5px solid rgba(0, 128, 255, 0.5);
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
} 
.read-more p {
    text-align: center;
    max-height: 300px;
    overflow: hidden;
    font-weight: normal;
    color: #000;
}
.toggle-btn {
    background-color: rgba(0, 128, 255, 0.5);
    position: relative;
    left: 30px;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
.services-section {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.services-section.active {
    opacity: 1;
}
.services-dleft{
    color: black;
    position: absolute;
    top: 675px;
    left: 65px;
    width: 10%;
    padding: 20px;
}
.services-dright{
    color: black;
    position: absolute;
    top: 735px;
    left: 1620px;
    width: 10%;
    padding: 20px;
}
.services-dleft h2 {
    text-align: center;
}
.services-tleft{
    color: black;
    position: absolute;
    top: 25px;
    left: 65px;
    width: 10%;
    padding: 20px;
}
.services-mright p{
    color: black;
    position: absolute;
    font-weight: normal;
    top: 95px;
    left: 1570px;
    width: 15%;
    padding: 20px;
    line-height: 1.5em;
    margin-bottom: 1em;
}
.services-tleft h2 {
    text-align: center;
}
.services-tright{
    color: black;
    position: absolute;
    top: 25px;
    left: 1615px;
    width: 10%;
    padding: 20px;
}
.services-tright h2 {
    text-align: center;
}
.services-up{
    position: absolute;
    top: 60px;
}
.services-up img{
    top: 60px;
    width: 1920px;
    height: 594px;
}
.services-norm img{
    position: relative;
    top: -60px;
    width: 1920px;
    height: 655px;
}
.services-norm{
    position: absolute;
    top: 60px;
}
.services-right {
    position: absolute;
    top: 655px;
    left: 975px;
    width: 40%;
    padding: 20px;
}
.services-right p {
    color: black;
    list-style-type: circle;
    font-weight: normal;
    line-height: 1.5em;
    margin-bottom: 1em;
}
.services-dleft p {
    color: black;
    list-style-type: circle;
    font-weight: normal;
    line-height: 1.5em;
    margin-bottom: 1em;
}
.services-dleft ul {
    font-weight: normal;
}

.services-midleft{
    color: black;
    position: absolute;
    top: 175px;
    left: 65px;
    width: 40%;
    padding: 20px;
}
.services-midleft p {
    list-style-type: circle;
    font-weight: normal;
    line-height: 1.5em;
    margin-bottom: 1em;
}
.services-rhalf img {
    width: 1528px;
    height: 100%;
    position: relative;
    left: 392px;
}
.services-lhalf img {
    width: 1528px;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}
.services-slider {
    overflow: hidden;
    height: 469px;
    width: 950px;
    margin-left: 910px;
    margin-bottom: 300px;
    position: relative;
}
@keyframes slide_animation {
    0%, 10% { left: 0; }
    20%, 30% { left: -950px; }
    40%, 50% { left: -1900px; }
    60%, 70% { left: -950px; }
    80%, 90%, 100% { left: 0; }
}
@keyframes slide2_animation {
    0%, 10% { left: 0; }
    20%, 30%, 40%, 50%, 60%, 70% { left: -950px; }
    80%, 90%, 100% { left: 0; }
}
.services-midright {
    width: 2850px;
    height: 469px;
    position: absolute;
    animation-name: slide_animation;
    animation-duration: 33s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}
.services-midright2 {
    width: 2850px;
    height: 469px;
    position: absolute;
    animation-name: slide2_animation;
    animation-duration: 33s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}
.slider {
    height: 469px;
    width: 950px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider img {
    max-height: 469px;
    height: 469px;
}

.services-slidermid {
    overflow: hidden;
    height: 800px;
    width: 1200px;
    margin-left: 360px;
    margin-bottom: 80px;
}
@keyframes midslide_animation{
    0%, 10% {left:0px;}
    20%, 30% {left:1200px;}
    40%, 50% {left: 2400px;}
    60%, 70% {left: 1200px;}
    80%, 90%, 100% {left: 0px;}
}
.services-mid {
    width: 3600px;
    height: 800px;
    margin: 0 0 0 -2400px;
    position: relative;
    animation-name: midslide_animation;
    animation-duration: 33s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}
.midslider {
    height: 800px;
    width: 1200px;
    position: relative;
    float: left;
}
.midslider img {
    max-height: 800px;
    max-width: 1200px;
    height: 800px;
    width: 1200px;
}

table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
footer{
    padding: 50px;
    font-size: 12px;
    background-color: black;
}
footer nav{
    text-align: center;
}
footer nav span{
    color: #777;
    display: inline-block;
    padding-right: 30px;
    text-transform: uppercase;
}
footer nav a{
    color: white; 
    padding: 0 20px;
    text-decoration: none;
    transition: color .2s linear;
}
footer nav a:hover{
    color: #aaa;
}
@media (min-width: 932px) {
    body {
        overflow-x: auto;
    }
}
@media (max-width: 932px) {
    .services-dleft{
        color: black;
        position: absolute;
        top: 675px;
        left: 97px;
        width: 45%;
        padding: 20px;
    }
    .services-tleft{
        color: black;
        position: absolute;
        top: 25px;
        left: 115px;
        width: 34%;
        padding: 20px;
    }
    .services-right {
        position: absolute;
        top: 125px;
        left: 10px;
        width: 89%;
        padding: 20px;
    }
    .services-right p{
        color: white;
    }
    .services-rhalf img {
        width: 1528px;
        height: max-content;
        position: relative;
        left: -175px;
        top: -60px;
    }
    .services-tright{
        color: black;
        position: absolute;
        top: 25px;
        left: 90px;
        width: 50%;
        padding: 20px;
    }
    .services-mright p{
        color: white;
        position: absolute;
        font-weight: normal;
        top: 145px;
        left: 10px;
        width: 89%;
        padding: 20px;
    }
    .services-dright{
        color: black;
        position: absolute;
        top: 675px;
        left: 100px;
        width: 45%;
        padding: 20px;
    }
    section.active div.content.up{
        opacity: 1;
        left: 8vw;
        bottom: 60vh;
    }
    section.active div.content.upup{
        opacity: 1;
        left: 8vw;
        bottom: 60vh;
    }
    section.active div.content.right{
        opacity: 1;
        left: 8vw;
        bottom: 60vh;
    }
    section.active div.content.upright{
        opacity: 1;
        left: 8vw;
        bottom: 60vh;
    }
    section div.content{
        position: absolute;
        max-width: 360px;
        left: 3vh;
        opacity: 0;
        bottom: 10vh;
        transition: all .5s linear;
    }
    section div.content.right{
        position: relative;
        left: 3vh;
        max-width: 360px;
        opacity: 0;
        bottom: 10vh;
        transition: all .5s linear;
    }
    section div.content.upright{
        position: relative;
        left: 3vh;
        max-width: 360px;
        opacity: 0;
        bottom: 10vh;
        transition: all .5s linear;
    }
    section{
        min-height: 110vh;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        position: relative;
        display: flex;
        align-items: flex-end;
    }
    .toggle-btn
    {
        left: 40px;
    }
    footer{
        font-size: 11px;
    }
}