/*Google Fonts: Barlow Semi Condensed*/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@100;200;300;400;500;600&display=swap');
/*Google Fonts: Barlow*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500;600;700;800&display=swap');
/*Google Fonts: Major Mono Display*/
@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');

html body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    width: auto; 
    overflow-x:hidden;
    overflow-y:scroll;
}


html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
  }

:root {
    --font-bahnschrift: 'Bahnschrift', sans-serif;
}

.bahnschrift {
    font-family: var(--font-bahnschrift);
}

.observer-container {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    margin: 0;
}

.wrapper {
    position: relative;
}
/*Animation*/

/*FadeOutDown*/
    @keyframes fadeOutDown {
        0% {
            opacity: 0;
            -webkit-transform: translateY(0);
        }
        
        10% {
            opacity: 0;
            -webkit-transform: translateY(0);
        }

        13% {
            opacity: 1;
            -webkit-transform: translateY(0);
        }

        60% {
            opacity: 1;
            -webkit-transform: translateY(0);
        }

        100% {
            opacity: 0;
            -webkit-transform: translateY(20px);
        }
    }

    @-webkit-keyframes fadeOutDown {
        0% {
            opacity: 0;
            -webkit-transform: translateY(0);
        }
        
        10% {
            opacity: 0;
            -webkit-transform: translateY(0);
        }

        13% {
            opacity: 1;
            -webkit-transform: translateY(0);
        }

        60% {
            opacity: 1;
            -webkit-transform: translateY(0);
        }

        100% {
            opacity: 0;
            -webkit-transform: translateY(20px);
        }
    }

    .animated-3 {
        animation-iteration-count: infinite;
        animation-duration: 10s;
        animation-fill-mode: both;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-duration: 10s;
        -webkit-animation-fill-mode: both;
    }

    .animatedFadeOutDown {
        opacity: 0
    }

    .fadeOutDown {
        -webkit-animation-name: fadeOutDown;
        animation-name: fadeOutDown;
    }
/*/FadeOutDown*/

/*/Animation*/

/*Navigation Bar*/
.header-area {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100vw;
    height: auto;
}

.header-area .main-menu {
    margin: 0 0;
    padding: 0 0;
}

.header-area .navbar {
    margin: 0 0;
    padding: 2.5rem 5rem 1rem 5rem;
    background: black;
    box-shadow: none;
}

.header-area .navbar .container{
    margin: 0 0;
    padding: 0 0;
    width: 100%;
}

.header-area .navbar .nav-item {
    padding-left: 1rem;
}

.header-area .navbar .nav-item > a {
    font-size: 12pt;
    font-weight: 600;
    color: white;
}

.header-area .navbar .nav-item .active {
    color: rgb(30, 116, 184);
}

.header-area .main-menu .navbar .navbar-toggler {
    color: white;
}

/*
    color: rgb(30, 116, 184); /*blue*/
    /*color: rgb(166, 168, 171); /*light grey*/
    /*color: rgb(102, 102, 102); /*dark grey*/
    
    /*width 70mm from left*/

/*/Navigation Bar*/

/*Main*/

/*Site Project*/
.site-main .site-project {
    position: relative;
    margin: 0;
    padding: 8rem 13rem;
    background: black;
}

.site-main .site-project .site-project-title {
    padding-right: 1.5rem;
}

.site-project-title-text {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease;
    color: white;
    font-size: 24pt;
    font-weight: 600;
}

.site-project-title-line {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease;
    height:1px;
    border-width:0;
    background-color:rgb(166, 168, 171);
    margin: 1rem 0;
}

.site-main .site-project .site-project-content {
    margin-top: 4rem;
    padding-right: 1.5rem;
}

.site-project-img-1 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .3s;
    display: block;
    width: 100%;
}

.site-project-text-1 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .3s;
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
    margin-top: 1.2rem;
    line-height: 90%;
}

.site-project-img-2 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 5s;
    display: block;
    width: 100%;
}

.site-project-text-2 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .6s;
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
    margin-top: 1.2rem;
    line-height: 90%;
}

.site-project-img-3 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 2s;
    display: block;
    width: 100%;
}

.site-project-text-3 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .9s;
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
    margin-top: 1.2rem;
    line-height: 90%;
}

.site-project-img-4 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .3s;
    display: block;
    width: 100%;
}

.site-project-text-4 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .3s;
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
    margin-top: 1.2rem;
    line-height: 95%;
}

.site-project-img-5 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .6s;
    display: block;
    width: 100%;
}

.site-project-text-5 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .6s;
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
    margin-top: 1.2rem;
    line-height: 90%;
}

.site-project-img-6 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .9s;
    display: block;
    width: 100%;
}

.site-project-text-6 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .9s;
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
    margin-top: 1.2rem;
    line-height: 90%;
}

.site-project-img-7 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .3s;
    display: block;
    width: 100%;
}

.site-project-text-7 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .3s;
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
    margin-top: 1.2rem;
    line-height: 90%;
}

.site-project-img-8 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .6s;
    display: block;
    width: 100%;
}

.site-project-text-8 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .6s;
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
    margin-top: 1.2rem;
    line-height: 90%;
}

.site-project-img-9 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .9s;
    display: block;
    width: 100%;
}

.site-project-text-9 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .9s;
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
    margin-top: 1.2rem;
    line-height: 90%;
}

.site-project-content-special-1 {
    margin-top: 8rem;
    position: relative;
}

.site-project-content-special {
    margin-top: 8rem;
    padding-right: 1.5rem;
    height: fit-content;
}

.site-main .site-project .site-project-content .space-padding { 
    position: relative;
    top: 0%;
}

.site-main .site-project .space-padding h2 {
    text-align: right; 
 }

.project-first-text{
    position: relative;
    opacity: 0;
    transition: all 1.5s ease 1s;
}

