* 
{
    margin: 0;
    padding: 0;
}
/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v25-latin-regular.eot'); /* IE9 Compat Modes */
    src: url('../fonts/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/montserrat-v25-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/montserrat-v25-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
  }
  
  /* montserrat-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/montserrat-v25-latin-600.eot'); /* IE9 Compat Modes */
    src: url('../fonts/montserrat-v25-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/montserrat-v25-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/montserrat-v25-latin-600.woff') format('woff'), /* Modern Browsers */
         url('../fonts/montserrat-v25-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/montserrat-v25-latin-600.svg#Montserrat') format('svg'); /* Legacy iOS */
  }
  
  /* montserrat-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/montserrat-v25-latin-800.eot'); /* IE9 Compat Modes */
    src: url('../fonts/montserrat-v25-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/montserrat-v25-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/montserrat-v25-latin-800.woff') format('woff'), /* Modern Browsers */
         url('../fonts/montserrat-v25-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/montserrat-v25-latin-800.svg#Montserrat') format('svg'); /* Legacy iOS */
  }
  
:root
{
    --main-color: #e97d35;
    --main-color-hover: #ff6600;
    --text-color: #fff;
    --text-color-lighter: #b8b8b8;
}
html
{
    scroll-behavior:smooth
}
body
{
    font-family: 'Montserrat';
    color: var(--text-color);
    background-color: #222224;
    overflow-x: hidden;
}
#index .index
{
    color: var(--main-color);
}
.nav-container
{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.topnav
{
    background: transparent;
    overflow: hidden;
}
.topnav a
{
    float: left;
    margin: 30px 15px 30px 15px;
}
.topnav-right a:last-child
{
    margin: 30px 80px 30px 15px;
}
#scroll-button a 
    {
        padding-top: 70px;
    }
    #scroll-button a span 
    {
        position: absolute;
        top: 0;
        left: 50%;
        width: 24px;
        height: 24px;
        margin-left: -12px;
        border-left: 1px solid #fff;
        border-bottom: 1px solid #fff;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-animation: sdb05 1.5s infinite;
        animation: sdb05 1.5s infinite;
        box-sizing: border-box;
    }
    @-webkit-keyframes sdb05 
    {
        0% 
        {
            -webkit-transform: rotate(-45deg) translate(0, 0);
            opacity: 0;
        }
        50% 
        {
            opacity: 1;
        }
        100% 
        {
            -webkit-transform: rotate(-45deg) translate(-20px, 20px);
            opacity: 0;
        }
    }
    @keyframes sdb05 {
        0% 
        {
            transform: rotate(-45deg) translate(0, 0);
            opacity: 0;
        }
        50% 
        {
            opacity: 1;
        }
        100% 
        {
            transform: rotate(-45deg) translate(-20px, 20px);
            opacity: 0;
        }
}
.scroll a 
{
    position: absolute;
    bottom: 100px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
}
#hover-anim
{
    display: inline-block;
    position: relative;
}
#hover-anim::after
{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--main-color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
#hover-anim:hover::after
{
    transform: scaleX(1);
    transform-origin: bottom left;
}
.topnav-left
{
    float: left;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 105px;
}
.topnav-left a
{
    text-decoration: none;
    color: var(--mode-color);
    font-size: 18px;
    margin: 30px 30px 30px 80px;
    color: var(--main-color);
}
.topnav-right
{
    float: right;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 105px;
}
.topnav-right a
{
    text-decoration: none;
    color: var(--mode-color);
    font-size: 18px;
}
.section-border
{
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - 75px - 75px);
    border-bottom: 1px solid rgb(204, 204, 204);
}
.start-section
{
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 200px;
    padding-bottom: 200px;
    height: 50vh;
    min-width: 980px;
    width: calc(100% - 475px - 475px);
}
.section-div-img
{
    display: flex;
    align-items: center;
    justify-content: start;
}
.section-div-img img
{
    width: 400px;
    height: 400px;
    border-radius: 5px;
}
.section-div-text
{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.section-div-text h1
{
    font-size: 80px;
    color: var(--main-color);
}
.section-div-text p
{
    padding-left: 5px;
    font-size: 40px;
    font-weight: bold;
}
.project-section
{
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 200px;
    width: calc(100% - 475px - 475px);
    min-width: 980px;
}
.section-project-text-left
{
    width: 100%;
}
.section-project-text-left h2
{
    font-size: 40px;
    font-weight: bold;
    color: var(--main-color);
}
.section-project-text-left h3
{
    margin: 20px;
    color: var(--text-color-lighter);
}
.section-project-text-right
{
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    text-align: justify;
    width: 100%;
    gap: 25px;
    margin-top: 25px;
}
.section-project-text-right p
{
    font-weight: 500;
}
.project-button 
{
    display: block;
    padding: 20px;
    border-radius: 5px;
    text-decoration: none;
    background-color: var(--main-color);
    color: white;
    text-align: center;
    border: 1px solid var(--main-color);
}
.project-button:hover
{
    background-color: white;
    color: var(--main-color);
}  
.project-arrow::after
{
    content: '\25ba';
    padding-left: 10px;
}
.section-project-images
{
    display: flex;
    position: relative;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 100px;
    margin-bottom: 200px;
    width: calc(100% - 150px - 150px);
    min-width: 980px;
}
.section-project-images i
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 44px;
    width: 44px;
    color: #343F4F;
    cursor: pointer;
    font-size: 1.15rem;
    text-align: center;
    line-height: 44px;
    background: var(--main-color);
    color: white;
    border-radius: 50%;
    transition: transform 0.1s linear;
    z-index: 9999;
}
.section-project-images i:active
{
    transform: translateY(-50%) scale(0.9);
}
.section-project-images i:hover
{
    border: 1px solid var(--main-color);
    background: #222224;
    color: var(--main-color);
}
.swiper-left-arrow 
{
    left: 0;
}
.swiper-right-arrow 
{
    right: 0;
}
.mySwiper
{
    display: flex;
    position: relative;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 80px;
    margin-bottom: 200px;
    width: calc(100% - 150px - 150px);
    min-width: 980px;
}
.swiper-slide img
{
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 5px;
}
.section-about
{
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 50px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 200px;
    padding-bottom: 100px;
    min-width: 980px;
    width: calc(100% - 475px - 475px);
}
.section-about-text
{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.section-about-text p
{
    padding-top: 20px;
    color: var(--text-color);
}
.section-about-text a
{
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: var(--main-color);
}
footer
{
    display: flex;
    width: 100%;
    background-color: #131314;
    justify-content: center;
    align-items: center;
}
.section-footer
{
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 12vh 10vh;
    min-width: 980px;
    width: calc(100% - 475px - 475px);
}
.footer-contact a
{
    display: inline-block;
    margin-top: 20px;
    color: var(--main-color);
    text-decoration: none;
}
.footer-media
{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}
.footer-media li
{
    list-style: none;
    float: right;
    margin-left: 20px;
}
.footer-media img
{
    height: 48px;
    width: 48px;
    border-radius: 25px;
}
.list-style
{
    padding-bottom: 200px;
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - 475px - 475px);
    min-width: 980px;
}
.list-style ul
{
    list-style: none;
}
.list-title
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #444;
    text-transform: uppercase;
    padding: 20px 0px 20px 0px;
    font-size: 32px;
}
.list-img
{
    display: flex;
    align-items: center;
    gap: 25px;
}
.list-img img
{
    height: 32px;
    width: 32px;
}

