﻿.banner1 {
    width: 100%;
    height: 500px;
}

.cardStyle {
    width: 355px;
}

.division {
    margin-left: 10px;
}

.secondRowCards {
    margin-top: 10px;
}

.logoWidth {
    width: auto;
}

.images-style {
    height: auto;
    width: 80%;
    float: inline-end
}

.images-style-left {
    height: auto;
    width: 80%;
}

.parallax {
    /* The image used */
    background-image: url("/Assets/bg/background1.jpg");
    /* Set a specific height */
    min-height: 500px;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


@@media only screen and (min-width: 1600px) {
    /* Styles for monitors between 1200px and 1600px in width */
    .cardStyle {
        width: 410px;
        margin-top: 10px;
    }
}




@@media only screen and (max-width: 767px) {
    /* Styles for smartphones */

    .banner1 {
        width: 100%;
        height: 200px;
    }

    .cardStyle {
        width: 100%;
        margin-top: 10px;
    }

    .division {
        margin-left: 0;
    }


    .images-style {
        height: 30vh;
        width: 100%;
    }

    .images-style-left {
        height: 30vh;
        width: 100%;
    }

    .grid-container {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Styles for tablets */
    .banner1 {
        width: 100%;
        height: 200px;
    }

    .cardStyle {
        width: 100%;
        margin-top: 10px;
    }

    .division {
        margin-left: 0;
    }

    .images-style {
        height: 30vh;
        width: 100%;
    }

    .images-style-left {
        height: 30vh;
        width: 100%;
    }
}

.row {
    --bs-gutter-x: 0rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x)*-.5);
    margin-right: calc(var(--bs-gutter-x)*-.5);
    margin-top: calc(var(--bs-gutter-y)*-1);
}

.image {
    background-size: cover;
}

#auth #auth-left {
    padding: 3rem 1rem;
}

input:-webkit-autofill::first-line {
    font-family: 'Nunito' !important;
    font-size: 1.2rem;
}

img {
    object-fit: cover
}

.padded img {
    padding-left: 6em;
    padding-right: 6em;
}

.picHover {
    margin: auto auto;
}

    .picHover img {
        width: 100%;
        height: auto;
        align-items: center;
        transition: all 1s;
    }

    .picHover:hover img {
        transform: scale(1.2);
        border-radius: 50px;
    }


body {
    background-image: url();
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}


.customized_hr_tag {
    background: #80808052;
    height: 1px;
    width: 80%;
}

.customized_hr_main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.customized_hr_tag {
    background: #80808052;
    height: 1px;
    width: 80%;
}

.customized_hr_main {
    display: flex;
    justify-content: center;
    align-items: center;
}



h2 {
    color: #0e2a74;
}

h3 {
    color: #0e2a74;
}

h4 {
    color: #0e2a74;
}

h6 {
    color: darkcyan;
}


.read-more-btn-style {
    background-color: #0e2a74;
    border-color: transparent;
    color: white;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.zoom:hover {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(1.1);
}
@keyframes FadeInWithBlur {
    from {
        opacity: 0;
        filter: blur(20px);
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1);
    }
}

.FadeInWithBlur {
    animation: FadeInWithBlur 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes DownToUpAppear {
    from {
        opacity: 0;
        transform: translateY(800px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.DownToUpAppear {
    animation: DownToUpAppear 2s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes GlowUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
        filter: brightness(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
}

.GlowUp {
    animation: GlowUp 1.3s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}
@keyframes LefToRightAppear {
    from {
        opacity: 0;
        transform: translateX(-500px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.LefToRightAppear {
    animation: LefToRightAppear 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}