@font-face {
    font-family: "Barlow Condensed";
    src: url("../fonts/BarlowCondensed-Regular.ttf") format("truetype");
    font-style: normal;
    font-display: swap;
}
/*#################################### STYLE #######################################################*/
#Website {
    display: none;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*Error Pages*/
.error-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.internal-link {
    color: #183c81;
    text-decoration: none;
}

.section-header-text {
    font-size: 3rem;
}

.information-text {
    z-index: 0;
    position: absolute;
    bottom: -400px;
}

@media screen and (max-width: 975px) {
    .information-text {
        bottom: -700px;
    }
}

@media screen and (max-width: 675px) {
    .information-text {
        bottom: -1000px;
    }
}

@media screen and (max-width: 425px) {
    .information-text {
        bottom: -1500px;
    }
}

.crane-image {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 3px 3px 12px 1px #e8e8e8;
}

.crane-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2rem;
}

.crane-row {
    margin-bottom: 2rem;
    box-shadow: 3px 3px 12px 1px #e8e8e8;
    border-radius: 5px;
    padding: 1rem;
}

.crane-image {
    display: flex;
    margin: auto;
    align-items: center;
}

* {
    font-family: "Barlow Condensed", sans-serif;
    padding: 0;
    margin: 0;
}

html {
    font-size: 18px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: "Barlow Condensed";
    background-color: #f6f9ff;
    margin-bottom: 60px;
    height: 100%;
    overflow-x: hidden;
}

p {
    margin-bottom: 0 !important;
}

hr {
    border-top: 1px solid rgb(174 174 174) !important;
}

@media screen and (max-width: 675px) {
    iframe {
        width: 400px;
        margin: auto;
        display: flex;
    }
}

@media screen and (max-width: 475px) {
    iframe {
        width: 320px;
    }
}

@media screen and (max-width: 300px) {
    iframe {
        display: none;
    }
}

/*Home*/
/*Global Top Header*/
.top-header {
    background-color: #141e31;
    z-index: 10;
    top: 0;
    width: 100%;
}

.top-header-link {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    border-bottom: 0.5px transparent;
    transition: 0.2s ease;
    padding: 0.5rem;
    color: #fff;
}

.header-links {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 70%;
    margin: auto;
    border-bottom: 1px solid #29769d96;
}

@media screen and (max-width: 565px) {
    .header-links {
        flex-direction: row;
        font-size: 14px;
        width: 100%;
    }

    .top-header-link {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        font-size: 14px;
    }
}

.top-header-row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

@media screen and (max-width: 770px) {
    .top-header .col-md-9,
    .col-md-3 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-header {
        top: 0px !important;
        position: relative !important;
    }
}
/*Global Header*/
.blue-icon {
    color: #008DD2;
}

.main-header {
    color: #fff;
    background: #141e31;
    left: 0;
    color: #fff;
    z-index: 4;
    width: 100%;
}

.sticky-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    transition: 0.3s ease;
    box-shadow: 0px 5px 12px 1px #3f3f3f36;
}

#brand-logo {
    transition: 0.3s ease;
}

@media screen and (max-width: 675px) {
    header {
        background-color: #4f8ade;
    }
}

header ul {
    display: table;
    clear: both;
    content: "";
}

.nav-links ul {
    justify-content: flex-end !important;
}

header ul li a {
    color: #fff !important;
    padding: 0.25rem;
    transition: 0.3s ease;
    font-size: 24px;
    text-decoration: none !important;
}

    header ul li a:hover {
        animation: navLinkHover 3s;
    }

@keyframes navLinkHover {
    from {
        border-width: 0;
    }

    to {
        border-width: 100%;
    }
}

header ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #4f8ade;
    transition: width 0.3s ease;
}

header ul li a:hover::after {
    width: 100%;
}

.brand-logo {
    box-shadow: none;
}

