@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
*{
    font-family: "Abel", sans-serif;
}

a{
    text-decoration: none !important;
}

/*-------------*/
/*---Btn Up-----*/
/*-------------*/
.btnUpTop{
    position: fixed;
    left: -50px;
    bottom: 20px;
    z-index: 99999;
    background: #a6d71c;
    color: #fff;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 4px;
    transition: all 0.4s;
}
.btnUpTop i{
    font-size: 18px;
}
.btnUpTop:hover{
    background: #004aad;
}
.btnUpTop.show{
    bottom: 20px;
    left: 20px;
}

/*-------------*/
/*---Btn Whatsapp-----*/
/*-------------*/
.btn-whatsapp{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    text-decoration: none;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/*---------------*/
/*--Breadcrumbs--*/
/*---------------*/
.breadcrumbs .container{
    max-width: 1300px;
}
.breadcrumbs .page-header {
    padding: 140px 0 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.breadcrumbs .page-header:before {
    content: "";
    background-color: rgba(14, 29, 52, 0.8);
    position: absolute;
    inset: 0;
}
.breadcrumbs .page-header h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
}
.breadcrumbs .page-header p {
    color: rgba(255, 255, 255, 0.8);
}
.breadcrumbs nav {
    background-color: #f3f6fc;
    padding: 20px 0;
}
.breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #0e1d34;
}
.breadcrumbs nav ol a {
    color: #004aad;
    transition: 0.3s;
}
.breadcrumbs nav ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4278cc;
    content: "/";
}
.breadcrumbs nav ol li+li {
    padding-left: 10px;
}

/*--------------------*/
/*-------nav bar------*/
/*--------------------*/
#nav{
    background: rgba(14, 29, 52, 0.9);
    padding: 0.5rem 15px;
    box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1)
}
#nav .container{
    max-width: 1300px;
}
#logo{
    padding: 0;
    margin: 0;
}
#logo img{
    width: 80px;
    height: auto;
    margin: 0;
}
#nav-item{
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 500;
    padding: 1rem 0.5rem;
    margin: 0 2px;
    position: relative;
    letter-spacing: 1px;
    border-bottom: 4px solid transparent;
    transition: 0.2s;
    text-align: center;
}
#nav-item:hover{
    color: #fff;
}
#nav-item::before{
    position: absolute;
    content: "";
    width: 0%;
    height: 3px;
    bottom: -12px;
    left: 0;
    background: #fff;
    transition: 0.3s;
}
#nav-item:hover::before,#nav-item.active::before{
    width: 100%;
}
#nav-item.active{
    color: #fff;
}

#btn-toogle{
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    /* margin-right: 10px; */
}

/*--------------*/
/*-----Home-----*/
/*--------------*/
.hero {
    width: 100%;
    min-height: 70vh;
    background-color: #0e1d34;
    background-image: url(../img/hero-bg5.png);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0 90px 0;
    color: rgba(255, 255, 255, 0.8);
}
.hero .container{
    max-width: 1300px;
}
.hero h2 {
    margin-bottom: 20px;
    padding: 0;
    font-size: 45px;
    font-weight: 700;
    color: #fff;
}
.hero p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffffd0;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.hero form {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}
.hero form #input-home {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    margin-right: 10px;
    font-size: 18px;
    color: #002b3e;
    font-weight: 600;
    border: none !important;
    background: none !important;height: 100%;
}
.hero form #input-home::placeholder{
    font-size: 18px;
    color: #002b3e;
    font-weight: 600;
}
.hero form #input-home:focus{
    outline: none;
    box-shadow: none;
}
.hero form .btn-primary {
    background-color: #004aad;
    padding: 15px 30px;
}
.hero .stats-item {
    padding: 30px;
    width: 100%;
}
.hero .stats-item span {
    font-size: 32px;
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}
.hero .stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 3px;
    background: #a6d71c;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.hero .stats-item p {
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