/* Project Pages */
.project-section-page
{
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    margin: 100px auto 100px auto;
    width: calc(100% - 475px - 475px);
    min-width: 980px;
    min-height: 50vh;
    text-align: center;
    align-items: center;
}
.project-button-page
{
    display: block;
    padding: 20px;
    width: 250px;
    border-radius: 5px;
    text-decoration: none;
    background-color: var(--main-color);
    color: white;
    text-align: center;
    border: 1px solid var(--main-color);
}

/* 404 */

.error 
{
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    min-height: 100vh;
}

/* MOBILE VERSION */

@media screen and (max-width: 600px) {

    .nav-container {
        display: flex;
        justify-content: center;
    }
    .topnav-left {
        float: none;
        min-height: 50px;
        justify-content: center;
    }
    .topnav a {
        margin: 10px;
    }
    .topnav a:last-child {
        margin: 10px;
    }
    .topnav-left a {
        margin: 0;
    }
    .topnav-right {
        float: none;
        min-height: 50px;
    }
    .start-section {
        display: block;
        min-width: 0;
        width: auto;
    }
    .section-div-img {
        justify-content: center;
    }
    .section-div-img img {
        width: 200px;
        height: 200px;
    }
    .section-div-text {
        
    }
    .section-div-text p {
        margin: 10px auto;
        text-align: center;
        font-size: 20px;
    }
    .section-div-text h1 {
        font-size: 40px;
        margin: 10px auto;
    }
    .project-section {
        display: flex;
        min-width: 0;
        width: auto;
    }
    .section-about {
        display: flex;
        min-width: 0;
        width: auto;
    }
}

/* .left-arrow
{
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    animation: bounce 1s linear infinite;
}

@keyframes bounce
{
    20%,50%,80%,to{
        transform: translateX(0);
    }
    40%{
        transform: translateX(20px);
    }
    70%{
        transform: translateX(10px);
    }
    90%{
        transform: translateX(3px);
    }
} */


































/* .images-1  OLD IMAGES IDEAS
{
    width: 980px;
    height: 600px;
    border: 1px solid var(--main-color);
}
.images-2 
{
    z-index: 3;
    position: absolute;
    top: 50px;
    left: 75px;
    right: -50px;
    width: 980px;
    height: 600px;
    border: 1px solid var(--main-color);
}
.images-3
{
    z-index: 5;
    position: absolute;
    top: 100px;
    left: 150px;
    width: 980px;
    height: 600px;
    border: 1px solid var(--main-color);
} */