@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: normal;
    background-color: #f7f7f7;
    color: #424242;
}
@media (min-width: 1200px){
    .container {
        width: 1170px;
    }
}
a{
    color: #EE7600;
    text-decoration: none;
}
a:hover{
    color: #9a4e03;
}
.btn-success{
    background-color: #5CBA3C;
    border-color: #5CBA3C;
    box-shadow: 0 0 0 transparent!important;
}
.btn-primary:hover{
    background-color: #88e369;
    border-color: #88e369;
}
.btn-success:active{
    background-color: #88e369;
    border-color: #88e369;
}
.btn-success:focus{
    background-color: #88e369;
    border-color: #88e369;
}
.section-title{
    font-size: 32px;
    font-weight: 500;
    color: #EE7600;
    text-align: center;
    text-transform: uppercase;
}
.page{
    min-height: 40vh;
    margin-top: 30px;
    margin-bottom: 75px;
}
.page-title{
    font-size: 24px;
    font-weight: 700;
}
.page-content{
    background-color: #fff;
    padding: 35px;
}
.btn-orange{
    background-color: #ff6100;
    box-shadow: 0px 3.5px 0px #e65700;
    border-radius: 4px;
    border: 0;
    padding: 14px 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
}
.btn-orange:hover{
    color: #fff;
    box-shadow: 0px 3.5px 0px transparent;
}
.btn-green{
    background-color: #5cba3c;
    box-shadow: 0px 3.5px 0px #4d9c31;
    border-radius: 4px;
    border: 0;
    padding: 14px 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
}
.btn-green:hover{
    color: #fff;
    box-shadow: 0px 3.5px 0px transparent;
}
.mxw100{
    max-width: 100%;
}
.border-none{
    border: none!important;
}
/*
** Topbar
*/
.topbar{
    padding: 12px 0;
}
.topbar .row{
    display: flex;
    align-items: flex-end;
}
.topbar .topbar-contacts{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar .topbar-contacts i{
    color: #5CBA3C;
    font-size: 24px;
    margin-right: 7px;
}
.topbar .topbar-contacts a{
    color: #222222;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*
** Navigation
*/
.navigation{
    background-color: #fff;
    position: sticky;
    top: 0;
    margin-top: 20px;
    z-index: 2;
}
.showdow-nav{
    box-shadow: 5px 5px 4px rgba(49, 49, 49, 0.2);
}
.navigation .col-md-12{
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-links{
    position: relative;
    display: flex;
    justify-content: flex-start;
}
.navigation .nav-links a{
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    padding-right: 24px;
    display: inline-flex;
    align-items: center;
    height: 65px;
}
.navigation .nav-links a:hover{
    color: #ff6b00;
    transition: 0.3s;
}
.navigation .nav-consultation button{
    font-size: 16px;
    border-radius: 3px;
    padding: 10px 20px;
}
.nav-dropdown:after{
    font-family: "FontAwesome";
    content: " \f107";
    margin-left: 7px;
}
.nav-rightdropdown:after{
    font-family: "FontAwesome";
    content: " \f107";
    position: absolute;
    right: 10px;
    transform: rotate(-90deg);
}
.top-level-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.top-level-menu > li {
    position: relative;
    float: left;
}
.top-level-menu li:hover > ul {
    /* On hover, display the next level's menu */
    display: inline;
}
.second-level-menu {
    position: absolute;
    top: 60px;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.second-level-menu > li {
    position: relative;
    background: #fff;
    padding: 10px 25px;
    width: 300px;
}
.product-menu > li {
    width: 250px;
}
.lang-menu > li {
    width: 175px;
}
.lang-menu img{
    width: 18px;
    margin-right: 5px;
}
.lang-img{
    width: 18px;
    margin-right: 5px;
}
.mlang-img{
    width: 22px;
}
.second-level-menu a{
    height: auto!important;
    text-transform: uppercase;
}
.third-level-menu {
    position: absolute;
    top: 0;
    right: -300px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    z-index: 99;
}
.third-level-menu > li {
    background: #fff;
    padding: 10px 25px;
    width: 300px;
}

/*
** Mobile navigation
*/
.mnav{
    display: none;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.035);
}
.mnav .col-md-12{
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#mnavModal .modal-dialog{
    margin: 0;
    margin-left: auto;
}
#mnavModal .modal-content {
    background-color: #454545;
    height: 100vh;
}
#mnavModal .modal-body h3 {
    display: flex;
    justify-content: flex-end;
}
#mnavModal .modal-body a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 10px;
    border-bottom: 1px solid #353535;
    position: relative;
}
#mnavModal .modal-body a:hover{
    background-color: #353535;
}
#mnavModal .nav-dropdown:after {
    position: absolute;
    right: 15px;
}
#mnavModal .modal-body li{
    list-style-type: none;
}