/*----------------*/
/*----aboutmore----*/
/*----------------*/
.aboutmore{
    padding: 0;
    background: #f5f6fa;
}
.aboutmore .container{
    max-width: 1903px;
    padding: 0;
    margin: 0;
}
#col-aboutmore{
    padding: 0;
}
#card-aboutmore{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 3rem 2rem;
    background: transparent;
    transition: 0.5s;
    border: 0;
    border-radius: 0;
}
#card-aboutmore:hover{
    background: #004aad;
}
#p-text{
    color: #004bad;
    font-size: 25px;
    font-weight: 600;
    transition: .5s;
}
#card-aboutmore:hover #p-text{
    color: #fff;
}
.text h2{
    font-size: 30px;
    transition: .5s;
    font-weight: 700;
}
#p2-text{
    color: #686868;
    font-size: 15px;
    letter-spacing: 1px;
}
#card-aboutmore:hover .text h2{
    color: #a6d71c;
}
#card-aboutmore:hover #p2-text{
    color: #fff;
}
.icon-aboutmore{
    width: 100px;
    height: 100px;
    border-radius: 200px;
    border: 7px solid #fff;
    /* margin: auto; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    background: #004aad;
}
#card-aboutmore:hover .icon-aboutmore{
    background: #a6d71c;
}
#btn-aboutmore{
    text-align: center;
}
#btn-aboutmore i{
    margin-left: 0.5rem;
    transition: 0.25s;
}
#btn-aboutmore:hover  i{
    margin-left: 0.75rem;
}
#card-aboutmore:hover #btn-aboutmore{
    color: #a6d71c;
}


/*-------------------*/
/*-----About us------*/
/*-------------------*/
#about {
    padding: 90px 0 60px;    
    background: #002b3e;
}
#about .container{
    max-width: 1300px;
}
.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#004aad 50%, rgba(13, 66, 255, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}
.about .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation: pulsate-btn 2s;
    animation-iteration-count: infinite;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(13, 66, 255, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
.about .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}
.about .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn:hover:after {
    border-left: 15px solid #004aad;
    transform: scale(20);
}
.about .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #a6d71c;
}
.about .content p {
    color: #ffffffd0;
    letter-spacing: 1px;
}
.about .content ul {
    list-style: none;
    padding: 0;
}
.about .content ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
}
.about .content ul i {
    flex-shrink: 0;
    font-size: 48px;
    color: #a6d71c;
    margin-right: 20px;
    line-height: 0;
}
.about .content ul h5 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.about .content ul p {
    font-size: 15px;
}
.about .content p:last-child {
    margin-bottom: 0;
}

/*------------------*/
/*-featured-services-*/
/*------------------*/
#featured-services {
    padding: 60px 0;
    overflow: hidden;
}
#featured-services .container{
    max-width: 1300px;
}
.featured-services .service-item {
    padding: 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
    height: 100%;
}
.featured-services .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0 60px 0 rgba(72, 86, 100, 0.1);
}
.featured-services .service-item .icon {
    margin-bottom: 10px;
}
.featured-services .service-item .icon i {
    color: #004bad;
    font-size: 36px;
    transition: 0.3s;
}
.featured-services .service-item h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
}
.featured-services .service-item h4 a {
    color: #485664;
    text-decoration: none !important;
    transition: ease-in-out 0.3s;
}
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}
.featured-services .service-item:hover h4 a {
    color: #004bad;
}
.featured-services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/*---------------------*/
/*-------Clients-------*/
/*---------------------*/
.clients {
    padding: 20px 0px 30px;
}
.clients .container{
    max-width: 1300px;
}
.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.clients .client-logo img {
    padding: 20px 40px;
    max-width: 90%;
    transition: all 0.3s ease 0s;
    opacity: 0.5;
    filter: grayscale(1);
}
.clients .client-logo img:hover {
    filter: none;
    opacity: 1;
}

/*----------------*/
/*---Call Action---*/
/*----------------*/
.cta {
    padding: 0;
    margin-bottom: 60px;
}
.cta .container {
    padding: 80px;
    background: rgba( 72, 86, 100, 0.1);
    border-radius: 0;
    max-width: 1300px;
}
.cta .content h3 {
    color: #485664;
    font-size: 48px;
    font-weight: 700;
}
.cta .content h3 em {
    font-style: normal;
    position: relative;
}
.cta .content h3 em:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 10px;
    background: #004bad80;
    z-index: -1;
}
.cta .content p {
    color: #485664;
    font-weight: 600;
    font-size: 18px;
}
.cta .content .cta-btn {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 10px;
    text-decoration: none !important;
    background: #004bade6;
}
.cta .content .cta-btn:hover {
    background: #004badc2;
}
.cta .img {
    position: relative;
}
.cta .img img {
    position: relative;
    z-index: 3;
    border-radius: 15px;
}
.cta .img:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    transform: rotate(12deg);
}
.cta .img:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    transform: rotate(6deg);
}
/*------------------*/
/*-Features-Details-*/
/*------------------*/
#features-details{
    padding: 60px 0px;
    scroll-margin-top: 100px;
    overflow: clip;
}
#features-details .container{
    max-width: 1300px;
}
#title-feature{
    color: #004aad;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
    padding: 1rem 0;
}
#title-feature::before{
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    bottom: 2px;
    left: 0px;
    background: #a6d71c;
}
.features-details .features-item img {
    border-radius: 15px;
    width: 100%;
}
.features-details .features-item .content {
    background-color: rgba(56, 141, 168, 0.05);
    color: rgba(61, 67, 72, 0.877);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
}
.features-details .features-item h3 {
    font-weight: 700;
    color: #004aad;
    font-size: 26px;
    margin-bottom: 15px;
}
.features-details .features-item p {
    margin-top: 0px;
    margin-bottom: 1rem;
}
.features-details .features-item ul {
    list-style: none;
    padding: 0px;
}
.features-details .features-item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}
.features-details .features-item ul i {
    font-size: 20px;
    margin-right: 10px;
    color: #a6d71c;
}
.features-details .features-item .more-btn {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 10px;
    text-decoration: none !important;
    background: #004bad;
}
.features-details .features-item .more-btn:hover {
    background: #004badbb;
}
.features-details .features-item + .features-item {
    margin-top: 60px;
}

