/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/
body {
    overflow-x: hidden;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

@media (max-width: 576px) {
    .btn-xl-square {
        width: 47px;
        height: 47px;
    }

}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: #04628a !important;
    border: 1px solid #04628a;
}

.btn.btn-secondary {
    color: #ffffff;
    background-color: #04628a;
}

.btn.btn-secondary:hover {
    background: #04628a;
    border: 1px solid #04628a;
}

.btn.btn-light {
    color: #04628a;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: #04628a;
    border: 1px solid #04628a;
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }

    25% {
        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
    }

    50% {
        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
    }

    75% {
        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
    }

    100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}

/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: sans-serif;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #04628a;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 66px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: #04628a;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 8px !important;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    /* .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid #04628a;
        color: #04628a;
    } */

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

.navbar .navbar-toggler:active,
.navbar .navbar-toggler:focus {
    outline: none;
    border: none;
}

.navbar .navbar-toggler {
    color: #04628a !important;
    border-color: white !important;
}

.navbar .navbar-toggler-icon {
    width: 24px;
    height: 18px;
    background-image: none;
    position: relative;
    border-bottom: 3px solid #04628a;
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after,
.navbar .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 3px;
    background-color: #04628a;
    top: 0;
    left: 0;
    content: '';
    /* z-index: 2; */
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-collapse {
        position: absolute;
        background: var(--bs-white);
        height: 100vh;
        width: 62%;
        left: -282px;
        top: 71px;
        box-shadow: var(--box-shadow);
        padding: 10px 16px 0px 20px;
        transition: .3s linear;
        z-index: 99;
    }

    .navbar-collapse.show {
        top: 71px;
        left: -11px;
    }
}

@media screen and (min-width:577px) and (max-width: 840px) {
    .navbar-collapse.show {
        left: -35px;
    }

    .navbar-collapse {
        width: 334px;
    }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 660px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #04628a;
    opacity: 1;
    transition: 0.5s;
}


.carousel-indicators [data-bs-target].active {
    background-color: #022f3a;
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}

/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumbabout {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(119, 153, 225, 0.644), rgba(24, 38, 62, 0.539)), url(../img/about_us.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 40px 0;
    transition: 0.5s;
}

.bg-breadcrumbabout .breadcrumb {
    position: relative;
}

.bg-breadcrumbabout .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header Start ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumbimg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(119, 153, 225, 0.644), rgba(24, 38, 62, 0.539)), url(../img/gallery.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 40px 0;
    transition: 0.5s;
}

.bg-breadcrumbimg .breadcrumb {
    position: relative;
}

.bg-breadcrumbimg .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumbcontact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(97, 132, 210, 0.621), rgba(15, 38, 78, 0.555)), url(../img/contact_us.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 40px 0;
    transition: 0.5s;
}

.bg-breadcrumbcontact .breadcrumb {
    position: relative;
}

.bg-breadcrumbcontact .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0 30px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #04628a;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    ;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    background: #054751 !important;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;

}

.about .about-img .img-1 {
    /* height: 85%; */
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%;
    bottom: 9px;
    right: 0px;
    padding-left: 77px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: #04628a;
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: #04628a;
}

/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(2, 161, 176, 0.385), rgba(0, 151, 164, 0.9)), url(../img/counter-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04628a;
    background: #ffffff;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** service Start ***/


.service-item-1 .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center !important;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service-item-1:hover .service-text {
    top: -1.5rem;
    color: #04628a;
}

.service-item-1 .service-text h5 {
    transition: .5s;
}

.service-item-1:hover .service-text h5 {
    color: var(--primary);
}

.service-item-1 .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item-1:hover .service-btn {
    bottom: -1.5rem;
}


.service-item-1 .service-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #04628a;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Service End ***/


/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid #04628a;
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: #04628a;
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/*** Cars Categories End ***/


.text-primary {
    color: #04628a !important;
}

/*** Process Start ***/
.steps {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/step.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.steps .steps-item {
    position: relative;
    background: #04628a;
    border-radius: 10px;
}

.steps .steps-item:hover {
    background: #FFFF !important;
    color: #04628a !important;

}

.steps .steps-item:hover h4 {
    color: #04628a;
}

.steps .steps-item:hover p {
    color: #04628a;
}

.steps .steps-item h4,
.steps .steps-item p {
    color: var(--bs-white);
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0;
    right: 40px;
    font-weight: 900;
    border: 1px solid var(--bs-white);
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: #04628a;
    display: flex;
    align-items: center;
    justify-content: center;
}



.steps .steps-item:hover .setps-number {

    border: 3px solid #04628a;
    border-radius: 64px;
    transform: translateY(50%);
    color: #04628a;
    background: #f8fcff;
}

/*** Process End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: #04628a;
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}

/*** Blog End ***/


/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

.banner h3 {
    background: #04628a;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 32px;
}

/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #04628a;
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;

}

.team .team-item .team-img img {
    transition: 0.5s;
    height: 270px;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 3px solid #04628a;
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: #04628a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: #fffffff2;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.border_top {
    border-top: 2px rgb(183, 197, 207) solid;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: #04628a;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: #04628a;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: #04628a;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04628a;
    background: #04628a;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background-image: linear-gradient(to right, #04628a, #003e65);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: #04628a;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: #04628a !important;
}

.footer .icon a:hover {
    /* border: 1px solid white; */
    color: #fff;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/
.bg-secondary {
    background-color: #04628a !important;
}

/* course start -=================================== */

/*** service Start ***/
.categories .service-item {
    position: relative;
    overflow: hidden;
}

.categories .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

/*
.categories .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: #04628a;
    opacity: 0;
    transition: 0.5s;
}

.categories .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
} */

.categories .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.categories .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

/* .categories .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
} */

.categories .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.categories .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

/* .categories .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
} */

.categories .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.categories .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}

/*** Service End ***/

/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 95px;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgb(0 146 184 / 50%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.bg-secondary-btn {
    background: rgb(0 146 184 / 50%);
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: #60b9df12;
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}

/*** training End ***/




/* faq================================ */


/*** Fact Counter Start ***/
/* .details-counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/fact-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
} */

.details-counter .counter-item .counter-item-icon {
    /* width: 90px;
    height: 90px; */
    /* border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    color: #04628a;
    background: #ffffff;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Feature Start ***/
.features .feature-item {
    position: relative;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 0;
    background: var(--bs-light);
    transition: 0.5s;

}


.features .feature-item::before {
    width: 0;
    width: 6px;
    content: '';
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #04628a;
    transition: 0.5s ease-in-out;
}

.features .feature-item:hover::before {
    width: 100%;
    background: #04628a;
}

/* .feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
} */

.features .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.features .feature-item:hover .feature-content h5 {
    color: #ffffff;
}


/*** Feature End ***/


.training-title-name {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgb(180 2 2 / 90%);
    color: var(--bs-white);
}

/***************************** Food Arena start  *****************************/

#food_arena .food_arena-end {
    background: linear-gradient(rgb(160, 235, 241), rgb(4, 149, 159)), center center no-repeat;
    background-size: cover;
    padding: 32px;
}

#food_arena h3 {
    color: var(--yellow);
    margin-bottom: 32px;
}

#food_arena p {
    color: var(--white);
}