.navbar-nav {
    align-items: center;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

.nav-list {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}

    .nav-list li a {
        padding: 0.25rem;
        margin-right: 2rem;
    }

@media screen and (max-width: 575px) {
    .navbar-nav {
        display: inline-block;
        align-items: baseline;
    }

        .navbar-nav .nav-link {
            padding: 1rem !important;
        }

    .navbar-collapse {
        background-color: #141e31 !important;
    }
}

@media screen and (max-width: 775px) {
    .navbar {
        padding-top: 0 !important;
    }
}
/*Navbar Toggler*/
.navbar-toggler {
    padding: 0.5rem 0.25rem 0.2rem 0.2rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.navbar-toggler-icon i {
    color: #7891df !important;
}

main {
    padding-top: 5rem;
}
/*Breadcrumb*/
.breadcrumb-container {
    margin-top: 2rem;
}

.breadcrumb-list {
    display: flex;
    padding: 0.5rem;
    box-shadow: 2px 3px 4px 0px #d2d2d2;
}

    .breadcrumb-list li {
        padding: 0.25rem;
        list-style-type: none;
    }

    .breadcrumb-list a {
        font-weight: 900;
        padding: 0.25rem;
        text-decoration: none;
        color: #1c6ca0ee;
        border-bottom: 1px solid transparent;
    }

        .breadcrumb-list a:hover {
            border-bottom: 1px solid #4ba1e06e;
            color: #1e93e8;
        }

    .breadcrumb-list i {
        font-size: 12px;
        line-height: 10px;
    }

.home-presentation {
    margin-bottom: 5rem;
}

@media screen and (max-width: 675px) {
    .home-presentation {
        margin-bottom: 2rem;
    }
}

.presentation-container {
    background-color: #4f8ade;
}

.presentation-image {
    border-radius: 5px;
    box-shadow: 2px 2px 12px 1px #d9d9d9c9;
    display: flex;
    margin: auto;
}

@media screen and (max-width: 920px) {
    .presentation-image {
        width: 300px;
    }
}

@media screen and (max-width: 775px) {
    .presentation-image {
        width: 370px;
    }
}

@media screen and (max-width: 475px) {
    .presentation-image {
        width: 300px;
        object-fit: cover;
    }
}

#toggler-menu-btn {
    color: #fff;
    font-size: 28px;
    transition: 0.3s ease;
}

.carousel-inner .fade-carousel {
    animation: fadeCarousel 2s;
}

.carousel-inner {
    box-shadow: 1px 10px 12px 1px #949494e0;
}

@keyframes fadeCarousel {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.carousel-control-next,
.carousel-control-prev {
    top: 130px;
    text-decoration: none;
}

#carousel-right {
    font-size: 32px;
    background-color: rgba(39, 39, 39, 0.805);
    color: #fff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
}

#carousel-left {
    font-size: 32px;
    background-color: rgba(39, 39, 39, 0.805);
    color: #fff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.carousel-indicators li {
    background-color: #fff;
}

.carousel-item img {
    display: flex;
    margin: auto;
    width: 100%;
    height: 930px;
    object-fit: cover;
}

@media screen and (max-width: 675px) {
    .main-carousel #carousel-right {
        height: 25px;
        width: 25px;
        font-size: 18px;
    }

    .main-carousel #carousel-left {
        height: 25px;
        width: 25px;
        font-size: 18px;
    }

    .carousel-item img {
        height: 750px;
    }
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

@media screen and (max-width: 675px) {
    .carousel-overlay {
        height: 30%;
    }
}

.carousel-caption {
    text-align: center;
    color: white;
    padding: 30px !important;
}

.large-text {
    font-size: 36px;
    margin-bottom: 10px;
}

@media screen and (max-width: 675px) {
    .large-text {
        font-size: 26px;
    }
}

.small-text {
    font-size: 18px;
    margin-top: 0;
}

.carousel-center-btn {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #555;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

@media screen and (max-width: 720px) {

    .main-container {
        padding: 0rem !important;
    }

    .homepage {
        padding: 5rem;
    }
}

.homepage-container {
    margin-top: -10rem;
}
/*Home*/
/*Home Swiper*/
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #E3472E !important;
    opacity: 1;
}

.swiper-pagination {
    right: 100px;
}

.swiper-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 59%);
    z-index: 2;
    align-items: center;
    justify-content: center;
}

.swiper-content {
    position: absolute;
    padding: 1rem;
    z-index: 3;
    justify-content: center;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    left: 250px;
    height: 100%;
}

.swiper-content-header {
    font-size: 32px;
    margin-bottom: 1rem;
    margin-left: 0.2rem;
}

@media screen and (max-width: 675px) {
    .swiper {
        height: 600px !important;
    }

    .swiper-content-header {
        font-size: 26px;
    }

    .swiper-content {
        top: 90px !important;
        left: 5px !important;
    }
}

.swiper-content-text {
    font-size: 58px;
    padding: 0.2rem;
    width: 60%;
    font-weight: 600;
}

