::selection {
    background-color: var(--logo-blue);
    color: white;
}

section:nth-of-type(even) {
    background-color: #fefeff;
}

section {
    background-color: #efeff7;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

#scroll-up-btn {
    height: 50px;
    width: 50px;

    display: none;

    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 99;

    border: none;
    outline: none;
    background-color: var(--bs-danger);
    border-radius: 10px;
    cursor: pointer;

    transition: all 0.3s ease;
}

#scroll-up-btn>i {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

#scroll-up-btn:hover {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);

}

.text-justify-word {
    text-align: justify;
}

.page-header {
    padding: 240px 0 120px 0;

    @media screen and (max-width: 575px) {
        padding: 120px 0 60px 0
    }
}

.cta-card {
    min-height: 400px;
    max-height: 400px;

    @media screen and (max-width: 575px) {
        min-height: max-content;
        max-height: max-content;
    }
}

.bg-skyblue {
    background-color: var(--bs-skyblue);
}

.translate-y-hover {
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3 ease;
    -webkit-transition: all 0.3 ease;
}

.translate-y-hover:hover {
    --pixel-to-translate: -10px;
    transform: translateY(var(--pixel-to-translate));
    -ms-transform: translateY(var(--pixel-to-translate));
    -moz-transform: translateY(var(--pixel-to-translate));
    -o-transform: translateY(var(--pixel-to-translate));
}



.text-transform-uppercase {
    text-transform: uppercase !important;
}

.header-img {
    -webkit-box-shadow: 10px 10px 10px 0 rgba(255, 255, 255, 0.09);
    box-shadow: 10px 10px 10px 0 rgba(255, 255, 255, 0.09);
    filter: brightness(0.9);
}

.feature-img {
    width: 100%;
    height: 600px;
    background-size: cover;
    filter: blur(1px) brightness(0.8);
    background-position: top;
}

.platform-container {
    max-width: 100%;
}

.platform-content {
    width: 100%;
    margin-bottom: 2rem;

}

.platform-img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}


.platform-name {
    font-weight: bold;
    width: 100%;
    font-size: larger;
}


.portfolio-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.25s ease;
    border-radius: 15px;
    overflow: hidden;
}

.portfolio-bg>* {
    position: relative;
    z-index: 1;
    min-height: 250px;

}

.portfolio-bg:hover, 
.portfolio-bg:active {

    @media screen and (min-width: 1200px) {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
        -webkit-box-shadow: 0 20px 20px 0 rgba(2, 19, 79, 0.09);
        box-shadow: 0 20px 20px 0 rgba(2, 19, 79, 0.09);
    }

    &::before {
        filter: brightness(0.7);
    }
}

.portfolio-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(0.4);
    transition: all 0.25s ease;
}


.portfolio-lead {
    text-align: center;

}

.portfolio-content {
    text-align: center;
    min-height: 200px;
    height: 100%;

}

.portfolio-video-container {
    width: 70%;
    padding-top: 45%;
    position: relative;

}

.vr-video-container {
    width: 100%;
    padding: 50% 0 0 0;
    position: relative;
}

.portfolio-video,
.vr-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;

}

.list-n-col {
    max-width: 100%;
}


.ar-img,
.vr-img,
.ar-desc,
.vr-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-content: center;

}

.ar-desc,
.vr-desc {
    font-weight: bold;
}


.ar-img img,
.vr-img img {
    min-width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    object-fit: contain;

}

.model-3d {
    scale: 1.3;
}


@media (max-width: 1199px) {
    .portfolio-video-container {
        width: 100%;
    }

    .list-n-col * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .model-3d {
        scale: 1;
    }
}


.aframe-section>* {
    display: block;
    min-height: 100px;
    width: 100px;
}

.lower-alphabet-list {
    list-style-type: lower-alpha;
    padding-left: 3rem;

    @media screen and (max-width: 575px) {
        padding-left: 1rem;
    }

}

.lower-alphabet-list li {
    position: relative;
    font-size: 15px;
    padding-left: 30px;


}

.lower-alphabet-list>li::marker {
    font-weight: bold;
}

.roman-list {
    list-style-type: decimal;
    padding-left: 3rem;

    @media screen and (max-width: 575px) {
        padding-left: 0.5rem;

    }
}

.roman-list li {
    position: relative;
    font-size: 15px;
    padding-left: 30px;

    margin-left: 0.5rem;
    margin-right: 0.5rem;

    @media screen and (max-width: 575px) {
        margin-left: 0;
        margin-right: 0;
    }


}

.roman-list>li::marker {
    font-weight: bolder;
    font-size: 1.5rem;
    color: var(--bs-dark);
}

.cave-feature-title .fa {
    width: 48px;
}

.single-open-job {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.single-open-job:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 20px 20px 0 rgba(2, 19, 79, 0.09);
    box-shadow: 0 20px 10px 0 rgba(2, 19, 79, 0.09);
}