/*--------------------*/
/*------gallery-------*/
/*--------------------*/
#gallery {
    padding: 60px 0 0;
    text-align: center;
    background: #002b3e;
    overflow: hidden;
}
#gallery .section-title{
    margin-bottom: 2rem;
}
#gallery .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #a6d71c;
}
#gallery .section-title p {
    margin-bottom: 0;
    color: #fff;
}
#gallery .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #a6d71c;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #002b3e;
    border-bottom: 3px solid #002b3e;
}
.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
    transform: scale(1.1);
}





/*-------------------------*/
/*--------Contact----------*/
/*-------------------------*/
#contact{
    color: #3d4348;
    background-color: #fff;
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
    text-align: center;
}
#contact .container{
    max-width: 1300px;
}
#contact .section-title{
    margin-bottom: 2rem;
}
#contact .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #004aad;
}
#contact .section-title p {
    margin-bottom: 0;
}
#contact .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #a6d71c;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.contact .info-item {
    padding: 20px 0 30px 0;
    box-shadow: 0 0 4px rgba(61, 67, 72, 0.15);
}
.contact .info-item i {
    color: #004aad;
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    box-shadow: 0 2px 3px rgba(61, 67, 72, 0.15);
}
.contact .info-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}
.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}
.contact .form-contact {
    height: 100%;
    padding: 30px;
    box-shadow: 0 0 4px rgba(61, 67, 72, 0.15);
}
#input-contact{
    height: 40px;
}
#input-contact,#textarea-contact{
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    font-size: 15px;
    color: #002b3e;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(61, 67, 72, 0.2);
    margin-bottom: 1.5rem;
}
#input-contact:focus, #textarea-contact:focus{
    border-color: #004aad;
}
#btn-contact{
    color: #fff;
    background: #004aad;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 0;
    width: 100%;
}
#btn-contact:hover{
    background: #a6d71c;
}

/*-----------------*/
/*------Footer-----*/
/*-----------------*/
.footer-area {
    padding: 40px 0;
    background: #002b3e;
}
.footer-content {
    display: block;
    overflow: hidden;
}
.footer-logo {
    padding-bottom: 20px;
}
.footer-logo h2 {
    color: #fff;
    padding: 0;
    margin: 0;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}
.footer-head p {
    color: #fff;
}
.footer-icons {
    margin-top: 30px;
}
.footer-icons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-icons ul li {
    display: inline-block;
}
.footer-icons ul li a {
    border: 1px solid #444;
    color: #fff;
    display: block;
    font-size: 16px;
    height: 40px;
    line-height: 38px;
    margin-right: 5px;
    text-align: center;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.footer-icons ul li a i {
    line-height: 0;
}
.popular-tag ul li a:hover, .footer-icons ul li a:hover {
    background: #a6d71c;
    border: 1px solid #a6d71c;
    color: #fff;
}
.footer-head h4 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.footer-contacts p span {
    color: #a6d71c;
    font-weight: 700;
}
.flicker-img>a {
    float: left;
    padding: 1px;
    width: 33.33%;
}
.flicker-img>a img{
    width: 100%;
}
/*--------------*/
/*--Footer_End--*/
/*--------------*/
.footer-area-bottom {
    background: rgb(0, 35, 50) none repeat scroll 0 0;
    padding: 15px 0;
}
.copyright p {
    margin-bottom: 0;
    color: #fff;
}
.copyright strong{
    color: #a6d71c;
}
.credits {
    padding-top: 5px;
    text-align: center;
    color: #fff;
}
.credits a {
    color: #a6d71c;
    text-decoration: none;
}
.credits a:hover{
    color: #fff;
    text-decoration: underline 1px solid #fff;
}


#about-page{
    color: #364d59;
    background: #fff;
    padding: 60px 0;
    scroll-margin-top: 92px;
    overflow: clip;
}
#about-page .container{
    max-width: 1300px;
}