/*
** Banner
*/
.banner .carousel-item img{
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.carousel-control-next{
    width: 50px;
    height: 50px;
    right: 30px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    background-color: #5CBA3C;
}
.carousel-control-prev {
    width: 50px;
    height: 50px;
    left: 30px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    background-color: #5CBA3C;
}
.banner .carousel-caption {
    width: 100%;
    height: 600px;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.banner .carousel-caption h1{
    color: #fe0303;
    background-color: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    padding: 10px 25px;
    font-size: 57px;
    text-transform: uppercase;
}
.banner .carousel-caption h3{
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-flex;
    padding: 10px 25px;
    font-size: 32px;
    text-transform: uppercase;
}
.banner .carousel-caption a{
    color: #fff;
    background-color: #5CBA3C;
    display: inline-flex;
    padding: 10px 25px;
    font-size: 23px;
    text-decoration: none;
}
.banner .carousel-caption a:hover{
    background-color: #88e369;
    transition: 0.3s;
}
.banner .carousel-indicators [data-bs-target] {
    width: 12px!important;
    height: 12px!important;
    border-radius: 50%!important;
}


/*
** Home Atention
*/
.home-atention{
    margin-top: 50px;
}
.home-atention .row{
    display: flex;
    align-items: center;
}
.home-atention h5{
    text-align: center;
    color: #fe0303;
    font-size: 22px;
}
.home-atention .btn{
    font-size: 18px;
}



/*
** Applying Area
*/
.applying-area{
    margin-top: 50px;
    margin-bottom: 75px;
}
.applying-area-item{
    height: 520px;
    background-color: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    margin-top: 30px;
}
.applying-area-title{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 53px;
}
.applying-area-title a{
    color: #EE7600;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}
.applying-area-image img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.applying-area-description{
    padding: 10px;
}
.applying-area-description h6{
    font-weight: 700;
    font-size: 14px;
    text-align: justify;
}
.applying-area-description p{
    font-size: 14px;
    text-align: justify;
}
.applying-area-link{
    padding: 0 5px 40px 5px;
    text-align: center;
}
.applying-area-link a{
    background-color: #ff6100;
    box-shadow: 0px 3.5px 0px #e65700;
    border-radius: 4px;
    border: 0;
    padding: 14px 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
}
.applying-area-link a:hover{
    box-shadow: 0px 3.5px 0px transparent;
}


/*
** Advantage
*/
.advantage{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff;
}
.advantage .section-title{
    color: #5CBA3C;
}
.advantage-item {
    margin-top: 30px;
    text-align: center;
}
.advantage-item i{
    color: #EE7600;
    font-size: 42px;
}
.advantage-item p{
    margin-top: 10px;
    font-weight: 700;
    font-size: 14px;
}


/*
** Advantage
*/
.products{
    margin-top: 50px;
    margin-bottom: 75px;
}
.product-item{
    height: 430px;
    background-color: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    margin-top: 30px;
}
.product-item-title{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 53px;
}
.product-item-title a{
    color: #EE7600;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}
.product-item-image img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.product-item-description{
    text-align: center;
    font-size: 14px;
    padding: 10px;
}
.product-item-description p{
    line-height: 16px;
}
.product-item-link{
    text-align: center;
}
.product-item-link a{
    border-radius: 0;
}
.product-page .product-item{
    height: 450px;
}

/*
** Footer
*/
.footer{
    border-top: 1px solid rgba(204, 204, 204, 0.7);
    padding: 35px 0;
    font-size: 14px;
}
.footer-about img{
    margin-bottom: 35px;
}
.footer-about a{
    text-decoration: none;
    color: #212529;
}
.footer-about a:hover{
    color: #EE7600;
}
.footer-links h5{
    font-weight: 700;
    margin-bottom: 50px;
}
.footer-links ul{
    padding: 0;
}
.footer-links ul li{
    list-style-type: none;
    margin-top: 10px;
}
.footer-links a{
    text-decoration: none;
    color: #212529;
    font-weight: 700;
}
.footer-links a:hover{
    color: #EE7600;
}

/*
** Copyriths
*/
.copyright{
    background-color: #282A2B;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}


/*
** Contact page
*/
.contact-page{
    padding: 45px;
}
.contact-title{
    font-size: 24px;
    font-weight: 700;
    color: #5CBA3C;
    text-align: center;
}
.contact-item{
    padding: 25px;
    height: 300px;
    border: 1px solid #ebebeb;
    background-color: #f5f5f5;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    flex-direction: column;
}
.contact-item:hover{
    background-color: #fff;
}
.contact-item .contact-item-icon{
    width: 80px;
    height: 80px;
}
.contact-item i{
    font-size: 72px;
    width: 72px;
    height: 72px;
    color: #ff6201;
}
.contact-item .contact-item-title{
    height: 80px;
    display: flex;
    align-items: center;
}
.contact-item h4{
    font-weight: 700;
    text-align: center;
}
.contact-item .contact-item-content{
    height: 80px;
    display: flex;
    align-items: flex-start;
}
.contact-item p{
    text-align: center;
}
.contact-item a{
    color: #ff6201;
    text-decoration: none;
}
.contact-page #map{
    margin-top: 50px;
    height: 400px;
    background-color: #f5f5f5;
}
.contact-form{
    margin-top: 50px;
}
.contact-form h5{
    font-weight: 700;
    text-align: center;
}
.contact-form input{
    width: 100%;
    height: 56px;
    padding: 17px 15px 17px 25px;
    border-color: transparent;
    border-radius: 0;
    background: #F0F0F0;
    outline: none;
}
.contact-form input:active{
    border: 1px solid #ff6201;
}
.contact-form input:focus{
    border: 1px solid #ff6201;
}
.contact-form textarea{
    margin-top: 30px;
    width: 100%;
    height: 200px;
    padding: 17px 15px 17px 25px;
    border-color: transparent;
    border-radius: 0;
    background: #F0F0F0;
    outline: none;
}
.contact-form textarea:active{
    border: 1px solid #ff6201;
}
.contact-form textarea:focus{
    border: 1px solid #ff6201;
}
.contact-form .form-action{
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}


/*
** Download Page
*/
.download-item{
    background-color: #fff;
    padding: 25px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
}
.download-item-image{
    overflow: hidden;
}
.download-item-image img{
    max-width: 100%;
}
.download-item-image img:hover{
    transition: 0.5s;
    transform: scale(1.1);
}
.download-item-title{
    font-size: 24px;
    font-weight: 700;
}

/*
** Testimonials Page
*/
.testimonial-item{
    margin-bottom: 30px;
    background-color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}
.testimonial-item-action{
    margin-right: 30px;
}
.testimonial-item-img{
    width: 170px;
    margin-bottom: 15px;
    overflow: hidden;
}
.testimonial-item-img img{
    max-width: 100%;
}
.testimonial-item-img img:hover{
    transition: 0.5s;
    transform: scale(1.1);
}
.testimonial-item-desc{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-item-desc h3{
    font-weight: 700;
    margin-bottom: 30px;
}


/*
** Articles Page
*/
.article-item{
    margin-bottom: 30px;
    background-color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}
.article-item-action{
    margin-right: 30px;
}
.article-item-img{
    width: 170px;
    margin-bottom: 15px;
    overflow: hidden;
}
.article-item-img img{
    max-width: 100%;
}
.article-item-img img:hover{
    transition: 0.5s;
    transform: scale(1.1);
}
.article-item-desc{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.article-item-desc h3{
    font-weight: 700;
    margin-bottom: 30px;
}

/*
** Applying
*/
.applying-item{
    margin-top: 30px;
}
.applying-item h5{
    text-align: center;
    color: #0089D5;
    font-weight: 700;
}
.applying-item img{
    width: 100%;
}


/*
** Consultation
*/
.consultation{
    background-color: #fff;
    margin-top: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.consultation .section-title{
    color: #5CBA3C;
}
.consultation-form{
    border: 1px solid #ebebeb;
    margin-top: 50px;
    padding: 25px;
}
.consultation-form input{
    height: 50px;
    border-radius: 3px;
    margin-bottom: 30px;
    padding-left: 50px;
}
.consultation-form-btn{
    margin-bottom: 15px;
    text-align: center;
}
.consultation-form-btn button{
    width: 75%;
}
.consultation-form-icon{
    position: absolute;
    top: 12px;
    left: 24px;
}
.consultation-form-icon img{
    width: 20px;
}