.form-group {
    margin-bottom: 25px
}

.form-group input,
section#contact .form-group textarea {
    padding: 20px
}

.form-group input.form-control {
    height: auto
}

.form-group textarea.form-control {
    height: 236px
}

.solution-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;

    width: 375px;
    min-width: 375px;
    height: 600px;
    border-radius: 10px;
    background-color: #efeff7;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);

    -o-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -moz-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -webkit-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);

    overflow: hidden;

}


.solution-card h1 {
    position: absolute;
    top: 50px;
    left: 10px;
    margin: 5px;
    padding: 0;
    color: white;
    font-size: 20px;
    font-weight: 100;
    line-height: 1;
    opacity: 1;

    -o-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);

    -o-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;

    z-index: 999;

    @media screen and (max-width: 1199px) {
        
        display: none;
    }

}

.solution-card img {
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7);
    width: 100%;
    height: 100%;
    border-radius: 10px;

    -o-transition: 0.25s;
    -moz-transition: 0.25s;
    -webkit-transition: 0.25s;
    transition: 0.25s;

}

.solution-card span {
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 50%;
    margin: 0;
    padding: 30px;
    background-color: rgba(255, 255, 255, 1);

    box-shadow:
        0 0 20px rgba(0, 0, 0, 0, 0.4);
    color: black;
    line-height: 1;

    -o-transition: 0.25s;
    -moz-transition: 0.25s;
    -webkit-transition: 0.25s;
    transition: 0.25s;

    @media screen and (max-width: 1199px) {
        left: 0;
        -o-transition: none;
        -moz-transition: none;
        -webkit-transition: none;
        transition: none;
    }

}

.solution-card h3 {
    margin: 0 0 20px;
    padding: 0;
    font-size: 20px;
    cursor: default;
    text-align: left;

    @media screen and (max-width: 1199px) {
        text-align: center;
    }
}

.solution-card p {
    font-size: 14px;
    line-height: 1.75;
    text-align: left;

    @media screen and (max-width: 1199px) {
        text-align: justify;
        text-justify: inter-word;
    }
}

.solution-card a {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 30px;

}

.solution-card:hover {
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
}

.solution-card:hover h1 {
    @media screen and (min-width: 1199px) {
        opacity: 0;
        transform: scale(0.7);
    }


}

.solution-card:hover img {
    @media screen and (min-width: 1199px) {
        transform: scale(1.25);
    }

}

.solution-card:hover span {
    @media screen and (min-width: 1199px) {
        bottom: 0;
        left: 0;
    }
}


.pf-project-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-secondary);
    width: 50%;
    min-width: 50%;
    height: 325px;
    border-radius: 10px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);

    -o-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -moz-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -webkit-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);

    overflow: hidden;

    @media screen and (max-width: 1199px) {
        width: 100%;
        min-width: 50%;
        height: 650px;
    }


}


.pf-project-card h1 {
    position: absolute;
    top: 45%;
    left: 20px;
    margin: 5px;
    padding: 0;
    color: white;
    font-size: 25px;
    font-weight: 100;
    line-height: 1;
    opacity: 1;

    -o-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);

    -o-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -moz-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -webkit-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);

    z-index: 999;
    cursor: default;

    @media screen and (max-width: 1199px) {
        display: none;
    }

}

.pf-project-card img {
    filter: brightness(0.7);
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;

    -o-transition: 0.25s;
    -moz-transition: 0.25s;
    -webkit-transition: 0.25s;
    transition: 0.25s;

    @media screen and (max-width: 1199px) {
        position: absolute;
        top: 0;
        left: 0;
    }

}

.pf-project-card span {
    position: absolute;
    right: 0;
    bottom: -100%;
    width: 50%;
    height: 100%;
    margin: 0;
    padding: 30px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0, 0.4);
    color: black;
    line-height: 1;

    -o-transition: 0.25s;
    -moz-transition: 0.25s;
    -webkit-transition: 0.25s;
    transition: 0.25s;


    @media screen and (max-width: 1199px) {
        bottom: 0;
        width: 100%;
        height: 50%;
    }

}

.pf-project-card h3 {
    margin: 0 0 20px;
    padding: 0;
    font-size: 20px;

    @media screen and (max-width: 1199px) {
        text-align: center;
    }
}

.pf-project-card p {
    font-size: 14px;
    line-height: 1.75;

    @media screen and (max-width: 1199px) {
        text-align: justify;
        text-justify: inter-word;
    }
}

.pf-project-card a {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 30px;


}

.pf-project-card:hover {
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
}

.pf-project-card:hover h1 {
    @media screen and (min-width: 1199px) {
        opacity: 0;
        transform: scale(0.7);
    }
}

.pf-project-card:hover img {
    transform: none;

    @media screen and (min-width: 1199px) {
        transform: scale(1.25);
    }

}

.pf-project-card:hover span {
    @media screen and (min-width: 1199px) {
        right: 0;
        bottom: 0;
    }
}