@media (min-width: 1200px) {
    .navbar-brand {
        height: 120px !important;
    }

    .carousel-control {
        margin-top: 120px;
    }

    .kam-brand-name {
        display: none !important;
    }

    .kam-brand-empty {
        display: flex !important;
    }
}

@media (max-width: 1199px) {
    .kam-brand-name {
        display: flex !important;
        font-size: 20px;
        color: #ffffff;
        padding-top: 10px;
    }

    .kam-brand-empty {
        display: none !important;
    }
}

body {
    min-width: 300px;
    font-family: 'Roboto', sans-serif;
    cursor: default;
}

@keyframes example {
    from {
        scale: 0;
        transform: rotate(90deg);
    }

    to {
        scale: 1;
        transform: rotate(360deg);
    }
}

@-webkit-keyframes example {
    0% {
        scale: 0;
        transform: rotate(90deg);
    }

    100% {
        scale: 1;
        transform: rotate(360deg);
    }
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: white;
    color: #0a53be;
    cursor: pointer;
    padding: 8px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 900;
    animation-name: example;
    animation-duration: 0.5s;
    -webkit-animation-name: example;
    -webkit-animation-duration: 0.5s;
    transition: all 0.3s;
}

#myBtn:hover {
    background-color: #0a53be;
    color: white;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.navbar-brand {
    height: 70px;
    transition: 0.2s ease-in;
}

.navbar_shrink {
    height: 70px !important;
}

.call_us * {
    color: white;
}

.call_us svg {
    height: 20px;
    width: 20px;
    margin: auto;
}

.call_us {
    background-color: #0a53be;
}


