﻿.banner1 {
    width: 100%;
    height: 500px;
}

.cardStyle {
    width: 355px;
}

.product {
    margin-left: 10px;
}

.secondRowCards {
    margin-top: 10px;
}

.logoWidth {
    width: auto;
}



.parallax {
    /* The image used */
    background-image: url("/Assets/Parallex/2.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 {@import url('index.css');
        /* width: 410px; */
        margin-top: 10px;
    }

    .clients {
        display: flex;
        justify-content: center;
        align-items: center
    }
}

@@media only screen and (min-width: 1000px) {
    /* Styles for monitors between 1200px and 1600px in width */
    .cardStyle {
        /* width: 410px; */
        margin-top: 10px;
    }

    .clients {
        display: flex;
        justify-content: center;
        align-items: center
    }
}

@@media only screen and (max-width: 767px) {
    /* Styles for smartphones */

    .banner1 {
        width: 100%;
        height: 200px;
    }

    .cardStyle {
        width: 100%;
        margin-top: 10px;
    }

    .product {
        margin-left: 0;
    }

    .iframe {
        width: 100%;
    }
}

@@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;
    }

    .product {
        margin-left: 0;
    }

    .clients {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .iframe {
        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 img {
        transition: transform 2s ease, border-radius 0.5s ease;
    }

    .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;
}

#carousel-indicators2 {
    position: unset !important;
}

.carousel-indicators > li {
    border-radius: 50%;
    height: 12px !important;
    width: 12px !important
}

/*.productCard:hover {
    transition: unset 0.2s;
    box-shadow: 0px 20px 8px rgba(38, 38, 38, 0.2);
    top: -10px;
    border: 1px solid #cccccc;
    background-color: white;
    cursor: pointer;
}
*/
.productCard {
    -ms-transform: scale(1); /* IE 9 */
    -webkit-transform: scale(1); /* Safari 3-8 */
    transform: scale(1);
    transition: transform 0.5s ease; /* Smooth transition */
}

    .productCard:hover {
        -ms-transform: scale(1.1); /* IE 9 */
        -webkit-transform: scale(1.1); /* Safari 3-8 */
        transform: scale(1.1);
    }


.owl-item {
    width: 136px !important;
}


/*-------------------------------animation style starts-------------------------*/

@keyframes RightToLeftAppear {
    from {
        opacity: 0;
        transform: translateX(500px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

RightToLeftAppear {
    animation: RightToLeftAppear 1s 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 10s 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);
    }
}

.ZoomInRotation {
    animation: ZoomInRotation 1.2s cubic-bezier(0.25, 1, 0.5, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

.zoom:hover {
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transition: transform 0.5s ease; /* Smooth transition */
    transform: scale(1.2);
}

@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 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 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 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%;
}

.slide-right {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 2s ease, transform 1s ease;
}

    .slide-right.animate {
        opacity: 1;
        transform: translateX(0%);
    }



.colorChange:hover {
    background-color: #0e2a74!important;
    color:white!important;
}
/*-------------------------------animation style ends---------------------------*/