.swiper-content-second-text {
    font-size: 28px;
    padding: 0.2rem;
    width: 60%;
    font-weight: 400;
}

.swiper-button {
    margin-top: 2rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a608a !important;
    color: #fff;
    width: 300px;
}

.text-blue {
    color: #008DD2;
    font-weight: 600;
}

.swiper-content-span {
    color: #f4c3bb;
}

.swiper {
    width: 100%;
    height: 930px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 930px;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

    .autoplay-progress svg {
        --progress: 0;
        position: absolute;
        left: 0;
        top: 0px;
        z-index: 10;
        width: 100%;
        height: 100%;
        stroke-width: 4px;
        stroke: #c83737;
        fill: none;
        stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
        stroke-dasharray: 125.6;
        transform: rotate(-90deg);
    }

.swiper-bottom {
    position: absolute;
    padding: 1rem;
    z-index: 3;
    align-items: center;
    justify-content: center;
    bottom: -100px;
    left: 60px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .swiper-content-text {
        font-size: 22px;
        width: 90%;
    }

    .swiper-content-second-text {
        font-size: 18px;
        width: 90%;
    }

    .swiper-button {
        font-size: 18px !important;
        width: 200px;
    }
}

/*Cranes*/
.solution-section {
    width: 100%;
    overflow: hidden;
}

.solution-left {
    background: linear-gradient(270deg, #ffffff, #fbfbfb);
    border-radius: 10px;
    box-shadow: 3px 3px 32px 1px #d7d7d7;
}

.solution-footer {
    background: linear-gradient(45deg, #ffffff, #fbfbfb);
    border-radius: 10px;
    box-shadow: 3px 3px 32px 1px #d7d7d7;
}

.solution-selector {
    padding: 1.5rem;
}

.solution-selection {
    display: flex;
    justify-content: center;
    margin: 2rem;
    padding: 2rem;
    transition: 0.3s ease;
}

.solution-descriptor-image {
    width: 450px;
    height: 450px;
    border-radius: 5px;
    object-fit: cover;
}

@media screen and (max-width: 675px) {
    .solution-descriptor-image {
        width: 300px;
        height: 300px;
    }

    .solution-info {
        margin-top: 10rem;
    }

    .solution-footer {
        display: flex;
        flex-direction: column-reverse !important;
    }
}

.solution-description {
    padding: 1rem;
    border-radius: 8px;
    transition: 0.3s ease;
    font-size: 22px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .solution-selection {
        margin: 1rem;
    }

    .solution-description {
        font-size: 18px;
    }
}

.solution-image {
    width: 70px;
    padding: 1rem;
    border: 1px dashed #757575;
    border-radius: 10px;
    margin-top: 1rem;
    background-color: white;
}

.solution-selector-wrapper {
    width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.solution-top {
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    font-size: 22px;
    width: 100%;
}

    .solution-top h3 {
        font-size: 2rem !important;
    }

.solution-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 992px) {
    .solution-selection {
        flex-direction: column;
        align-items: center;
    }

    .solution-selector {
        height: 400px;
    }

    .border-right {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 465px) {
    .solution-selector-wrapper {
        width: 250px;
    }

    .solution-selector {
        height: 200px;
    }

    .solution-description {
        width: auto;
        padding: 0rem;
    }
}

/*Platforms*/
.platform-area {
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .platform-area {
        margin-top: 3rem;
    }
}

.platform-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.platform-section {
    border-radius: 5px;
    box-shadow: 1px 1px 14px 1px #c8c6c659;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 1rem;
}

.platform-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 2s ease;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    color: black;
    transition: 2s ease;
    width: 100%;
    overflow: hidden;
}

    .platform-link:hover .platform-image {
        transform: scale(1.5);
        opacity: 0.6;
    }

    .platform-link:hover .platform-info {
        background-color: #1c4b74;
        color: #fff;
    }

.platform-info {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 2rem;
    height: 200px;
    z-index: 3;
    padding: 1rem;
    width: 100%;
    transition: 0.3s ease;
}

.platform-header {
    font-size: 32px;
    text-align: center;
}

.platform-section:hover .platform-link {
    color: #2474cb;
    text-decoration: none;
}

@media screen and (max-width: 675px) {
    .platform-image {
        height: 450px;
        margin-top: 1rem;
    }
}

.custom-btn {
    padding: 5px 42px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    border-radius: 5px;
}

.read-more {
    background: #f4f4f4;
    color: #020202;
    z-index: 1;
    text-decoration: none;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
}

    .read-more:after {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        top: 0;
        left: 0;
        direction: rtl;
        z-index: -1;
        background: #3977e5;
        transition: all 0.3s ease;
    }

    .read-more:hover {
        color: #fff;
    }

        .read-more:hover:after {
            left: auto;
            right: 0;
            width: 100%;
        }

    .read-more:active {
        top: 2px;
    }
/*Transition Overlay*/
.transition-overlay {
    background-image: url("../images/1.webp");
    background-position: bottom;
    background-attachment: fixed;
    background-size: cover;
    height: 400px;
    margin-top: 5rem;
}

.overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #33333059;
    height: 400px;
    color: #fff;
}

.overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    flex-direction: column;
    margin-top: 4rem;
}

#changing-text {
    font-size: 54px;
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
    animation: fadeInUp 1.5s forwards;
}

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    visibility: hidden;
    animation: fadeInUp 1.5s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*Wwd - What we do*/