.project-second-text{
    position: relative;
    opacity: 0;
    transition: all 1.5s ease 1.2s;
}

.project-third-text{
    position: relative;
    opacity: 0;
    transition: all 1.5s ease 1.4s;
}

.project-fourth-text{
    position: relative;
    opacity: 0;
    transition: all 1.5s ease 1.6s;
    margin-bottom: 0;
}

.site-main .site-project .project-first-text span{ 
    font-weight: 600;
    color: white;
    font-size: 30pt;
    line-height: 90%;
}

.site-main .site-project .project-second-text span{ 
    font-weight: 600;
    color: white;
    font-size: 30pt;
    line-height: 90%;
}

.site-main .site-project .project-third-text span{ 
    font-weight: 600;
    color: white;
    font-size: 30pt;
    line-height: 90%;
}

.site-main .site-project .project-fourth-text span{ 
    font-weight: 600;
    color: white;
    font-size: 30pt;
    line-height: 90%;
}

.site-main .site-project-content-special .space-padding h2 .blue { 
    color: rgb(30, 116, 184);
}

.site-main .site-project-content-special-1 .position-bottom {
    position: relative;
    top: 98%;
}

.site-project-btm-line {
    position: relative;
    opacity: 0;
    transition: all 1.5s ease 1.5s;
    height:1px;
    border-width:0;
    background-color:rgb(166, 168, 171);
    margin: 0 0;
}

.site-scroll-down-1 {
    position: absolute;
    z-index: 5;
    right: 0px;
    left: 8rem;
    bottom: 8rem;
    padding: 0 0;
    margin: 0 0;
}

.site-scroll-down-1 img {
    height: 40px;
    width: auto;
}
/*/Site Project*/


/*Site Expertise*/
.site-main .site-expertise {
    position: relative;
    margin: 0 0;
    padding: 8rem 13rem;
    background: rgb(51, 51, 51);
}

.site-main .site-expertise .site-expertise-title {
    padding-right: 1.5rem;
}

.site-expertise-title-text {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease;
    color: white;
    font-size: 24pt;
    font-weight: 600;
}

.site-expertise-title-line {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease;
    height:1px;
    border-width:0;
    background-color:rgb(166, 168, 171);
    margin: 1rem 0;
}

.site-expertise-desc-1 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.site-expertise-desc-1-title-text {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .4s;
    color: rgb(30, 116, 184);
    font-size: 26pt;
    font-weight: 600;
}

.site-expertise-desc-1-content {
    margin-top: 2rem;
    text-align: left;
}

.site-expertise-desc-1-point-1 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .6s;
} 

.site-expertise-desc-1-point-2 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .7s;
} 

.site-expertise-desc-1-point-3 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .8s;
} 

.site-expertise-desc-1-point-4 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .9s;
} 

.site-expertise-desc-1-point-5 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 1s;
} 

.site-expertise-desc-1-point-6 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 1.1s;
} 

.site-expertise-desc-1-point-7 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 1.2s;
} 

.site-expertise-desc-1-point-8 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 1.3s;
} 

.site-expertise-desc-1-point-1, .site-expertise-desc-1-point-2, .site-expertise-desc-1-point-3, .site-expertise-desc-1-point-4, .site-expertise-desc-1-point-5, .site-expertise-desc-1-point-6, .site-expertise-desc-1-point-7, .site-expertise-desc-1-point-8 {
    color: white;
    font-size: 24pt;
    font-weight: 300;
    margin-bottom: 0;
} 

.site-expertise .site-expertise-desc-1 .site-expertise-desc-1-content .wrapper h2 .blue {
    color: rgb(30, 116, 184);
}

.site-expertise-desc-2 {
    margin-top: 4rem;
    position: relative;
}

.site-expertise-desc-2-img {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 1s;
}

.site-expertise-desc-2 img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    float: right;
}

.site-expertise-desc-11 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.site-expertise-desc-11 .special-positioning {
    width: fit-content;
    float: right;
}

.site-expertise-desc-11-title-text {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .4s;
    color: rgb(30, 116, 184);
    font-size: 26pt;
    font-weight: 600;
    text-align: left;
}

.site-expertise-desc-11-content {
    margin-top: 2rem;
    text-align: left;
    width: fit-content;
    float: right;
}

.site-expertise-desc-11-point-1 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .6s;
} 

.site-expertise-desc-11-point-2 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .7s;
} 

.site-expertise-desc-11-point-3 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .8s;
} 

.site-expertise-desc-11-point-4 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease .9s;
} 

.site-expertise-desc-11-point-5 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 1s;
} 

.site-expertise-desc-11-point-6 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 1.1s;
} 

.site-expertise-desc-11-point-7 {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 1.2s;
} 

.site-expertise-desc-11-point-1, .site-expertise-desc-11-point-2, .site-expertise-desc-11-point-3, .site-expertise-desc-11-point-4, .site-expertise-desc-11-point-5, .site-expertise-desc-11-point-6, .site-expertise-desc-11-point-7 {
    color: white;
    font-size: 24pt;
    font-weight: 300;
    margin-bottom: 0;
} 

.site-expertise .site-expertise-desc-11 .site-expertise-desc-11-content .wrapper h2 .blue {
    color: rgb(30, 116, 184);
}

.site-expertise-desc-22 {
    margin-top: 4rem;
    position: relative;
}

.site-expertise-desc-22-img {
    position: relative;
    opacity: 0;
    transition: all 1.2s ease 1s;
}

.site-expertise-desc-22 img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    float: left;
}


.site-expertise-content-special-1 {
    margin-top: 8rem;
    position: relative;
}

.site-expertise-content-special {
    margin-top: 8rem;
    padding-right: 1.5rem;
    height: fit-content;
}

.site-main .site-expertise .site-expertise-content .space-padding { 
    position: relative;
    top: 0%;
}

