/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*============HERO SECTION============*/
main.homeWrapper {
    min-height: 100vh;
}
section.homeHeroSection {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    overflow: hidden;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 3rem;
}
section.homeHeroSection .video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
section.homeHeroSection .video-overlay > * {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: calc(100vh - 95px);
}
section.homeHeroSection .heroSectionInfo h1{
    margin-bottom: 6rem;
    color: var(--white);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    mix-blend-mode: difference;
}
section.homeHeroSection .heroWrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
section.homeHeroSection .heroWrap video.videoDesktop {
    display: block;
}
section.homeHeroSection .heroWrap video.mobileDesktop {
    display: none;
}
/*============HERO SECTION============*/
/*===========SCROLL DOWN==============*/
.scrollDown{
    width: 24px;
    height: 24px;
    position: absolute;
    z-index: 1;
    right: 2rem;
    bottom: 3rem;
}
.chevron {
    position: absolute;
    width: 20px;
    height: 2px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}

.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;

    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.text {
    display: block;
    margin-top: 75px;
    margin-left: -30px;
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}
/*===========SCROLL DOWN==============*/
/*============GRAPH SHAPE============*/
section.graphShapeContainer {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: .8fr 3.6rem 1fr;
    grid-template-columns: .8fr 1fr;
    grid-column-gap: 3.6rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 2rem 0 1rem;
    justify-content: space-between;
}
section.graphShapeContainer .graphShapeInfo p {
    font-size: 2rem;
    font-weight: 400;
    color: var(--blue);
}
section.graphShapeContainer .graphShapeMedia {
    width: 100%;
    min-height: 45vh;
    height: 45vh;
}
section.graphShapeContainer .graphShapeMedia img {
    width: 100%;
    height: auto;
}
section.graphShapeContainer .graphShapeInfo {
    width: 100%;
}
/*============GRAPH SHAPE============*/
/*==============PROJECTS=================*/
section.projectsContainer {
    position: relative;
    padding: 15rem var(--spaceS) 6rem var(--spaceXX);
}
section.projectsContainer .swiper .projectWrap {
    position: relative;
    width: 93%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 75vh;
    background-color: var(--white);
}
section.projectsContainer .swiper .projectWrap .project-media {
    width: 40%;
    height: 75vh;
    overflow: hidden;
}
section.projectsContainer .swiper .projectWrap .project-info {
    width: 56%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
section.projectsContainer .swiper .projectWrap .project-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
section.projectsContainer .swiper .projectWrap .project-info .project-title {
    position: relative;
    width: 100%;
    padding-top: 7rem;
}
section.projectsContainer .swiper .projectWrap .project-info .project-description {
    padding-bottom: 5rem;
}
section.projectsContainer .swiper .projectWrap .project-info .project-title p.project-name {
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    color: rgba(26, 56, 85, 0.30);
    text-transform: capitalize;
}
section.projectsContainer .swiper .projectWrap .project-info .project-title .client-title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .3rem;
    -moz-column-gap: .3rem;
    column-gap: .3rem;
    text-transform: capitalize;
}
section.projectsContainer .swiper .projectWrap .project-info .project-title .client-title-wrap > * {
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    -webkit-transition: all ease-in-out .25s;
    -o-transition: all ease-in-out .25s;
    transition: all ease-in-out .25s;
}
section.projectsContainer .swiper .projectWrap .project-info .project-description p {
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    -webkit-transition: all ease-in-out .25s;
    -o-transition: all ease-in-out .25s;
    transition: all ease-in-out .25s;
}
section.projectsContainer .swiper .swiper-button-next {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    top: auto;
    margin: 0;
    padding-right: 1.3rem;
    color: var(--blue);
    font-size: 1.5rem;
    text-transform: uppercase;
    width: auto;
    bottom: 0;
}
section.projectsContainer .swiper .swiper-button-next::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 10px solid var(--blue);
    border-bottom: 5px solid transparent;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
section.projectsContainer .swiper .swiper-button-prev {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    top: auto;
    margin: 0;
    padding-left: 1.3rem;
    color: var(--blue);
    font-size: 1.5rem;
    bottom: 0;
    left: auto;
    right: 8rem;
    width: auto;
    text-transform: uppercase;
}
section.projectsContainer .swiper .swiper-button-prev::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 10px solid var(--blue);
    border-bottom: 5px solid transparent;
    left: 0;
    position: absolute;
}
section.projectsContainer .swiper .projectWrap:hover .project-media img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

section.projectsContainer .swiper .projectWrap:hover .project-info .project-description p {
    color: var(--blue);
}