.wwd-container {
    display: flex;
    flex-direction: column;
    margin-left: 4rem;
    margin-right: 4rem;
}

.wwd-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.first-col {
    background-image: linear-gradient(45deg, #1c4b74, #1b6fb2);
    color: #fff;
}

.wwd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wwd-col {
    padding: 0 !important;
}

.wwd-text {
    padding: 1rem;
    font-weight: 500;
    font-size: 18px;
}

.wwd-header {
    padding-top: 0.5rem;
    padding-left: 1rem;
    font-weight: 600;
}

.wwd-button {
    width: 215px;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto !important;
}

@media screen and (max-width: 768px) {
    .wwd-button {
        font-size: 14px;
        padding: 0.5rem 1rem !important;
        justify-content: space-around !important;
    }
}
/*Counter*/
.heading {
    text-align: center;
    font-size: 3.5rem;
    padding: 1rem;
    color: #505050;
}

    .heading h1 {
        font-size: 42px;
    }

.counter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/bg.webp);
    background-attachment: fixed;
}

@media screen and (max-width: 465px) {
    .counter-wrapper {
        flex-direction: column;
    }
}

.counter {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
}

.count {
    padding: 0.5rem 0;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
}

.counter-info {
    font-size: 1.5rem;
    padding-bottom: 1rem;
    font-weight: 300;
    color: #fff;
}

.counter i {
    color: #1c4b74;
    font-size: 24px;
    color: #fff;
}

@media screen and (max-width: 875px) {
    .counter {
        padding: 1rem;
    }

    .count {
        font-size: 32px;
    }

    .counter-info {
        font-size: 1rem;
    }
}

.icon {
    height: 5rem;
    width: auto;
}

/*Home News*/
/*Brands Container*/
.news-header {
    width: 30%;
    display: flex;
    margin: auto;
    justify-content: center;
    padding-top: 4rem;
}

.news-header-text {
    color: #fff;
    background-color: #00000054;
    padding: 1rem;
    border-radius: 5px;
}

.news-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    padding-top: 10px;
}

@media screen and (max-width: 768px) {
    .news-row {
        flex-direction: column;
    }

    .news-container {
        height: auto !important;
    }
}

.news-link {
    transition: 0.3s ease;
    text-decoration: none;
}

.news-main-container {
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 4rem;
}

.news-container {
    padding: 0.5rem;
    height: 500px;
    margin-right: 1rem;
    margin-left: 1rem;
}