@media (min-width: 992px) {
    #about-page .about-img {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 600px;
    }
    #about-page .inner-title {
        max-width: 65%;
        margin: 0 0 80px 0;
    }
    #about-page p {
        padding-right: 35%;
    }
}
#about-page .about-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
#about-page .inner-title {
    font-size: 2.75rem;
    font-weight: 700;
}
#about-page .our-story {
    padding: 40px;
    background-color: color-mix(in srgb, #364d59, transparent 96%);
}
#about-page .our-story h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    color: color-mix(in srgb, #364d59, transparent 50%);
}
#about-page .our-story h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: color-mix(in srgb, #364d59, transparent 20%);
}
#about-page ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}
#about-page ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}
#about-page ul i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    line-height: 1.2;
    color: #004aad;
}
#about-page .watch-video i {
    font-size: 2rem;
    transition: 0.3s;
    color: #004aad;
}
#about-page .watch-video a {
    font-weight: 600;
    color: color-mix(in srgb, #364d59, transparent 20%);
    margin-left: 8px;
    transition: 0.3s;
    text-decoration: none;
}
#about-page .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

/*--------------------*/
/*-----Product Page-------*/
/*--------------------*/
#product-page{
    padding: 3rem 0;
}
#product-page .container{
    max-width: 1400px;
}
#cardproduct-page{
    border: 1px solid #494e5044;
    border-radius: 0;
    box-shadow: none !important;
    padding: 0;
    background: #fff;
    transition: 0.5s;
    margin-bottom: 2rem;
}
#cardproduct-page #topimgProuct{
    overflow: hidden;
}
#cardproduct-page #topimgProuct img{
    width: 100%;
    transition: 1s;
}
#cardproduct-page:hover img{
    transform: scale(1.2);
}
#cardproduct-page #cardbody-product{
    padding: 1rem 0 3rem;
    text-align: center;
}
#cardproduct-page #cardbody-product h3{
    color: #41484ba4;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0.75rem;
}
#cardproduct-page #cardbody-product h2{
    color: #004aad;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
#cardproduct-page #cardbody-product .price{
    color: #004aad;
    font-weight: 600;
    display: block;
    margin-bottom: 2rem;
}
#cardproduct-page #cardbody-product .price strike{
    color: #41484ba9;
}
#cardproduct-page #cardbody-product .add-to-cart{
    color: #002b3e;
    font-size: 18px;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    transition: 0.5s;
    background: transparent;
    border: 1px solid #002b3e;
    text-decoration: none;
    border-radius: 60px;
}
#cardproduct-page #cardbody-product .add-to-cart:hover{
    border: 1px solid #004aad;
    color: #a6d71c;
    background: #004aad;
}

/*-------------------*/
/*----Login Page------*/
/*-------------------*/
#login-page{
    min-height: 100vh;
    padding: 15rem 0 5rem;
}
#login-page .container{
    max-width: 700px;
}
#login-page .form-login{
    height: 100%;
    padding: 30px;
    box-shadow: 0 0 4px rgba(3, 51, 90, 0.315);
    background: #fff;
}
#login-page img{
    width: 100px;
    margin: auto;
    margin-bottom: 1.5rem;
}
#login-page h2{
    font-size: 30px;
    font-weight: 600;
    color: #a6d71c;
    margin-bottom: 2rem;
}
#input-login{
    height: 40px;
}
#input-login{
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    font-size: 15px;
    color: #002b3e;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(61, 67, 72, 0.2);
    margin-bottom: 1.5rem;
}
#input-login:focus{
    border-color: #004aad;
}
#btnlogin-page{
    color: #fff;
    background: #004aad;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    font-size: 20px;
    border-radius: 0;
    width: 100%;
    margin-bottom: 1rem;
}
#btnlogin-page:hover{
    background: #a6d71c;
}
#login-page .form-login p a{
    color: #004aad;
}
#login-page .form-login p a:hover{
    color: #a6d71c;
}