﻿.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;
}

.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);
}
/*-----------------------animation starts----------------------------------*/
@keyframes RightToLeftAppear {
    from {
        opacity: 0;
        transform: translateX(500px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
/*
.RightToLeftAppear {
    animation: RightToLeftAppear 2s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}*/

@keyframes UpToDownAppear {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.UpToDownAppear {
    animation: UpToDownAppear 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 ZoomInRotation {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}
@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%;
}
.ZoomInRotation {
    animation: ZoomInRotation 1.2s cubic-bezier(0.25, 1, 0.5, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes BounceInEffect {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(500px);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05) translateY(-20px);
    }

    70% {
        opacity: 0.75;
        transform: scale(0.95) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.BounceInEffect {
    animation: BounceInEffect 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}


@keyframes FlipIn {
    from {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

.FlipIn {
    animation: FlipIn 0.8s ease-in-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes SkewedSlideIn {
    from {
        opacity: 0;
        transform: translateY(500px) skewX(30deg);
    }

    to {
        opacity: 1;
        transform: translateY(0px) skewX(0deg);
    }
}

.SkewedSlideIn {
    animation: SkewedSlideIn 1s ease-in-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}



@keyframes SwingInEffect {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.3);
    }

    50% {
        opacity: 0.5;
        transform: rotate(-10deg) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.SwingInEffect {
    animation: SwingInEffect 1.5s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes ElasticExpand {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.ElasticExpand {
    animation: ElasticExpand 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}



@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 WobbleIn {
    0% {
        opacity: 0;
        transform: translateX(-200px) rotate(-45deg);
    }

    50% {
        opacity: 0.5;
        transform: translateX(20px) rotate(10deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

.WobbleIn {
    animation: WobbleIn 1.5s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}


@keyframes WaveIn {
    0% {
        opacity: 0;
        transform: translateY(200px) rotate(15deg);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-10px) rotate(-5deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.WaveIn {
    animation: WaveIn 1.2s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes RippleEffect {
    0% {
        opacity: 0;
        transform: scale(0.5);
        box-shadow: 0 0 0px rgba(0, 0, 0, 0);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0px rgba(0, 0, 0, 0);
    }
}

.RippleEffect {
    animation: RippleEffect 1.3s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes SlideAndBounce {
    0% {
        opacity: 0;
        transform: translateX(-300px) scale(0.8);
    }

    50% {
        opacity: 0.7;
        transform: translateX(50px) scale(1.1);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.SlideAndBounce {
    animation: SlideAndBounce 1.5s cubic-bezier(0.25, 1, 0.5, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes SpinFadeIn {
    0% {
        opacity: 0;
        transform: rotate(-360deg) scale(0.3);
    }

    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.SpinFadeIn {
    animation: SpinFadeIn 1.5s ease-in-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes DiagonalSlide {
    0% {
        opacity: 0;
        transform: translate(-200px, -200px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

.DiagonalSlide {
    animation: DiagonalSlide 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes PulseInOut {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.PulseInOut {
    animation: PulseInOut 1.5s ease-in-out infinite;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

@keyframes StaggeredBounce {
    0% {
        opacity: 0;
        transform: translateY(300px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.StaggeredBounce {
    animation: StaggeredBounce 1.3s ease-in-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.2s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}
/*-----------------------animation ends------------------------------------*/