.news-wrapper {
    display: flex;
    margin: auto;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .news-wrapper:hover .news-image-footer {
        display: flex;
    }

    .news-wrapper:hover .news-link {
        text-decoration: none;
    }

    .news-wrapper:hover .news-image {
        transform: scale(1.5);
    }

.news-image {
    object-fit: cover;
    transition: 3s ease-in-out;
}

.news-image-footer {
    display: none;
    position: absolute;
    height: 485px;
    width: 301px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

@media screen and (max-width: 675px) {
    .news-image-footer {
        display: none !important;
    }

    .news-image {
        width: 350px;
        height: 250px;
        object-fit: cover;
    }
}

.news {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 5px;
    z-index: 5;
    margin-left: 2rem;
    margin-right: 2rem;
}

.news-link:hover .news-image {
    animation: fadeEffect 1s;
}

.news-image:hover {
    animation: fadeEffect 1s;
    border: 1px solid black;
    background-color: #f8fafb1a;
}

@keyframes fadeEffect {
    from {
        opacity: 0.75;
        background-color: #f0f8ff47;
    }

    to {
        opacity: 1;
        background-color: #f8fafb1a;
    }
}
/*Home Contact*/
.contact-form-wrapper {
    box-shadow: 1px 1px 12px 1px #8080802b;
    padding: 1rem;
}

@media screen and (max-width: 475px) {
    .contact-form-wrapper {
        padding: 0.2rem;
    }
}

.contact {
    margin-top: 4rem;
    margin-bottom: 5rem;
}

.contact-links {
    justify-content: space-evenly !important;
}

    .contact-links li {
        list-style-type: none;
    }
/*Home Page end*/
.page-end-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.page-end-link {
    color: #275482;
    font-size: 26px;
    text-decoration: 1px solid #275482;
    margin-right: 1rem;
    margin-left: 1rem;
}

    .page-end-link:hover {
        text-decoration: none;
        color: #72a1d2;
    }

@media screen and (max-width: 675px) {
    .end-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/*About Page*/
#about-image {
    padding: 0.2rem;
    border: 1px solid #5959593b;
    background-color: #1d4e8187;
    box-shadow: 1px 1px 12px 1px #d7d7d7;
    border-radius: 5px;
    object-fit: cover;
}

.about-text {
    font-size: 18px;
}

@media screen and (max-width: 765px) {
    #about-image {
        width: 400px;
    }
}

@media screen and (max-width: 465px) {
    #about-image {
        width: 300px;
    }
}
/*Platform Page*/
.tab-pane-wrapper {
    margin-bottom: 10rem;
}

.nav-tabs a {
    text-decoration: none;
    color: #1e93e8;
}

.tab-pane {
    padding: 2rem;
}

    .tab-pane .row {
        justify-content: space-evenly;
    }

    .tab-pane .col-md-2 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

/*Mobile Definitions*/
@media screen and (max-width: 675px) {
    .mobile-top-margin {
        margin-top: 1.5rem;
    }
}

.admin-page {
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    width: 80%;
    margin: auto;
}

.admin-page-header {
    color: #9226c5;
    text-align: center;
    width: 300px;
    margin: auto;
    margin-bottom: 1rem;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.admin-page-comment {
    display: flex;
    justify-content: center;
}

.definition-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .admin-page {
        width: 100%;
    }

    main {
        right: 33px !important;
    }
}

.form-input {
    box-shadow: 4px 5px 12px 1px #dacaca33;
    outline: none;
    border: 1px solid #cbcbcba6;
    border-radius: 5px;
    padding: 8px 10px;
    width: 100%;
    text-align: left;
    font-size: 14px;
}

.logo {
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 1px 1px 5px 0px grey;
    margin-right: 1rem;
}

.brand-image {
    width: 200px;
    cursor: pointer;
}

.navbar-toggler {
    background-color: #fff;
    border-radius: 5px;
    padding: 0.25rem 0.45rem;
}

.navbar-toggler-icon i {
    font-size: 22px;
    color: black;
    margin-top: 3px;
}


.close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 22px;
    color: #fff;
}

.mobile-menu {
    margin-top: 1rem;
}

.navbar-brand {
    color: white;
}

.fixed-header-navbar {
    z-index: 30;
    background-color: #cce5ff;
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 0 !important;
}

.header-nav-text {
    color: #004085;
    cursor: default;
}

.name-container {
    height: 60px;
    color: #fff;
    border-bottom: 1px solid grey;
}

    .name-container p {
        text-align: center;
    }

.main-wrapper {
    display: flex;
}

.main-container {
    position: absolute;
    right: 0;
    padding-top: 10rem;
    padding-bottom: 12rem;
}

main {
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    main {
        right: 0px;
    }
}

@media screen and (max-width: 1024px) {
    main {
        width: 100%;
    }
}
/*Sections*/
.section-container {
    display: flex;
}

.section-header-text {
    font-size: 3.5rem;
}

@media screen and (max-width: 768px) {
    .section-header-text {
        font-size: 2.5rem;
    }
}

.header-description {
    font-size: 22px;
    text-align: center;
}

.section {
    border: 1px solid #dbd2d299;
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 1px 2px 30px 1px #dad5d5;
    margin: 1rem;
    background-color: #ffffffed;
}