section.projectsContainer .swiper .projectWrap:hover .project-info .project-title .client-title-wrap > * {
    color: var(--blue);
}
section.projectsContainer h2 {
    color: var(--blue);
    position: absolute;
    top: 50%;
    z-index: 2;
    left: 5vw;
    font-size: 6rem;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0;
}
/*==============PROJECTS=================*/
/*==============BLOG=================*/
section.blogContainer {
    position: relative;
    width: 100%;
    display: block;
}
section.blogContainer .swiper {
    padding: 6rem var(--spaceS) 0;
}
section.blogContainer .swiper .blogWrap {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}
section.blogContainer .swiper .blogWrap .blog-media {
    position: relative;
    width: 100%;
    height: 100%;
}
section.blogContainer .swiper .blogWrap .blog-info {
    position: relative;
    width: 100%;
    display: block;
}
section.blogContainer .swiper .blogWrap .blog-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}

section.blogContainer .swiper .blogWrap .blog-info .duration-read {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .2rem;
    -moz-column-gap: .2rem;
    column-gap: .2rem;
}

section.blogContainer .swiper .blogWrap .blog-info .duration-read span {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: var(--light-blue);
}
section.blogContainer .swiper .blogWrap .blog-info h2 {
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 500;
    margin: 3px 0;
}

section.blogContainer .swiper .blogWrap .blog-info p.shortDescription {
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
}
section.blogContainer .view.all {
    padding-top: 7rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
section.blogContainer .view.all a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    font-size: 1.75rem;
}
section.blogContainer .view.all a p {
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
section.blogContainer .view.all a img {
    width: 1.9rem;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
section.blogContainer .swiper .blogWrap .blog-media-read-more-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 2.5rem;
    overflow: hidden;
    min-height: 55vh;
}
section.blogContainer .swiper .blogWrap .blog-media-read-more-wrap .details-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
    opacity: 0;
}

section.blogContainer .swiper .blogWrap .blog-media-read-more-wrap .details-box > div {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section.blogContainer .swiper .blogWrap .blog-media-read-more-wrap .details-box > div span {
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.32);
    font-size: 3rem;
    font-weight: 100;
    white-space: pre;
    text-transform: capitalize;
}
section.blogContainer .swiper .blogWrap:hover .blog-media-read-more-wrap .details-box{
    opacity:1
}
section.blogContainer .swiper .blogWrap:hover .blog-media img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}
section.blogContainer .view.all a:hover p {
    color: var(--blue);
}

section.blogContainer .view.all a:hover img {
    -webkit-filter: invert(18%) sepia(53%) saturate(670%) hue-rotate(167deg) brightness(89%) contrast(92%);
    filter: invert(18%) sepia(53%) saturate(670%) hue-rotate(167deg) brightness(89%) contrast(92%);
}
/*==============BLOG=================*/
/*==============FEATURE PROJECT=================*/
section.featureProjectsContainer {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
section.featureProjectsContainer h2 {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--blue);
    font-size: 4rem;
    font-weight: 400;
    top: calc(var(--headerHeight) + 2.5rem);
    text-transform: capitalize;
}

section.featureProjectsContainer .featureProjectsWrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 72vh;
    overflow: hidden;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .featureProjectsBox {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}
section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:nth-of-type(2) {
    padding-top: 2rem;
}

section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:nth-of-type(3) {
    padding-top: 4rem;
}
section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:nth-of-type(1) .featureProjectsBox {
    width: 80%;
    height: 80%;
}

section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:nth-of-type(2) .featureProjectsBox {
    width: 90%;
    height: 90%;
}
section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .media-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .media-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}

section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1rem;
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
    opacity: 0;
    padding-bottom: 6rem;
}
section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap .detail-box > div {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
}
section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap .detail-box > div span {
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.32);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 100;
    text-transform: uppercase;
    white-space: pre;
}
section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:hover .info-wrap {
    opacity: 1;
}
section.featureProjectsContainer .fPWrapper {
    padding-bottom: 2rem;
    width: 32vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:hover .media-wrap img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}
.projects-type-icon-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
}
.projects-type-icon-wrapper {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1rem;
}
.projects-type-icon-wrapper .projects-type-icon-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
}
.projects-type-icon-wrapper .projects-type-icon-wrap .icon {
    width: 2.6125rem;
    height: 2.6125rem;
    border-radius: 0.25rem;
    background: rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.28);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: .48rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.projects-type-icon-wrapper .projects-type-icon-wrap .icon-text {
    border-radius: 0.25rem;
    background: rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.28);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
    padding: 0.3rem .5rem;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 0;
    opacity: 0;
    position: relative;
    -webkit-transform: translateX(-60px);
    -ms-transform: translateX(-60px);
    transform: translateX(-60px);
    -webkit-transition: opacity .6s cubic-bezier(.215,.61,.355,1),-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
    transition: opacity .6s cubic-bezier(.215,.61,.355,1),-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
    -o-transition: opacity .6s cubic-bezier(.215,.61,.355,1),transform .6s cubic-bezier(.215,.61,.355,1);
    transition: opacity .6s cubic-bezier(.215,.61,.355,1),transform .6s cubic-bezier(.215,.61,.355,1);
    transition: opacity .6s cubic-bezier(.215,.61,.355,1),transform .6s cubic-bezier(.215,.61,.355,1),-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
}