@media (min-width: 992px) {

    #food_arena .food_arena-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}

/***************************** Food Arena End  *****************************/


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid #04628a !important;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


#banner-2 .form {
    width: 100%;
    height: 300px;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    background-image: linear-gradient(105deg,
            rgba(9, 174, 224, 0.5) 0%,
            rgba(71, 163, 229, 0.9) 50%,
            transparent 50%),
        url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2063626/pierpaolo-lanfrancotti-185554-unsplash.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}



@media (max-width: 576px) {
    #banner-2 .form {
        width: 100%;
        height: 100%;
    }
}

#banner-2 .title {
    font-size: 3rem;
    font-family: Arial;
    font-weight: 600;
    margin-left: 2rem;
    margin-bottom: 2rem;
    color: #eee;
}

#banner-2 .form__group {
    width: 40%;
    height: 50%;
    margin-left: 2rem;
}

#banner-2 .form__input {
    width: 100%;
    height: 4rem;
    font-size: 1.4rem;
    border: none;
    outline: none;
    margin-bottom: 4rem;
}

#banner-2 .form__input:focus {
    border-bottom: 0.5rem solid #18e000;
}

#intern-first .sec-head {
    color: #04628a;
    font-family: "Roboto", Sans-serif;
    font-size: 45px;
    line-height: 60px;
    font-weight: 600;
}

.why-join .card {
    height: 360px;
}

.why-join .card .card-image img {
    width: 225px;
    height: 176px;
}


/*** Feature ***/
.why-chose-giniskill-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.why-chose-giniskill .why-chose-giniskill-box,
.why-chose-giniskill .why-chose-giniskill-box * {
    transition: .5s;
}

.why-chose-giniskill .why-chose-giniskill-box:hover {
    background: #04628a;
    border-color: #04628a !important;
}

.why-chose-giniskill .why-chose-giniskill-box:hover * {
    color: #FFFFFF !important;
}

.contact-us-section label[for="text"] {
    font-weight: 600;
    color: #6d6d6d;
}

.contact-us-section input[type="text"] {
    /* max-width: 483px; */
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #000;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-us-section input[type="number"] {
    /* max-width: 483px; */
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #000;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-us-section input[type="text"]::placeholder {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.contact-us-section select {
    /* max-width: 483px; */
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #000;
    background-color: #FFFFFF;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-us-section select::placeholder {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.contact-us-section .form-control {
    background-color: #FFFFFF;
}

.contact-us-section textarea {
    /* max-width: 483px; */
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #000;
    background-color: #FFFFFF;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
}


.intern .color {
    width: 275px;
    height: 150px;
    background-color: #04628a;
    position: absolute;
    box-shadow: 1px 2px 10px 1px;
}

.intern .image {
    padding: 50px;
    position: relative;
}

.intern .image img {
    box-shadow: 1px 2px 10px 1px var(--bs-dark);
}

.key-info {
    border: 4px solid #003e65;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.key-info h5 {
    color: #002b51;
    font-weight: 700;
}

/*** Comparison ***/
@media (min-width: 992px) {
    .comparison::after {
        position: absolute;
        content: "";
        width: 1px;
        top: 56px;
        bottom: 20px;
        left: 50%;
        background: #DDDDDD;
    }
}


.main .card {
    color: #252a32;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}

.main .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
}

.main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .main .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}

.video-testimonial .card video {
    /* display: block; */
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    /* height: 500px; */
    /* object-fit: cover; */
}

.video-testimonial .card {
    position: relative;
    display: block;
    width: 100%;
    /* padding-top: 70%; */
    background: #ffffff;
}