.section-link {
    font-size: 16px;
    text-decoration: none;
    background-color: #fff;
    color: #1b1b62;
    padding: 0.5rem 3rem;
    border-radius: 7px;
    border: 1px solid #1b1b6247;
    transition: 0.3s ease;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}

    .section-link:hover {
        color: #fff;
        background-color: #9226c5;
        border: 1px solid transparent;
    }

.section-description {
    margin-top: 1.5rem;
}

@media screen and (max-width: 1024px) {
    .section-link {
        padding: 0.3rem;
    }
}
/*Footer*/
.footer {
    color: #1c4b74;
    background-color: #fafafa;
    position: absolute;
    width: 100%;
    white-space: nowrap;
    box-shadow: 1px 1px 12px 1px #afafafa3;
    background-image: url(../images/bg2.webp);
    background-position: bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

footer ul li {
    list-style-type: none;
    text-decoration: none;
    font-size: 18px;
    color: #e5e5e5;
    border-bottom: 0.5px transparent;
    opacity: 0.75;
    transition: 0.2s ease;
    height: 40px;
}

    footer ul li a {
        text-decoration: none;
        font-size: 18px;
    }

        footer ul li a:hover {
            opacity: 1;
            color: #ffffffe3;
            text-decoration: none;
        }

        footer ul li a::after {
            content: "";
            display: block;
            width: 0;
            height: 2px;
            background: #1c4b74;
            transition: width 0.3s ease;
        }

        footer ul li a:hover::after {
            width: 100%;
        }

.footer-wrapper {
    padding-top: 4rem;
}

.footer-link {
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
    border-bottom: 0.5px transparent;
    transition: 0.2s ease;
    padding: 0.2rem;
}

.footer-header {
    color: #fff;
    font-weight: 600;
    list-style-type: none;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 0.5px transparent;
    opacity: 0.75;
    transition: 0.2s ease;
    padding: 0.2rem;
}

#footer-about {
    color: #fff;
    padding: 1.5rem;
    word-break: break-all;
    white-space: normal;
    font-size: 18px;
}

.footer .col-md-6 {
    margin-top: 2rem;
}

.address-text {
    color: #ffffff;
    padding-left: 0.2rem;
}

.footer-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 12px;
}

    .footer-alt a {
        text-decoration: none;
        color: #e5e5e5;
        font-size: 12px;
        opacity: 0.75;
        padding: 0.25rem;
    }

        .footer-alt a:hover {
            opacity: 1;
            color: #e5e5e5;
        }

@media screen and (max-width: 675px) {
    .footer-address-prefix {
        flex-direction: column;
        margin-bottom: 5rem;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .footer-right-prefix {
        margin-right: 0 !important;
        margin-left: 2rem;
    }

    .footer-addresst-prefix {
        margin-left: 2rem;
    }

    .footer-contact-prefix {
        margin-left: 3rem;
        margin-top: 1rem;
        justify-content: flex-start;
    }
}
/*Whatsapp Button*/
#wp-btn {
    z-index: 3;
    position: fixed;
    bottom: 50px;
    left: 100px;
    padding: 7px 1px;
    border-radius: 5px;
    color: rgb(255 255 255);
    background-color: rgb(47 165 44);
    cursor: pointer;
    line-height: 30px;
    transition: 0.3s ease;
    animation: topBtn 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 2px 2px 12px 1px #00000057;
}

    #wp-btn:hover .wp-btn-contact {
        display: inline-flex;
        animation: fadeContact 1s;
    }

@keyframes fadeContact {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 1;
    }
}

.wp-btn-link {
    color: #fff !important;
}

.wp-btn-contact {
    display: none;
    transition: 0.3s ease;
    margin-left: 0.5rem;
}

/*Return Top*/
#top-btn {
    z-index: 3;
    position: fixed;
    bottom: 50px;
    right: 100px;
    padding: 7px 14px;
    border-radius: 5px;
    color: rgb(248, 250, 251);
    background-color: rgb(0, 75, 141);
    cursor: pointer;
    display: none;
    line-height: 30px;
    box-shadow: 2px 2px 4px 1px #00000099;
    transition: 0.3s ease;
    animation: topBtn 1s;
}

    #top-btn:hover {
        background-color: rgb(36 122 198);
        border: none;
    }