.projects-type-icon-wrapper .projects-type-icon-wrap .icon-text span {
    line-height: 1;
    text-transform: capitalize;
}

.projects-type-icon-wrapper .projects-type-icon-wrap .icon img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:hover .projects-type-icon-wrapper .projects-type-icon-wrap .icon-text {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
/*==============FEATURE PROJECT=================*/
/*==============SLOGAN SECTION=================*/
section.homeSloganContainer {
    position: relative;
    width: 100%;
    display: block;
    padding-top: 4rem;
    padding-bottom: 10rem;
    overflow: hidden;
}
section.homeSloganContainer .sloganText {
    position: relative;
    overflow: hidden;
}
section.homeSloganContainer .polygon-wrap .polygon-box {
    position: relative;
    width: 40.8125rem;
    height: 36.8125rem;
}
section.homeSloganContainer .sloganText div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
section.homeSloganContainer .homeSloganWrapper {
    padding-right: var(--spaceX);
    width: 65%;
    margin-left: auto;
    text-align: right;
    position: relative;
}
section.homeSloganContainer .homeSloganWrapper .content p {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--blue);
}
section.homeSloganContainer .sloganText div span {
    font-size: 4rem;
    font-weight: 400;
    color: var(--blue);
    opacity: .15;
    white-space: pre;
}
section.homeSloganContainer .homeSloganWrapper .content {
    padding: 6rem 0;
}
section.homeSloganContainer .homeSloganWrapper .content p {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--blue);
}
.polygon-back{
    -webkit-clip-path: polygon(15% 0, 100% 0, 72% 78%, 0 100%);
    clip-path: polygon(15% 0, 100% 0, 72% 78%, 0 100%);
    background-color: rgb(0 0 0 / 3%);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section.homeHeroSection .heroWrap img.beforeLoad {
    position: relative;
    width: 100%;
    height: calc(100vh - 95px);
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 0;
}
.heroSectionInfo {
    position: absolute;
    padding-left: calc(var(--spaceX) - 3rem);
    z-index: 2;
    width: 100%;
}
section.homeSloganContainer .polygon-wrap {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 10vw;
}
.polygon-back:nth-of-type(2) {
    z-index: 2;
    background-color: rgb(255 255 255 / 46%);
    width: 99%;
    height: 99%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/*==============SLOGAN SECTION=================*/
/*==============MAP SECTION=================*/
.map-info {
    width: 200px;
}

.map-info img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    margin-bottom: 1rem;
}

.gm-style .gm-style-iw-d {
    padding-right: 0px !important;
    padding-left: 7px;
}

.map-info h4.info-window-header {
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 1rem;
    text-align: center;
}

.map-info a {
    margin-bottom: .5rem;
    display: block;
    text-align: center;
    font-weight: 500;
}

.gm-style .gm-style-iw-d .map-direction {
    display: block;
    text-align: center;
    margin-bottom: .5rem;
    font-weight: 500;
}
section.homeMap {
    position: relative;
    height: 75vh;
}
section.homeMap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
section.homeMap #homeMap {
    position: relative;
    width: 100%;
    height: 100%;
}
section.homeMap .video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: overlay;
    pointer-events: none;
}
section.homeMap .video-overlay video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
/*==============MAP SECTION=================*/
video::-webkit-media-controls {
    display:none !important;
}
*::-webkit-media-controls-panel {
    display: none!important;
    -webkit-appearance: none;
}
/* Old shadow dom for play button */
*::-webkit-media-controls-play-button {
    display: none!important;
    -webkit-appearance: none;
}
/* New shadow dom for play button */
/* This one works! */
*::-webkit-media-controls-start-playback-button {
    display: none!important;
    -webkit-appearance: none;
}
.h-text {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    --marquee-width: 100vw;
    --offset: 20vw;
    --move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset));
    --item-font-size: 2.5rem;
    top: 0;
    position: absolute;
    z-index: 0;
}
.h-text:last-child .marquee__inner{
    animation: marqueeR 5s linear infinite forwards;
}
/* Make sure 3 items are visible in the viewport by setting suitable font size. */
.marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--marquee-width);
    overflow: hidden;
    pointer-events: none;
    mix-blend-mode: color-burn;
}
.marquee__inner {
    width: fit-content;
    display: flex;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    animation: marquee 10s linear infinite forwards;
    animation-play-state: paused;
    opacity: 0;
    transition: opacity 0.1s;
}
.marquee .marquee__inner {
    animation-play-state: running;
    opacity: 1;
    transition-duration: 0.4s;
}
.marquee span {
    text-align: center;
    white-space: nowrap;
    font-size: var(--item-font-size);
    padding: 0 1vw;
    font-weight: 400;
    line-height: 1;
    color: var(--blue);
    opacity: .15;
}
.h-text.ht2 {
    /* top: 38%; */
}
.h-text.ht3 {
    top: auto;
    bottom: 187px;
}
@keyframes marquee {
    0% {
        transform: translate3d(var(--move-initial), 0, 0);
    }

    100% {
        transform: translate3d(var(--move-final), 0, 0);
    }
}
@keyframes marqueeR {
    0% {
        transform: translate3d(var(--move-final), 0, 0);
    }

    100% {

        transform: translate3d(var(--move-initial), 0, 0);
    }
}
@media only screen and (max-width: 768px){

    /*===========ROOT==============*/
    :root {
        --spaceXXS: 60px;
    }
    /*===========ROOT==============*/
    /*============LOADING==============*/
    #loading .video-box {
        padding: 1rem;
    }
    #loading .video-box {
        height: 100vh;
    }

    #loading {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    #loading .loading-number {
        height: 100vh;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    /*============LOADING==============*/
    /*============HERO SECTION==============*/
    section.homeHeroSection {
        padding: 1rem;
        height: 100vh !important;
    }
    section.homeHeroSection .video-overlay > * {
        height: 100%;
        min-height: auto;
    }

    section.homeHeroSection .heroWrap img.beforeLoad {
        height: 100%;
    }

    section.homeHeroSection .heroSectionInfo h1 {
        font-size: 2.2rem;
        margin-bottom: 6rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    section.homeHeroSection .heroWrap video.videoDesktop {
        display: none;
    }

    section.homeHeroSection .heroWrap video.mobileDesktop {
        display: block;
    }
    .scrollDown {
        right: 1rem;
    }
    /*============HERO SECTION==============*/
    /*============CHART SECTION==============*/
    section.graphShapeContainer .graphShapeInfo p {
        font-size: 1.25rem;
    }
    section.graphShapeContainer {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-row-gap: 2rem;
        margin: 2rem 0 0;
    }
    section.graphShapeContainer .graphShapeMedia {
        height: auto;
        min-height: auto;
    }
    /*============CHART SECTION==============*/
    /*============FEATURE PROJECTS SECTION==============*/
    section.featureProjectsContainer h2 {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    section.featureProjectsContainer {
        display: block;
        padding: 3rem var(--spaceX) 2rem;
    }
    section.featureProjectsContainer .fPWrapper {
        width: 100%;
        height: auto;
        padding: 0;
    }
    section.featureProjectsContainer .featureProjectsWrapper {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap {
        position: relative;
        top: auto;
        left: auto;
        height: 60vh;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:nth-of-type(1) .featureProjectsBox {
        width: 100%;
        height: 100%;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:nth-of-type(2) .featureProjectsBox {
        width: 100%;
        height: 100%;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:hover .info-wrap {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        pointer-events: auto;
    }
    .projects-type-icon-wrapper .projects-type-icon-wrap .icon {
        width: 2.1125rem;
        height: 2.1125rem;
        padding: 0.38rem;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap {
        opacity: 1;
        pointer-events: none;
        padding-bottom: 3rem;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        padding-left: 10px;
        padding-right: 10px;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap .detail-box > div span {
        font-size: 1.5rem;
        white-space: unset;
        text-align: center;
    }
    .projects-type-icon-wrapper .projects-type-icon-wrap .icon-text span {
        font-size: .8rem;
    }

    .projects-type-icon-wrapper {
        row-gap: .7rem;
    }

    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:nth-of-type(3) {
        padding-top: 2rem;
    }
    /*============FEATURE PROJECTS SECTION==============*/
    /*============SLOGAN SECTION==============*/
    section.homeSloganContainer .sloganText div span {
        font-size: 2.5rem;
    }
    section.homeSloganContainer .sloganText {
        display: none;
    }

    .h-text {
        top: 25px;
    }

    .h-text:last-child {
        top: auto;
        bottom: 93px;
    }
    section.homeSloganContainer .homeSloganWrapper {
        width: 100%;
        padding-left: var(--spaceX);
    }
    section.homeSloganContainer .homeSloganWrapper .content p {
        font-size: 1.5rem;
    }
    section.homeSloganContainer .homeSloganWrapper .content {
        padding: 4rem 0;
    }

    section.homeSloganContainer .polygon-wrap .polygon-box {
        width: 11.64094rem;
        height: 10.5rem;
    }
    section.homeSloganContainer .polygon-wrap {
        left: -3vw;
    }
    .polygon-back {
        -webkit-backdrop-filter: blur(1px);
        backdrop-filter: blur(1px);
    }
    section.homeSloganContainer .homeSloganWrapper .content {
        padding: 2rem 0;
    }
    /*============SLOGAN SECTION==============*/
    /*============PROJECTS SECTION==============*/
    section.homeSloganContainer {
        padding-bottom: 5rem;
    }
    section.homeMap {
        height: 45vh;
    }
    section.projectsContainer {
        padding: 5rem var(--spaceS) 3rem var(--spaceXXS);
    }
    section.projectsContainer .swiper .projectWrap {
        height: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    section.projectsContainer .swiper .projectWrap .project-media {
        width: 95%;
        height: 40vh;
    }

    section.projectsContainer .swiper .projectWrap .project-info {
        width: 95%;
        height: auto;
    }

    section.projectsContainer .swiper .projectWrap .project-info .project-title {
        padding-top: 1.5rem;
    }

    section.projectsContainer .swiper .projectWrap .project-info .project-title p.project-name {
        font-size: 1rem;
    }

    section.projectsContainer .swiper .projectWrap .project-info .project-title .client-title-wrap > * {
        font-size: 1.125rem;
        margin: .5rem 0;
    }

    section.projectsContainer .swiper .projectWrap .project-info .project-description p {
        font-size: 1.25rem;
    }
    section.projectsContainer .swiper .projectWrap .project-info .project-description {
        padding-top: 2rem;
    }
    section.projectsContainer h2 {
        height: 40vh;
        top: 5rem;
        font-size: 2.375rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    section.projectsContainer .swiper .swiper-button-next,section.projectsContainer .swiper .swiper-button-prev {
        font-size: 1rem;
        margin-right: 2rem;
    }
    section.projectsContainer .swiper .swiper-button-prev {
        right: auto;
        left: 0;
    }
    /*============PROJECTS SECTION==============*/
    /*============BLOG SECTION==============*/
    section.blogContainer .swiper .blogWrap .blog-media-read-more-wrap {
        min-height: auto;
        margin-bottom: 1.5rem;
    }

    section.blogContainer .swiper .blogWrap .blog-info .duration-read span {
        font-size: 0.725rem;
    }
    section.blogContainer .swiper .blogWrap .blog-info h2 {
        font-size: 1.25rem;
        font-weight: 700;
    }
    section.blogContainer .swiper .blogWrap .blog-info p.shortDescription {
        font-size: 0.85rem;
    }
    section.blogContainer .view.all {
        padding-top: 3rem;
    }

    section.blogContainer .view.all a p {
    }

    section.blogContainer .view.all a {
        font-size: .95rem;
    }

    section.blogContainer .view.all a img {
        width: 1.2rem;
    }
    /*============BLOG SECTION==============*/
    section.graphShapeContainer,section.featureProjectsContainer {
        opacity: 0;
        -webkit-transform: translateY(60px);
        -ms-transform: translateY(60px);
        transform: translateY(60px);
        -webkit-transition: opacity .6s cubic-bezier(.215,.61,.355,1),-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
        transition: opacity .6s cubic-bezier(.215,.61,.355,1),-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
        -o-transition: opacity .6s cubic-bezier(.215,.61,.355,1),transform .6s cubic-bezier(.215,.61,.355,1);
        transition: opacity .6s cubic-bezier(.215,.61,.355,1),transform .6s cubic-bezier(.215,.61,.355,1);
        transition: opacity .6s cubic-bezier(.215,.61,.355,1),transform .6s cubic-bezier(.215,.61,.355,1),-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
    }
    body.loaded section.graphShapeContainer,body.loaded section.featureProjectsContainer{
        opacity: 1;
        transform: translateY(0);
        transition-delay: 1.8s;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap .detail-box > div span {
        display: none;
    }

    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap .detail-box > div span:first-child {
        display: block;
    }
    section.blogContainer .swiper .blogWrap .blog-media-read-more-wrap .details-box > div span {
        font-size: 2rem;
    }
}
@media only screen and (min-width: 640px) and (max-width: 768px){
    /*============FEATURE PROJECTS============*/
    section.featureProjectsContainer .featureProjectsWrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-column-gap: 2rem;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        row-gap: 2rem;
    }

    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap {
        width: 45%;
        padding: 0 !important;
        height: 44vh;
    }

    section.homeSloganContainer .polygon-wrap .polygon-box {
        width: 20.64094rem;
        height: 18.5rem;
    }
    section.blogContainer .swiper {
        padding: 0 var(--spaceXX) 0 var(--spaceS);
    }
    /*============FEATURE PROJECTS============*/
}
@media only screen and (min-width: 769px) and (max-width: 1030px){
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap .detail-box > div span {
        display: none;
    }

    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap .detail-box > div span:first-child {
        display: block;
        white-space: unset;
        text-align: center;
        text-transform: capitalize;
    }
    section.homeSloganContainer .sloganText {
        display: none;
    }

    section.homeSloganContainer {
        direction: ltr;
    }

    .h-text.ht2 {
        top: 25px;
    }

    .h-text.ht2:last-child {
        top: auto;
        bottom: 85px;
    }
}
@media only screen and (max-width: 640px){
    section.homeSloganContainer .polygon-wrap{
        display: none;
    }
}
@media only screen and (min-width: 1031px){
    .h-text.ht2{
        display: none;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1199px){
    /*============HERO SECTION==============*/
    section.homeHeroSection .heroSectionInfo h1 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
    .heroSectionInfo {
        padding-left: calc(var(--spaceXX) - 3rem);
    }
    section.homeHeroSection .heroWrap video.videoDesktop {
        display: none;
    }

    section.homeHeroSection .heroWrap video.mobileDesktop {
        display: block;
    }
    /*============HERO SECTION==============*/
    /*============CHART SECTION==============*/
    section.graphShapeContainer .graphShapeInfo p {
        font-size: 1.5rem;
    }

    section.graphShapeContainer .graphShapeMedia {
        height: auto;
        min-height: auto;
    }
    /*============CHART SECTION==============*/
    /*============FEATURE PROJECTS SECTION==============*/
    section.featureProjectsContainer h2 {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    section.featureProjectsContainer {
        display: block;
        padding: 6rem var(--spaceX) 2rem;
    }
    section.featureProjectsContainer .fPWrapper {
        width: 100%;
        height: auto;
        padding: 0;
    }
    section.featureProjectsContainer .featureProjectsWrapper {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-column-gap: 2rem;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        row-gap: 2rem;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap {
        position: relative;
        top: auto;
        left: auto;
        height: 49vh;
        width: 48%;
        padding: 0 !important;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:nth-of-type(1) .featureProjectsBox {
        width: 100%;
        height: 100%;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:nth-of-type(2) .featureProjectsBox {
        width: 100%;
        height: 100%;
    }

    .projects-type-icon-wrapper .projects-type-icon-wrap .icon {
        width: 2.1125rem;
        height: 2.1125rem;
        padding: 0.38rem;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap {
        opacity: 1;
        pointer-events: none;
        padding-bottom: 4rem;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        padding-right: 10px;
        padding-left: 10px;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap .detail-box > div span {
        font-size: 2.2rem;
    }
    .projects-type-icon-wrapper .projects-type-icon-wrap .icon-text span {
        font-size: .8rem;
    }

    .projects-type-icon-wrapper {
        row-gap: .7rem;
    }

    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:nth-of-type(3) {
        padding-top: 2rem;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap:hover .info-wrap {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        pointer-events: auto;
    }
    /*============FEATURE PROJECTS SECTION==============*/
    /*============SLOGAN SECTION==============*/
    section.homeSloganContainer .homeSloganWrapper .content p {
        font-size: 2rem;
    }

    section.homeSloganContainer .homeSloganWrapper .content {
        padding: 4rem 0;
    }

    section.homeSloganContainer .polygon-wrap .polygon-box {
        width: 28.8125rem;
        height: 19.8125rem;
    }

    section.homeSloganContainer {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    section.homeSloganContainer .sloganText div span {
        font-size: 2.5rem;
    }
    /*============SLOGAN SECTION==============*/
    /*============MAP SECTION==============*/
    section.homeMap {
        height: 50vh;
    }
    /*============MAP SECTION==============*/
    /*============PROJECTS SECTION==============*/
    section.projectsContainer {
        padding: 5rem var(--spaceS) 4rem var(--spaceXX);
    }

    section.projectsContainer .swiper .projectWrap {
        height: 37vh;
    }

    section.projectsContainer .swiper .projectWrap .project-media {
        height: 100%;
    }

    section.projectsContainer h2 {
        font-size: 3rem;
    }

    section.projectsContainer .swiper .projectWrap .project-info .project-title p.project-name {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    section.projectsContainer .swiper .projectWrap .project-info .project-title .client-title-wrap > * {
        font-size: 2rem;
    }

    section.projectsContainer .swiper .projectWrap .project-info .project-description p {
        font-size: 1.25rem;
    }

    section.projectsContainer .swiper .swiper-button-next,section.projectsContainer .swiper .swiper-button-prev {
        font-size: 1rem;
    }
    /*============PROJECTS SECTION==============*/
    /*============BLOG SECTION==============*/
    section.blogContainer .swiper .blogWrap .blog-media-read-more-wrap {
        min-height: auto;
        margin-bottom: 1.5rem;
    }

    section.blogContainer .swiper .blogWrap .blog-info h2 {
        font-size: 1.5rem;
    }

    section.blogContainer .swiper .blogWrap .blog-info .duration-read span {
        font-size: .8rem;
    }

    section.blogContainer .swiper .blogWrap .blog-info p.shortDescription {
        font-size: 1rem;
    }

    section.blogContainer .view.all {
        padding-top: 4rem;
    }

    section.blogContainer .view.all a {
        font-size: 1.2rem;
    }
    section.blogContainer .view.all a img {
        width: 1.5rem;
    }
    /*============BLOG SECTION==============*/
}
@media only screen and (min-width: 1200px) and (max-width: 1400px){
    /*==========LOADING=============*/
    #loading .video-box {
        padding: 2rem;
    }
    #loading .loader_bottom p {
        font-size: 7vw;
        line-height: 7vw;
    }
    #loading .loader_bottom p:first-child {
        min-width: 12vw;
    }
    /*==========LOADING=============*/
    /*==========HERO SECTION=============*/
    section.homeHeroSection {
        padding: 2rem;
    }
    /*==========HERO SECTION=============*/
    /*==========CHART SECTION=============*/
    .heroSectionInfo {
        padding-left: calc(var(--spaceS) - 2rem);
    }

    section.homeHeroSection .heroSectionInfo h1 {
        margin-bottom: 3rem;
        font-size: 2rem;
    }

    section.graphShapeContainer {
        margin: 2rem 0;
        grid-column-gap: .5rem;
    }

    section.graphShapeContainer .graphShapeInfo p {
        font-size: 1.5rem;
    }
    /*==========CHART SECTION=============*/
    /*==========FEATURE PROJECTS SECTION=============*/
    section.featureProjectsContainer h2 {
        font-size: 2.5rem;
        top: calc(var(--headerHeight) + 2rem);
    }
    section.featureProjectsContainer .featureProjectsWrapper {
        height: 74vh;
    }
    .projects-type-icon-wrapper .projects-type-icon-wrap .icon {
        width: 2.2125rem;
        height: 2.2125rem;
        padding: 0.4rem;
    }
    .projects-type-icon-wrapper .projects-type-icon-wrap .icon-text span {
        font-size: .9rem;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap {
        padding-bottom: 4rem;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap .detail-box > div span {
        font-size: 1.8rem;
    }
    /*==========FEATURE PROJECTS SECTION=============*/
    /*==========SLOGAN SECTION=============*/
    section.homeSloganContainer .sloganText div span {
        font-size: 3rem;
    }
    section.homeSloganContainer .homeSloganWrapper .content p {
        font-size: 2rem;
    }

    section.homeSloganContainer .homeSloganWrapper .content {
        padding: 4rem 0;
    }

    section.homeSloganContainer .polygon-wrap .polygon-box {
        width: 30.8125rem;
        height: 25.8125rem;
    }
    /*==========SLOGAN SECTION=============*/
    /*==========PROJECTS SECTION=============*/
    section.projectsContainer {
        padding: 8rem var(--spaceS) 4rem var(--spaceXX);
    }
    section.projectsContainer h2 {
        font-size: 4rem;
    }
    section.projectsContainer .swiper .projectWrap .project-info .project-title .client-title-wrap > * {
        font-size: 2rem;
    }
    section.projectsContainer .swiper .projectWrap .project-info .project-title p.project-name {
        font-size: 1.25rem;
    }
    section.projectsContainer .swiper .projectWrap .project-info .project-description p {
        font-size: 1.5rem;
    }
    section.projectsContainer .swiper .swiper-button-next,section.projectsContainer .swiper .swiper-button-prev {
        font-size: 1rem;
    }
    /*==========PROJECTS SECTION=============*/
    /*==========BLOG SECTION=============*/
    section.blogContainer .swiper .blogWrap .blog-media-read-more-wrap {
        min-height: 20vh;
        margin-bottom: 2rem;
    }

    section.blogContainer .swiper .blogWrap .blog-info .duration-read span {
        font-size: .8rem;
    }

    section.blogContainer .swiper .blogWrap .blog-info h2 {
        font-size: 1.6rem;
    }

    section.blogContainer .swiper .blogWrap .blog-info p.shortDescription {
        font-size: 1rem;
    }

    section.blogContainer .view.all {
        padding-top: 5rem;
    }

    section.blogContainer .view.all a {
        font-size: 1.1rem;
    }

    section.blogContainer .view.all a img {
        width: 1.6rem;
    }
    /*==========BLOG SECTION=============*/
}
@media only screen and (min-width: 1401px) and (max-width: 1600px){
    /*==========LOADING=============*/
    #loading .video-box {
        padding: 2rem;
    }
    #loading .loader_bottom p {
        font-size: 7vw;
        line-height: 7vw;
    }
    #loading .loader_bottom p:first-child {
        min-width: 12vw;
    }
    /*==========LOADING=============*/
    /*==========HERO SECTION=============*/
    section.homeHeroSection {
        padding: 2rem;
    }
    .heroSectionInfo {
        padding-left: calc(var(--spaceX) - 4rem);
    }
    section.homeHeroSection .heroSectionInfo h1 {
        margin-bottom: 4rem;
        font-size: 2.2rem;
    }
    /*==========HERO SECTION=============*/
    /*==========CHART SECTION=============*/
    .heroSectionInfo {
        padding-left: calc(var(--spaceS) - 2rem);
    }

    section.homeHeroSection .heroSectionInfo h1 {
        margin-bottom: 3rem;
        font-size: 2rem;
    }

    section.graphShapeContainer {
        margin: 2rem 0;
        grid-column-gap: 1.6rem;
    }

    section.graphShapeContainer .graphShapeInfo p {
        font-size: 1.6rem;
    }
    /*==========CHART SECTION=============*/
    /*==========FEATURE PROJECTS SECTION=============*/
    section.featureProjectsContainer h2 {
        font-size: 2.5rem;
        top: calc(var(--headerHeight) + 2rem);
    }
    section.featureProjectsContainer .featureProjectsWrapper {
        height: 74vh;
    }
    .projects-type-icon-wrapper .projects-type-icon-wrap .icon {
        width: 2.2125rem;
        height: 2.2125rem;
        padding: 0.4rem;
    }
    .projects-type-icon-wrapper .projects-type-icon-wrap .icon-text span {
        font-size: .9rem;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap {
        padding-bottom: 4rem;
    }
    section.featureProjectsContainer .featureProjectsWrapper .featureProjectsWrap .info-wrap .detail-box > div span {
        font-size: 1.8rem;
    }
    /*==========FEATURE PROJECTS SECTION=============*/
    /*==========SLOGAN SECTION=============*/
    section.homeSloganContainer .sloganText div span {
        font-size: 3rem;
    }
    section.homeSloganContainer .homeSloganWrapper .content p {
        font-size: 2rem;
    }

    section.homeSloganContainer .homeSloganWrapper .content {
        padding: 4rem 0;
    }

    section.homeSloganContainer .polygon-wrap .polygon-box {
        width: 30.8125rem;
        height: 25.8125rem;
    }
    /*==========SLOGAN SECTION=============*/
    /*==========PROJECTS SECTION=============*/
    section.projectsContainer {
        padding: 8rem var(--spaceS) 4rem var(--spaceXX);
    }
    section.projectsContainer h2 {
        font-size: 4rem;
    }
    section.projectsContainer .swiper .projectWrap .project-info .project-title .client-title-wrap > * {
        font-size: 2.5rem;
    }
    section.projectsContainer .swiper .projectWrap .project-info .project-title p.project-name {
        font-size: 1.5rem;
    }
    section.projectsContainer .swiper .projectWrap .project-info .project-description p {
        font-size: 1.75rem;
    }
    section.projectsContainer .swiper .swiper-button-next,section.projectsContainer .swiper .swiper-button-prev {
        font-size: 1.2rem;
    }
    /*==========PROJECTS SECTION=============*/
    /*==========BLOG SECTION=============*/
    section.blogContainer .swiper .blogWrap .blog-media-read-more-wrap {
        min-height: 20vh;
        margin-bottom: 2rem;
    }

    section.blogContainer .swiper .blogWrap .blog-info .duration-read span {
        font-size: .8rem;
    }

    section.blogContainer .swiper .blogWrap .blog-info h2 {
        font-size: 2rem;
    }

    section.blogContainer .swiper .blogWrap .blog-info p.shortDescription {
        font-size: 1.24rem;
    }

    section.blogContainer .view.all {
        padding-top: 4rem;
    }

    section.blogContainer .view.all a {
        font-size: 1.1rem;
    }

    section.blogContainer .view.all a img {
        width: 1.6rem;
    }
    /*==========BLOG SECTION=============*/
}