.site-main .site-expertise .space-padding h2 {
    text-align: left; 
 }

.expertise-first-text{
    position: relative;
    opacity: 0;
    transition: all 1.5s ease 1s;
}

.expertise-second-text{
    position: relative;
    opacity: 0;
    transition: all 1.5s ease 1.2s;
}

.expertise-third-text{
    position: relative;
    opacity: 0;
    transition: all 1.5s ease 1.4s;
}

.expertise-fourth-text{
    position: relative;
    opacity: 0;
    transition: all 1.5s ease 1.6s;
    margin-bottom: 0;
}

.site-main .site-expertise .expertise-first-text span{ 
    font-weight: 700;
    color: white;
    font-size: 35pt;
    line-height: 90%;
}

.site-main .site-expertise .expertise-second-text span{ 
    font-weight: 700;
    color: white;
    font-size: 35pt;
    line-height: 90%;
}

.site-main .site-expertise .expertise-third-text span{ 
    font-weight: 700;
    color: white;
    font-size: 35pt;
    line-height: 90%;
}

.site-main .site-expertise .expertise-fourth-text span{ 
    font-weight: 700;
    color: white;
    font-size: 35pt;
    line-height: 90%;
}

.site-main .site-expertise-content-special .space-padding h2 .blue { 
    color: rgb(30, 116, 184);
}

.site-main .site-expertise-content-special-1 .position-bottom {
    position: relative;
    top: 98%;
}

.site-expertise-btm-line {
    position: relative;
    opacity: 0;
    transition: all 1.5s ease 1.5s;
    height:1px;
    border-width:0;
    background-color:rgb(166, 168, 171);
    margin: 0 0;
}

.approach-row {
    margin-top: 6rem;
}

.approach-container-1, .approach-container-4 {
    position: relative;
    float: left;
    width: fit-content;
    margin-top: 2rem;
}

.approach-container-2, .approach-container-5 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    margin-top: 2rem;
}

.approach-container-3, .approach-container-6 {
    position: relative;
    float: right;
    width: fit-content;
    margin-top: 2rem;
}

.approach-icon-1, .approach-icon-2, .approach-icon-3, .approach-icon-4, .approach-icon-5, .approach-icon-6 {
    position: relative;
    opacity: 0;
    transition: all 1.5s ease .3s;
    font-size: 3rem;
    color:  rgb(166, 168, 171);
}

.approach-title-1, .approach-title-2, .approach-title-3, .approach-title-4, .approach-title-5, .approach-title-6 {
    position: relative;
    opacity: 0;
    transition: all 1.5s ease .6s;
    font-weight: 600;
    color: rgb(30, 116, 184);
    font-size: 22pt;
}

.approach-row .site-approach-content .approach-desc-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.approach-desc-1, .approach-desc-2, .approach-desc-3, .approach-desc-4, .approach-desc-5, .approach-desc-6 {
    position: relative;
    opacity: 0;
    transition: all 1.5s ease .9s;
    font-weight: 400;
    color: white;
    font-size: 14pt;
    width: 25ch;
    position: relative;
    line-height: 100%;
    text-align: center;
}

/*/Site Expertise*/

/*Footer*/
.site-footer {
    margin: 0 0;
    padding: 0rem 13rem 5rem 13rem;
    background: rgb(51, 51, 51);
}

.site-footer-logo {
    position: relative;
    opacity: 0;
    transition: all 1s ease .5s;
}   

.site-footer-address {
    position: relative;
    opacity: 0;
    transition: all 1s ease .5s;
}   

.site-footer .site-footer-address > span {
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
    line-height: 90%;
}

.footer-info-container {
    width: fit-content;
    float: right;
}

.footer-info-container .btn {
    width: 40px;
    height: 40px;
    padding: 6px 6px;
    border-radius: 30px;
    justify-content: center;
    border: 0;
    margin-right: .5rem;
}

.facebook-btn, .linkedin-btn, .instagram-btn {
    position: relative;
    opacity: 0;
    transition: all 1s ease .5s;
}
        

.site-footer-info-tel, .site-footer-info-fax, .site-footer-info-email {
    position: relative;
    opacity: 0;
    transition: all 1s ease .5s;
    margin: .5rem 0 0 0;
    font-size: 14pt;
    font-weight: 600;
    color: rgb(166, 168, 171);
}   

.site-footer-info-tel > span, .site-footer-info-fax > span, .site-footer-info-email > span {
    line-height: 90%;
}

.site-footer-info-email a {
    color: rgb(166, 168, 171);
    text-decoration: none;
}
/*/Footer*/

@media only screen and (max-width: 1230px){
    
}