@media screen and (max-width: 675px) {
    #top-btn {
        right: 60px;
    }

    #wp-btn {
        left: 60px;
    }
}

@media screen and (max-width: 475px) {
    #top-btn {
        right: 30px;
    }

    #wp-btn {
        left: 30px;
    }
}

@keyframes topBtn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    #top-btn {
        right: 25px;
    }
}

.footer {
    position: absolute;
    width: 100%;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.footer-hr {
    border-top: 1px solid #3f97d5;
}


.links i,
.section-link i {
    margin-right: 0.5rem;
}

.page-item.active .page-link {
    background-color: transparent;
}

.x-flex-center-v {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/*Global Return Top*/

@keyframes topBtn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    #top-btn {
        right: 25px;
    }
}

.xf-btn {
    text-decoration: none;
    cursor: pointer;
    transition: 0.1s ease;
    border-radius: 5px;
    outline: none;
    color: #4d506e;
    padding: 0.5rem 1.7rem;
    margin: 0.1rem;
}

.section > .xf-btn {
    display: block;
    margin-bottom: 1rem;
}

.x-btn-details {
    font-size: 24px;
    background-color: #1c4b74;
    color: #ffffffe0;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

    .x-btn-details:hover {
        background-color: #186aa1;
        border: 1px solid #247dbc;
    }

    .x-btn-details:active {
        border: 1px solid #f6f9ff;
    }

.x-btn-prev {
    background-color: #d7ecffdb;
    border: 1px solid transparent;
}

    .x-btn-prev:hover {
        background-color: #c8e0f5db;
        border: 1px solid #b1aaaa;
    }

    .x-btn-prev:active {
        border: 1px solid #f6f9ff;
    }

.x-group {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.x-lbl-sm {
    font-weight: 400;
    color: #004085;
    font-size: 18px;
    margin: 0.2rem;
}

.x-inpt {
    margin: 0.2rem;
    border: 1px solid #b1aaaaa6;
    border-radius: 5px;
    outline: none;
    transition: 0.3s ease;
}

.x-input:hover {
    border: 1px solid #1e62dd;
}

.x-inpt:active {
    border: 1px solid #1e62dd;
}

.x-inpt:focus {
    border: 1px solid #1e62dd;
    background-color: #dbe6ef0f;
}

.x-inpt-sm {
    padding: 0.3rem 1rem;
    font-size: 14px;
}
/*Notifications*/
/*Success*/
.x-alert-success {
    background-color: #d7f9d7;
    color: #226b1ee0;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #bfb9b9b0;
}
/*Danger*/
.x-alert-danger {
    background-color: #f5c6cb;
    color: #5f0b0be0;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #bfb9b9b0;
}
/*Warning*/
.x-alert-warning {
    background-color: #ffcc2982;
    color: #937828;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #bfb9b9b0;
}
/*Info*/
.x-alert-info {
    background-color: #baebf3;
    color: #0c5460;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #bfb9b9b0;
}
/*Detail*/
.x-alert-detail {
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #bfb9b9b0;
}

.x-alert-close {
    text-decoration: none;
    cursor: pointer;
    transition: 0.1s ease;
    border-radius: 5px;
    outline: none;
    color: #afafaf;
    padding: 0.3rem 0.8rem;
    margin: 0.1rem;
    background-color: #fbfbfb;
    border: 1px solid #d9d9d9;
    position: absolute;
    right: 1rem;
    top: 0.3rem;
    font-size: 18px;
}

    .x-alert-close:hover {
        background-color: #ff5555f2;
        color: #fff;
        border: 1px solid #d5cfcf;
    }

.x-alert {
    width: 500px;
    position: absolute;
    top: 7rem;
    right: 3rem;
    position: fixed;
    z-index: 3;
}


.product-details-table {
    border: 1px solid #d5d5d5;
    margin-bottom: 3rem;
}

    .product-details-table td {
        padding: 0.2rem !important;
    }

    .product-details-table th {
        padding: 0.2rem !important;
    }

.red-table-data {
    color: red;
}

.red-star {
    color: red;
}

.table-notes {
    margin-top: 5rem;
}

.product-image {
    border-radius: 5px;
    height: 600px;
    width: 500px;
    object-fit: cover;
}

@media screen and (max-width: 675px) {
    .product-image {
        height: 400px;
        width: 300px;
    }
    .table-notes{
        margin-top: 2rem;
    }
    .table-notes ul{
        list-style-type: none;
    }
}