.carousel-image-1 {
    background: -webkit-linear-gradient(rgba(241, 0, 0, 0) 90%, rgba(255, 255, 255, 1)) 100%, url("./img/ImageSlider1.jpg");
    background: linear-gradient(rgba(241, 0, 0, 0) 90%, rgba(255, 255, 255, 1)) 100%, url("./img/ImageSlider1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-image-2 {
    background: -webkit-linear-gradient(rgba(241, 0, 0, 0) 90%, rgba(255, 255, 255, 1)) 100%, url("./img/ImageSlider2.jpg");
    background: linear-gradient(rgba(241, 0, 0, 0) 90%, rgba(255, 255, 255, 1)) 100%, url("./img/ImageSlider2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-image-3 {
    background: -webkit-linear-gradient(rgba(241, 0, 0, 0) 90%, rgba(255, 255, 255, 1)) 100%, url("./img/ImageSlider3.jpg");
    background: linear-gradient(rgba(241, 0, 0, 0) 90%, rgba(255, 255, 255, 1)) 100%, url("./img/ImageSlider3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-image-4 {
    background: -webkit-linear-gradient(rgba(241, 0, 0, 0) 90%, rgba(255, 255, 255, 1)) 100%, url("./img/4.jpg");
    background: linear-gradient(rgba(241, 0, 0, 0) 90%, rgba(255, 255, 255, 1)) 100%, url("./img/4.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-control {
    margin-top: 70px;
}

.carousel-control svg {
    background-color: rgba(0, 0, 0, 0.3);
    height: 60px;
    width: 60px;
    padding: 15px;
    border: 1px solid white;
    border-radius: 30px;
    transition: 200ms ease-in;
    color: white;
}

.offcanvas-body li {
    font-size: 1.2em;
    font-weight: 500;
}

.carousel-control svg:hover {
    background-color: #0a53be;
    border: none;
    transition: 200ms ease-in;
}


.flip-card {
    background-color: transparent;
    width: 100%;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
    position: relative;

    min-height: 40vh;
    height: 100%;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;

    min-height: 40vh;
    height: 100%;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);

    min-height: 40vh;
    height: 100%;
}

.flip-card:hover .flip-card-back {
    position: relative;
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;

    min-height: 40vh;
    height: 100%;
}


/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #ffffff;
    padding-top: 10%;
    color: black;

    height: 40vh;
}

/* Style the back side */
.flip-card-back {
    background-color: #0a53be;
    color: white;
    transform: rotateY(180deg);

    height: 100%;
}

.flip-card-front .card-body {
    margin-top: 8%;
    height: 100%;
}

.flip-card-front p {
    font-size: 2vw;
    font-weight: 500;
    color: #1d1f22;
    word-break: break-word;
    margin: auto;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    height: 30%;
}

.flip-card-front .card-body {
    display: table;
    height: 30%;
    margin-bottom: 5%;
}

.flip-card-back .card {
    background-color: #0a53be;
    color: white;
    height: 100%;
    width: 100%;
    display: table;
}

.flip-card-back .card-body {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

.flip-card-back .card-body .p {
    text-align: center;
    margin: auto;
}

@media (max-width: 1100px) {
    .flip-card-front p {
        font-size: 2.7vw;
        font-weight: 600;
    }
}

@media (max-width: 767px) {
    .flip-card-front p {
        font-size: 3.5vw;
        font-weight: 600;
    }
}

@media (max-width: 575px) {
    .flip-card-front p {
        font-size: 6vw;
        font-weight: 600;
    }
}

.flip-card-front svg {
    height: 40%;
    margin: 5% auto auto auto;
    color: rgba(10, 83, 190, 1);
}

.flip-card-front .card-body {
    padding: 16px 10px 10px;
}

.service_cards {
    background: #ffffff;
}

.glass-effect {
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-effect .nav-link {
    color: white;
    font-size: 1.45rem;
    transition: 0.2s ease-in;
}

@media (min-width: 1200px) {
    .ul_shrink .nav-link {
        font-size: 1.3rem;
    }
}

.offcanvas {
    height: 100vh;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

@media (max-width: 1000px) {
    .parallax-container {
        height: 270vh !important;
    }

    .parallax-text-container {
        height: 90vh !important;
    }

    .parallax-text-container:nth-child(2) {
        margin-top: -100vh !important;
    }

    .parallax-text-container:nth-child(3) {
        margin-top: -10vh !important;
    }

    .parallax-text-container:nth-child(4) {}
}

.parallax-container {
    height: 180vh;
    padding: 0;
}

.parallax-text-container {
    height: 60vh;
    width: 100% !important;
    z-index: 1;
    margin: 0;
    color: black;
}

.parallax-text-container:nth-child(2) {
    margin-top: -95vh;
}

.parallax-text-container:nth-child(3) {
    margin-top: -35vh;
}

.parallax-text-container:nth-child(4) {
    margin-top: -5vh;
}

.parallax-text-container h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5%;
}

.section_topic {
    color: #1d1f22;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5%;
}

.parallax-text-container p {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.parallax-container * {
    padding: 0;
}

#parallax {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(./img/binary-back.jpg) no-repeat top center;
    position: sticky;
    width: 100%;
    height: 100vh;
    top: 0;
}

.blue-border-top {
    border-top: 1px solid white;
    background-color: #0a53be;
}

.blue-border-bottom {
    border-bottom: 1px solid #0a53be;
}

.about-title {
    color: #0a53be;
    font-size: 2.5rem;
}

.about-title div {
    position: relative;
    padding: 3rem 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.about-content {
    background: #0a53be;
    color: white;

    font-size: 1.4rem;
    padding: 4rem;
    text-align: justify-all;
}

.a-1 {
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("./img/a-1.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("./img/a-1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.a-2 {
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("./img/a-2.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("./img/a-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.a-3 {
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("./img/a-3.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("./img/a-3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wu-title {
    font-size: 1.6rem;
    font-weight: 600;
}

.wu-text {
    font-size: 1.5rem;
    font-weight: 500;
}

.card-shadow {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.card-shadow:hover {
    box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.25);
}

.kam-footer {
    background-color: #00008b;
    background-image: linear-gradient(300deg, #00008b -5%, #0a53be 60%, #00008b 100%);
}

.kam-footer * {
    color: white;
}

.nav-link:focus,
.nav-link:hover {
    color: #e1e1e1 !important;
}

#map {
    height: 400px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
}

.pointer {
    text-decoration: none;
}

.pointer * {
    transition: color 0.3s;
    cursor: pointer;
}

.pointer:hover * {
    color: #e1e1e1 !important;
}