@media only screen and (max-width: 1201px){
    
    /*Navigation Bar*/
    .header-area .navbar {
        padding: 2.5rem 3rem 1rem 3rem;
    }

    .header-area .navbar .container{
        margin: 0 0;
        padding: 0 0;
    }

    .header-area .navbar .nav-item {
        padding-left: 1rem;
    }
    /*/Navigation Bar*/

    /*Site Project*/
    .site-main .site-project {
        padding: 5rem 6rem;
    }

    .site-main .site-project .site-project-title {
        padding-right: 1.5rem;
    }

    .site-project-title-text {
        font-size: 20pt; /*24pt to 20pt*/
    }

    .site-main .site-project .site-project-content {
        margin-top: 3rem;
        padding-right: 1.5rem;
    }

    .site-main .site-project .site-project-content .space-padding { 
        position: relative;
        top: 0%;
    }

    .site-project-content-special {
        margin-top: 6rem;
        padding-right: 1.5rem;
    }

    .site-project-content-special-1 {
        margin-top: 6rem;
    }

    .site-main .site-project .project-first-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-project .project-second-text span{ 
        font-weight: 600;
        color: white;
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-project .project-third-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-project .project-fourth-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    .site-scroll-down-1 {
        left: 3rem;
        bottom: 5rem;
    }

    .site-scroll-down-1 img {
        height: 30px;
        width: auto;
    }
    /*/Site Project*/

    /*Site Expertise*/
     .site-main .site-expertise {
        padding: 5rem 6rem;
    }

    .site-main .site-expertise .site-expertise-title {
        padding-right: 1.5rem;
    }

    .site-expertise-desc-1-title-text {
        font-size: 24pt; /*26pt to 24pt*/
    }

    .site-expertise-desc-1-point-1, .site-expertise-desc-1-point-2, .site-expertise-desc-1-point-3, .site-expertise-desc-1-point-4, .site-expertise-desc-1-point-5, .site-expertise-desc-1-point-6, .site-expertise-desc-1-point-7, .site-expertise-desc-1-point-8 {
        font-size: 20pt; /*24pt to 20pt*/
    } 

    .site-expertise-desc-2 img {
        width: 350px;
        height: 350px;
        border-radius: 50%;
        object-fit: cover;
        float: right;
    }

    .site-expertise-desc-11-title-text {
        font-size: 24pt; /*26pt to 24pt*/
    }

    .site-expertise-desc-11-point-1, .site-expertise-desc-11-point-2, .site-expertise-desc-11-point-3, .site-expertise-desc-11-point-4, .site-expertise-desc-11-point-5, .site-expertise-desc-11-point-6, .site-expertise-desc-11-point-7 {
        font-size: 20pt; /*24pt to 20pt*/
    } 

    .site-expertise-desc-22 img {
        width: 350px;
        height: 350px;
        border-radius: 50%;
        object-fit: cover;
        float: left;
    }


    .site-expertise-content-special {
        margin-top: 6rem;
        padding-right: 1.5rem;
    }

    .site-expertise-content-special-1 {
        margin-top: 6rem;
    }

    .site-main .site-expertise .expertise-first-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-expertise .expertise-second-text span{ 
        font-weight: 600;
        color: white;
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-expertise .expertise-third-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-expertise .expertise-fourth-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    
    .approach-row {
        margin-top: 4rem;
    }
    /*/Site Expertise*/

    /*Footer*/
    .site-footer {
        padding: 0rem 6rem 3rem 6rem;
    }

    .site-footer .site-footer-address > span {
        font-size: 12pt;
        line-height: 90%;
    }

    .footer-info-container .btn {
        width: 35px;
        height: 35px;
        padding: 4px 4px;
        border-radius: 30px;
        justify-content: center;
        border: 0;
        margin-right: .5rem;
    }

    .site-footer-info-tel, .site-footer-info-fax, .site-footer-info-email {
        font-size: 12pt;
    }   

    .site-footer-info-tel > span, .site-footer-info-fax > span, .site-footer-info-email > span {
        line-height: 90%;
    }
    /*/Footer*/

}

/* viewport width: 1024 - pass */

@media only screen and (max-width: 992px){
    
    
    /*Navigation Bar*/
    .collapse.navbar-collapse {
        text-align: center;
        background-color: black;
        width: fit-content;
    }
    /*/Navigation Bar*/

    /*Site Project*/
    .site-main .site-project {
        padding: 5rem 6rem;
    }

    .site-main .site-project .site-project-title {
        padding-right: 1.5rem;
    }

    .site-project-text-1,   .site-project-text-2,  .site-project-text-3,  .site-project-text-4,  .site-project-text-5,  .site-project-text-6,  .site-project-text-7,  .site-project-text-8,  .site-project-text-9 {
        font-size: 12pt; /*14pt to 12pt*/
        margin-top: 1rem;
        line-height: 90%;
    }

    .site-project-img-1,   .site-project-img-2,  .site-project-img-3,  .site-project-img-4,  .site-project-img-5,  .site-project-img-6,  .site-project-img-7,  .site-project-img-8,  .site-project-img-9 {
        width: 100%;
        object-fit: cover;
    }

    .site-project-content-special {
        margin-top: 6rem;
        padding-right: 1.5rem;
    }

    .site-main .site-project .site-project-content .space-padding { 
        position: relative;
        top: 0%;
    }

    .site-main .site-project .project-first-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-project .project-second-text span{ 
        font-weight: 600;
        color: white;
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-project .project-third-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-project .project-fourth-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }
    /*/Site Project*/

    /*Site Expertise*/
    .site-main .site-expertise {
        padding: 5rem 6rem;
    }

    .site-main .site-expertise .site-expertise-title {
        padding-right: 1.5rem;
    }

    .site-expertise-content-special {
        margin-top: 6rem;
        padding-right: 1.5rem;
    }

    .site-main .site-expertise .expertise-first-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-expertise .expertise-second-text span{ 
        font-weight: 600;
        color: white;
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-expertise .expertise-third-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    .site-main .site-expertise .expertise-fourth-text span{ 
        font-size: 25pt;
        line-height: 90%;
    }

    .approach-row {
        margin-top: 4rem;
    }
    
    .approach-container-1, .approach-container-2, .approach-container-3, .approach-container-4, .approach-container-5, .approach-container-6 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        margin-top: 2rem;
        float: none;
    }
    
    .approach-icon-1, .approach-icon-2, .approach-icon-3, .approach-icon-4, .approach-icon-5, .approach-icon-6 {
        font-size: 2.5rem;
    }
    
    .approach-title-1, .approach-title-2, .approach-title-3, .approach-title-4, .approach-title-5, .approach-title-6 {
        font-size: 20pt; /*22pt to 20pt*/
    }
    
    .approach-desc-1, .approach-desc-2, .approach-desc-3, .approach-desc-4, .approach-desc-5, .approach-desc-6 {
        font-size: 12pt; /*14pt to 12pt*/
        width: 25ch;
        text-align: center;
    }
    /*/Site Expertise*/

    /*Footer*/
    .site-footer {
        padding: 0rem 6rem 3rem 6rem;
    }

    .site-footer img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .site-footer .site-footer-address {
        text-align: center;
        margin-bottom: 2rem;
    }

    .site-footer .site-footer-address > span {
        font-size: 12pt;
        line-height: 90%;
    }

    .footer-info-container {
        text-align: center;
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-info-container .d-flex {
        justify-content: center;
    }

    .footer-info-container .btn {
        width: 35px;
        height: 35px;
        padding: 4px 4px;
        border-radius: 30px;
        justify-content: center;
        border: 0;
        margin-right: .5rem;
    }

    .site-footer-info-tel, .site-footer-info-fax, .site-footer-info-email {
        font-size: 12pt;
    }   

    .site-footer-info-tel > span, .site-footer-info-fax > span, .site-footer-info-email > span {
        line-height: 90%;
    }
    /*/Footer*/

}
@media only screen and (max-width: 871px) {
    .site-main .site-project .btn {
        margin-top: 0;
        padding: .6rem 1rem;
        background: transparent;
    }

    .site-expertise-desc-1 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .site-expertise-desc-1-title-text {
        font-size: 20pt; /*26pt to 24pt*/ /*24pt to 20pt*/
    }

    .site-expertise-desc-1-point-1, .site-expertise-desc-1-point-2, .site-expertise-desc-1-point-3, .site-expertise-desc-1-point-4, .site-expertise-desc-1-point-5, .site-expertise-desc-1-point-6, .site-expertise-desc-1-point-7, .site-expertise-desc-1-point-8 {
        font-size: 17pt; /*24pt to 20pt*/ /*20pt to 17pt*/
    } 

    .site-expertise-desc-2 {
        margin-top: 3rem;
    }

    .site-expertise-desc-2 img {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        float: right;
    }

    .site-expertise-desc-11 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .site-expertise-desc-11-title-text {
        font-size: 20pt; /*26pt to 24pt*/ /*24pt to 20pt*/
    }

    .site-expertise-desc-11-point-1, .site-expertise-desc-11-point-2, .site-expertise-desc-11-point-3, .site-expertise-desc-11-point-4, .site-expertise-desc-11-point-5, .site-expertise-desc-11-point-6, .site-expertise-desc-11-point-7 {
        font-size: 17pt; /*24pt to 20pt*/ /*20pt to 17pt*/
    } 

    .site-expertise-desc-22 {
        margin-top: 3rem;
    }

    .site-expertise-desc-22 img {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        float: left;
    }
}


@media only screen and (max-width: 819px){

    /*Site Project*/
    .site-main .site-project {
        padding: 5rem 3.5rem;
    }

    .site-project-content-special {
        margin-top: 3rem;
        padding-right: 1.5rem;
    }

    .site-project-content-special-1 {
        margin-top: 3rem;
    }

    .site-main .site-project .site-project-content-special .space-padding { 
        position: relative;
        top: 10%;
    }

    .site-scroll-down-1 {
        left: 2rem;
    }
    /*/Site Project*/

    /*Site Expertise*/
    .site-main .site-expertise {
        padding: 5rem 3.5rem;
    }


    .site-expertise-content-special {
        margin-top: 3rem;
        padding-right: 1.5rem;
    }

    .site-expertise-content-special-1 {
        margin-top: 3rem;
    }
    /*/Site Expertise*/

    /*Footer*/
    .site-footer {
        padding: 0rem 3.5rem 3rem 3.5rem;
    }
    
}

@media only screen and (max-width: 768px) {
    .site-scroll-down-1 {
        left: 3.5rem;
        bottom: 2rem;
    }

    .site-expertise-desc-2 img {
        width: 270px;
        height: 270px;
        border-radius: 50%;
        object-fit: cover;
    }

    .site-expertise-desc-22 img {
        width: 270px;
        height: 270px;
        border-radius: 50%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 721px) {

    .site-expertise-desc-2 img {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        object-fit: cover;
    }

    .site-expertise-desc-22 img {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        object-fit: cover;
    }

    
}

@media only screen and (max-width: 641px) {
    /*Navigation Bar*/
    .header-area .navbar .navbar-brand img {
        height: 60px;
    }
    /*/Navigation Bar*/

    /*Site Project*/
    .site-project-title-text {
        font-size: 17pt; /*24pt to 20pt*/ /*20pt to 17pt*/
    }

    .site-project-title-line {
        margin: .5rem 0;
    }

    .site-main .site-project .site-project-content {
        margin-top: 2rem;
        padding-right: 1.5rem;
    }

    .site-project-text-1,   .site-project-text-2,  .site-project-text-3,  .site-project-text-4,  .site-project-text-5,  .site-project-text-6,  .site-project-text-7,  .site-project-text-8,  .site-project-text-9{
        font-size: 12pt; /*14pt to 12pt*/
        margin-top: .5rem;
        line-height: 90%;
    }

    .site-main .site-project .site-project-content-special {
        margin-top: 2rem;
        padding-right: 1.5rem;
    }

    .site-main .site-project .site-project-content-special-1 {
        margin-top: 2rem;
    }

    .site-main .site-project .site-project-content-special .space-padding { 
        position: relative;
        top: 0%;
    }

    .site-main .site-project .project-first-text span{ 
        font-size: 20pt; /*25pt to 20pt*/
        line-height: 90%;
    }

    .site-main .site-project .project-second-text span{ 
        font-size: 20pt; /*25pt to 20pt*/
        line-height: 90%;
    }

    .site-main .site-project .project-third-text span{ 
        font-size: 20pt; /*25pt to 20pt*/
        line-height: 90%;
    }

    .site-main .site-project .project-fourth-text span{ 
        font-size: 20pt; /*25pt to 20pt*/
        line-height: 90%;
    }
    /*/Site Project*/

    /*Site Expertise*/
    
    .site-expertise-title-text {
        font-size: 17pt; /*24pt to 20pt*/ /*20pt to 17pt*/
    }

    .site-project-expertise-line {
        margin: .5rem 0;
    }

    .site-expertise-desc-1 {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .site-expertise-desc-1-title-text {
        font-size: 17pt; /*26pt to 24pt*/ /*24pt to 20pt*/ /*20pt to 17pt*/ 
    }

    .site-expertise-desc-1-point-1, .site-expertise-desc-1-point-2, .site-expertise-desc-1-point-3, .site-expertise-desc-1-point-4, .site-expertise-desc-1-point-5, .site-expertise-desc-1-point-6, .site-expertise-desc-1-point-7, .site-expertise-desc-1-point-8 {
        font-size: 15pt; /*24pt to 20pt*/ /*20pt to 17pt*/ /*170pt to 15pt*/
    } 

    .site-expertise-desc-2 {
        margin-top: 3rem;
        position: relative;
    }

    .site-expertise-desc-2 img {
        max-width: 200px;
        max-height: 200px;
        border-radius: 50%;
    }
    
    .site-expertise-desc-11 {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .site-expertise-desc-11-title-text {
        font-size: 17pt; /*26pt to 24pt*/ /*24pt to 20pt*/ /*20pt to 17pt*/ 
    }

    .site-expertise-desc-11-point-1, .site-expertise-desc-11-point-2, .site-expertise-desc-11-point-3, .site-expertise-desc-11-point-4, .site-expertise-desc-11-point-5, .site-expertise-desc-11-point-6, .site-expertise-desc-11-point-7 {
        font-size: 15pt; /*24pt to 20pt*/ /*20pt to 17pt*/ /*170pt to 15pt*/
    } 

    .site-expertise-desc-22 {
        margin-top: 3rem;
    }

    .site-expertise-desc-22 img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover; 
    }

    .site-main .site-expertise .site-expertise-content-special {
        margin-top: 2rem;
        padding-right: 1.5rem;
    }

    .site-main .site-expertise .site-expertise-content-special-1 {
        margin-top: 2rem;
    }

    .site-main .site-expertise .site-expertise-content-special .space-padding { 
        position: relative;
        top: 0%;
    }

    .site-main .site-expertise .expertise-first-text span{ 
        font-size: 20pt; /*25pt to 20pt*/
        line-height: 90%;
    }

    .site-main .site-expertise .expertise-second-text span{ 
        font-size: 20pt; /*25pt to 20pt*/
        line-height: 90%;
    }

    .site-main .site-expertise .expertise-third-text span{ 
        font-size: 20pt; /*25pt to 20pt*/
        line-height: 90%;
    }

    .site-main .site-expertise .expertise-fourth-text span{ 
        font-size: 20pt; /*25pt to 20pt*/
        line-height: 90%;
    }

    .approach-row {
        margin-top: 2rem;
    }
    
    .approach-container-1, .approach-container-2, .approach-container-3, .approach-container-4, .approach-container-5, .approach-container-6 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        margin-top: 1.5rem;
        float: none;
    }
    
    .approach-icon-1, .approach-icon-2, .approach-icon-3, .approach-icon-4, .approach-icon-5, .approach-icon-6 {
        font-size: 2.5rem;
    }
    
    .approach-title-1, .approach-title-2, .approach-title-3, .approach-title-4, .approach-title-5, .approach-title-6 {
        font-size: 17pt; /*22pt to 20pt*/ /*20pt to 17pt*/
    }
    
    .approach-desc-1, .approach-desc-2, .approach-desc-3, .approach-desc-4, .approach-desc-5, .approach-desc-6 {
        font-size: 11pt; /*14pt to 12pt*/ /*12pt to 11pt*/
        width: 25ch;
        text-align: center;
    }
    /*/Site Expertise*/

    /*Footer*/
    .site-footer .site-footer-address > span {
        font-size: 10pt;
        line-height: 90%;
    }

    .footer-info-container {
        text-align: center;
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-info-container .d-flex {
        justify-content: center;
    }

    .footer-info-container .btn {
        width: 33px;
        height: 33px;
        padding: 3px 3px;
        border-radius: 30px;
        justify-content: center;
        border: 0;
        margin-right: .5rem;
    }

    .site-footer-info-tel, .site-footer-info-fax, .site-footer-info-email {
        font-size: 10pt;
    }   

    .site-footer-info-tel > span, .site-footer-info-fax > span, .site-footer-info-email > span {
        line-height: 90%;
    }
}

@media only screen and (max-width: 620px) {
    .site-expertise-desc-2 img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        object-fit: cover;
    }

    .site-expertise-desc-22 img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 600px) {
    .site-expertise-desc-2 img {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
    }

    .site-expertise-desc-22 img {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 576px) {
    .site-expertise-desc-11-title-text {
        float: none;
    }

    .site-expertise-desc-11 .special-positioning {
        width: fit-content;
        float: left;
    }

    .site-expertise-desc-11-content {
        margin-top: 2rem;
        text-align: left;
        width: none;
        float: none;
    }

    .site-expertise-desc-1 {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .site-expertise-desc-11 {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .site-expertise-desc-2 img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
    }

    .site-expertise-desc-22 img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 559px) {

    /*Site Project*/
    .site-main .site-project {
        padding: 5rem 2rem;
    }

    .site-main .site-project .site-project-content {
        margin-top: 2rem;
        padding-right: 1rem;
    }

    .site-main .site-project .site-project-content .space-padding { 
        position: relative;
        top: 10%;
    }

    .site-scroll-down-1 {
        left: 2rem;
        bottom: 3rem;
    }
    /*/Site Project*/

    /*Site Expertise*/
    .site-main .site-expertise {
        padding: 5rem 2rem;
    }

    /*/Site Expertise*/

    /*Footer*/
    .site-footer {
        padding: 0rem 2rem 3rem 2rem;
    }
}

@media only screen and (max-width: 501px) {
    
    .site-expertise-desc-1-title-text {
        font-size: 16pt; /*26pt to 24pt*/ /*24pt to 20pt*/ /*20pt to 17pt*/ /*17pt to 16pt*/ /*16pt to 15pt*/ 
    }

    .site-expertise-desc-1-point-1, .site-expertise-desc-1-point-2, .site-expertise-desc-1-point-3, .site-expertise-desc-1-point-4, .site-expertise-desc-1-point-5, .site-expertise-desc-1-point-6, .site-expertise-desc-1-point-7, .site-expertise-desc-1-point-8 {
        font-size: 13pt; /*24pt to 20pt*/ /*20pt to 17pt*/ /*170pt to 15pt*/
    } 

    .site-expertise-desc-11-title-text {
        font-size: 16pt; /*26pt to 24pt*/ /*24pt to 20pt*/ /*20pt to 17pt*/ /*17pt to 16pt*/ /*16pt to 15pt*/ 
    }

    .site-expertise-desc-11-point-1, .site-expertise-desc-11-point-2, .site-expertise-desc-11-point-3, .site-expertise-desc-11-point-4, .site-expertise-desc-11-point-5, .site-expertise-desc-11-point-6, .site-expertise-desc-11-point-7 {
        font-size: 13pt; /*24pt to 20pt*/ /*20pt to 17pt*/ /*170pt to 15pt*/
    } 
}

/* Viewport Width - Mobile - 479px */
@media only screen and (max-width: 480px) {
    
    /*Site Project*/
    .site-main .site-project {
        padding: 5rem 1.5rem;
    }

    .site-main .site-project .site-project-content {
        margin-top: 2rem;
        padding-right: .5rem;
    }

    .site-main .site-project .site-project-content-special {
        margin-top: 2rem;
        padding-right: .5rem;
    }

    .site-main .site-project .site-project-content-special .space-padding { 
        top: 10%;
    }

    .site-project-content-special .space-padding .wrapper h2 {
        margin-bottom: 0.2rem;
    }

    .project-first-text, .project-second-text, .project-third-text, .project-fourth-text {
        line-height: 80%;
    }

    .site-main .site-project .project-first-text span{ 
        font-size: 15pt; /*25pt to 20pt*/
        line-height: 80%;
    }

    .site-main .site-project .project-second-text span{ 
        font-size: 15pt; /*25pt to 20pt*/
        line-height: 80%;
    }

    .site-main .site-project .project-third-text span{ 
        font-size: 15pt; /*25pt to 20pt*/
        line-height: 80%;
    }

    .site-main .site-project .project-fourth-text span{ 
        font-size: 15pt; /*25pt to 20pt*/
        line-height: 80%;
    }

    .site-scroll-down-1 {
        left: 1.5rem;
        bottom: 2rem;
    }
    /*/Site Project*/

    /*Site Expertise*/
    .site-main .site-expertise {
        padding: 5rem 1.5rem;
    }

    .site-expertise-desc-1-title-text {
        font-size: 15pt; /*26pt to 24pt*/ /*24pt to 20pt*/ /*20pt to 17pt*/ /*17pt to 16pt*/ /*16pt to 15pt*/ 
    }

    .site-expertise-desc-1-point-1, .site-expertise-desc-1-point-2, .site-expertise-desc-1-point-3, .site-expertise-desc-1-point-4, .site-expertise-desc-1-point-5, .site-expertise-desc-1-point-6, .site-expertise-desc-1-point-7, .site-expertise-desc-1-point-8 {
        font-size: 12pt; /*24pt to 20pt*/ /*20pt to 17pt*/ /*170pt to 15pt*/ /*15pt to 13pt*/ /*13pt to 12pt*/
    } 

    .site-expertise-desc-11-title-text {
        font-size: 15pt; /*26pt to 24pt*/ /*24pt to 20pt*/ /*20pt to 17pt*/ /*17pt to 16pt*/ /*16pt to 15pt*/ 
    }

    .site-expertise-desc-11-point-1, .site-expertise-desc-11-point-2, .site-expertise-desc-11-point-3, .site-expertise-desc-11-point-4, .site-expertise-desc-11-point-5, .site-expertise-desc-11-point-6, .site-expertise-desc-11-point-7 {
        font-size: 12pt; /*24pt to 20pt*/ /*20pt to 17pt*/ /*170pt to 15pt*/ /*15pt to 13pt*/ /*13pt to 12pt*/
    } 

    .site-expertise-desc-2 img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
    }

    .site-expertise-desc-22 img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
    }

    .site-main .site-expertise .site-expertise-content-special {
        margin-top: 2rem;
        padding-right: .5rem;
    }

    .site-expertise-content-special .space-padding .wrapper h2 {
        margin-bottom: 0.2rem;
    }

    .expertise-first-text, .expertise-second-text, .expertise-third-text, .expertise-fourth-text {
        line-height: 80%;
    }

    .site-main .site-expertise .expertise-first-text span{ 
        font-size: 15pt; /*25pt to 20pt*/
        line-height: 80%;
    }

    .site-main .site-expertise .expertise-second-text span{ 
        font-size: 15pt; /*25pt to 20pt*/
        line-height: 80%;
    }

    .site-main .site-expertise .expertise-third-text span{ 
        font-size: 15pt; /*25pt to 20pt*/
        line-height: 80%;
    }

    .site-main .site-expertise .expertise-fourth-text span{ 
        font-size: 15pt; /*25pt to 20pt*/
        line-height: 80%;
    }

    .approach-row {
        margin-top: 2rem;
    }
    
    .approach-container-1, .approach-container-2, .approach-container-3, .approach-container-4, .approach-container-5, .approach-container-6 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        margin-top: 1.5rem;
        float: none;
    }
    
    .approach-icon-1, .approach-icon-2, .approach-icon-3, .approach-icon-4, .approach-icon-5, .approach-icon-6 {
        font-size: 2rem;
    }
    
    .approach-title-1, .approach-title-2, .approach-title-3, .approach-title-4, .approach-title-5, .approach-title-6 {
        font-size: 15pt; /*22pt to 20pt*/ /*20pt to 17pt*/ /*17pt to 15pt*/
    }
    
    .approach-desc-1, .approach-desc-2, .approach-desc-3, .approach-desc-4, .approach-desc-5, .approach-desc-6 {
        font-size: 10pt; /*14pt to 12pt*/ /*12pt to 11pt*/ /*11pt to 10pt*/
        width: 20ch;
        text-align: center;
    }
    /*/Site Expertise*/

    /*Footer*/
    .site-footer {
        padding: 0rem 3.5rem 3rem 3.5rem;
    }

}

@media only screen and (max-width: 420px) {
    .site-expertise-desc-1-point-1, .site-expertise-desc-1-point-2, .site-expertise-desc-1-point-3, .site-expertise-desc-1-point-4, .site-expertise-desc-1-point-5, .site-expertise-desc-1-point-6, .site-expertise-desc-1-point-7, .site-expertise-desc-1-point-8 {
        font-size: 10pt; /*24pt to 20pt*/ /*20pt to 17pt*/ /*170pt to 15pt*/ /*15pt to 13pt*/ /*13pt to 12pt*/ /*12pt to 10pt*/
    }

    .site-expertise-desc-11-point-1, .site-expertise-desc-11-point-2, .site-expertise-desc-11-point-3, .site-expertise-desc-11-point-4, .site-expertise-desc-11-point-5, .site-expertise-desc-11-point-6, .site-expertise-desc-11-point-7, .site-expertise-desc-11-point-8 {
        font-size: 10pt; /*24pt to 20pt*/ /*20pt to 17pt*/ /*170pt to 15pt*/ /*15pt to 13pt*/ /*13pt to 12pt*/ /*12pt to 10pt*/
    } 
}

@media only screen and (max-width: 400px) {
    .site-expertise-desc-2 img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
    }

    .site-expertise-desc-22 img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 381px){
    .approach-desc-1, .approach-desc-2, .approach-desc-3, .approach-desc-4, .approach-desc-5, .approach-desc-6 {
        font-size: 10pt; /*14pt to 12pt*/ /*12pt to 11pt*/ /*11pt to 10pt*/
        width: 18ch;
        text-align: center;
    }

    
}

@media only screen and (max-width: 341px){
    .header-area .navbar {
        padding: 2.5rem 2rem 1rem 2rem;
    }

    /*Site Project*/
    .site-main .site-project {
        padding: 5rem 1rem;
    }
    /*/Site Project*/

    /*Site Expertise*/
    .site-main .site-expertise {
        padding: 0 1rem 5rem 1rem;
    }
    /*/Site Expertise*/

    .site-scroll-down-1 {
        left: 1rem;
        bottom: 2rem;
    }

    /*Site Expertise*/
    .site-main .site-expertise {
        padding: 5rem 1rem;
    }
    /*Site Expertise*/

    .site-footer {
        padding: 0rem 2rem 3rem 2rem;
    }

}


/*Important - Must Be At Bottom*/
.const-animatedFadeInLeft {
    -webkit-transform: translateX(-40px);
    -webkit-opacity: 0;
    -moz-transform: translateX(-40px);
    -moz-opacity: 0;
    -o-transform: translateX(-40px);
    -o-opacity: 0;
    transform: translateX(-40px);
    opacity: 0;
  }
  
  .const-animatedFadeInRight {
    -webkit-transform: translateX(40px);
    -webkit-opacity: 0;
    -moz-transform: translateX(40px);
    -moz-opacity: 0;
    -o-transform: translateX(40px);
    -o-opacity: 0;
    transform: translateX(40px);
    opacity: 0;
  }
  
  .const-animatedFadeInBtm {
    -webkit-transform: translateY(40px);
    -webkit-opacity: 0;
    -moz-transform: translateY(40px);
    -moz-opacity: 0;
    -o-transform: translateY(40px);
    -o-opacity: 0;
    transform: translateY(40px);
    opacity: 0;
  }
  
  .const-animatedZoomIn {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  
  .const-fadeInLeft {
    -webkit-transform: translateX(0px);
    -webkit-opacity: 1;
    -moz-transform: translateX(0px);
    -moz-opacity: 1;
    -o-transform: translateX(0px);
    -o-opacity: 1;
    transform: translateX(0px);
    opacity: 1;
  }
  
  .const-fadeInRight {
    -webkit-transform: translateX(0px);
    -webkit-opacity: 1;
    -moz-transform: translateX(0px);
    -moz-opacity: 1;
    -o-transform: translateX(0px);
    -o-opacity: 1;
    transform: translateX(0px);
    opacity: 1;
  }
  
  .const-fadeInBtm {
    -webkit-transform: translateY(0px);
    -webkit-opacity: 1;
    -moz-transform: translateY(0px);
    -moz-opacity: 1;
    -o-transform: translateY(0px);
    -o-opacity: 1;
    transform: translateY(0px);
    opacity: 1;
    transform: translateY(0px);
    opacity: 1;
  }

  .const-zoomIn {
    -webkit-transform: scale(1);
    -webkit-opacity: 1;
    -moz-transform: scale(1);
    -moz-opacity: 1;
    -o-transform: scale(1);
    -o-opacity: 1;
    transform: scale(1);
    opacity: 1;
  }


/*/Important - Must Be At Bottom*/
