*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
html{
    font-family: 'Roboto', 'sans-serif';
    font-size: 10px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    background-color: #ffffff;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
p{
    font-size: 1.6rem;
}
header{
    width: 100%;
    height: 8rem;
    position: relative;
    background: #ffffff;
    top: 0;
    left: 0; 
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 #262261;  
}
.container{
    width: 100%;
    max-width: 98rem;
    margin: 0 auto;
    padding: 0 1.5rem;    
}
header .arrow-up{
    display: none;
    position: fixed;
    right: 1rem;
    bottom: 0.6rem;
    cursor: pointer;  
    border: 2px solid #4a4a4a;
    background-color: #1f1f1f;
    border-radius: 50%;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-size: 1.6rem; 
    z-index: 1;
    outline: none; 
    align-items: center;
    text-align: center;
    transition: all .5s ease-in-out;
}
.arrow-up:hover{
    background-color: #262261;
    color: #ffffff;
    border: 2px solid #262261;
}
.btnShow{
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-name: fadeUpArrow;
}
.btnHide{
    animation-duration: .25s;
    animation-fill-mode: both;
    animation-name: fadeDownArrow;
}
nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}
.nav-brand{
    height: 6rem;
    width: 6rem;
}
.nav-brand img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-icon i{
    font-size: 3.5rem;
    color: #262261;
    cursor: pointer;
    border: 0.2rem solid #262261;
    padding: 0.5rem 1rem;
    border-radius: 0.6rem;
    transition: all .5s ease-in-out;
}
.menu-icon i:hover{
    color: #4a4a4a;
    border: 0.2rem solid #4a4a4a;
}
.nav-list{
    width: 50%;
    height: 100vh;
    position: fixed;    
    top: 0;
    right: -51%;
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
    z-index: 1500;
    overflow: hidden;
    background: #262261;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 1px 5px 0 #262261;
}
.nav-list.active{
    right: 0;
}
.close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}
.close i{
    color: #fc5d5d;
    border: 0.2rem solid #fc5d5d;   
}
.close i:hover{
    color: #a32020;
    border: 0.2rem solid #a32020;
}
.nav-item{
    margin: 0.5rem 0;
}
.nav-link{
    font-size: 2rem;
    text-transform: uppercase;
    color: #ffffff;
    transition: color .5s ease-in-out;
}
.nav-link:hover{
    color: #8a8a8a;
}
.active-page-link{
    border-bottom: 2px solid #fc5d5d;
}
.nav-item .profile-image{
    width: 5rem;
    height: 5rem;
    margin: 0 auto;    
}
.nav-list .profile-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}
.nav-list .profile-image img:hover{
    opacity: 0.8;
}
.nav-list .dropdown{
    margin: 0;
}
.nav-item .dropdown-menu{
    margin: 0 auto;
    padding: 0;
    text-align: center;
}
.nav-item .dropdown-menu .dropdown-btn{
    border: none;
    background: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Roboto', 'sans-serif';
    transition: color .5s ease-in-out;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.nav-item .dropdown-menu .dropdown-btn:hover{
    color: #8a8a8a;
}
.nav-item .dropdown-menu .dropdown-btn:focus{
    outline: none;
}
.dropdown-btn .fa-caret-down{
    display: none;
}
.dropdown-content p{
    display: none;
}
.dropdown-content a{
    display: inline-block;
    margin: 0.5rem 0;
    font-size: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    transition: color .5s ease-in-out;
}
.dropdown-content a:hover{
    color: #8a8a8a;
}
.dropdown-menu .dropdown-content .dropdown-profile-links{
    display: none;
}
.language-item .dropdown-language img{
    width: 2rem;
    height: 2rem;
}
.language-item .dropdown-language{
    position: absolute;
    right: 5%;
    top: 3%;
}
.language-item .dropdown-language > div{
    margin-bottom: 1rem;
}
.language-item .dropdown-language span{
    display: none;
}
.dropdown-link-language{
    display: none;
}
.logo{
    width: 100%;
    height: calc(100vh - 8rem);
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}
.text{
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    width: 90%;
    min-width: 80%;
}
.logo h1{
    font-size: 5rem;    
    color: #262261;
    text-shadow: 1px 1px #ffffff;
    letter-spacing: 0.6rem;
    opacity: 0;
    animation: fadeUp .5s forwards;
    animation-delay: 1.2s;
    text-transform: uppercase;
}
.logo h2{
    color: #262261;
    font-size: 3rem;
    text-shadow: 1px 1px #ffffff;
    letter-spacing: 0.6rem;
    opacity: 0;
    animation: fadeDown .5s forwards;
    animation-delay: 1.6s;
    text-transform: uppercase;
}
.separator{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}
.line{
    width: 100%;
    min-width: 10rem;
    max-width: 40rem;
    height: .3rem;
    background-color: #262261;
    opacity: 0;
    animation: grow 2s forwards;
    animation-delay: .7s;
}
.asterisk{
    color: #bd2121;
    font-size: 2rem;
    margin: 0 1.5rem;
    opacity: 0;
    animation: spin 1.5s forwards;
    animation-delay: .7s;
}
main{
    margin: 0;
    padding: 10rem 0;
}
main section{
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    margin-top: 10rem;
    margin-bottom: 10rem;
}
main h2{
    color: #262261;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 10rem;
    word-break: break-word;
}
main h3{
    color: #262261;
    font-size: 2rem;
    text-transform: uppercase;
    word-break: break-word;
}
main p{
    color: #262261;
    font-size: 1.6rem;
    margin: 1.5rem 0;
    text-align: center;
    word-break: break-word;
}
main .about-image{
    display: none;
}
main .link{
    display: inline-block;
    margin-top: 5rem;
}
.link a{
    padding: 1.5rem 3rem;
    background: #262261;
    color: #ffffff;
    border-radius: 0.3rem;
    text-transform: uppercase;
    font-size: 1.6rem;
    transition: all .5s ease-in-out;
}
.link a:hover{
    background: #475a8b;
}
.services{
    width: 100%;
    margin: 20rem 0 10rem 0;
    text-align: center;
}
.services .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    align-items: flex-start;
    grid-gap: 20rem;
}
.container .box{
    margin: 0 auto;
    padding: 5rem 0;   
    text-align: center;
}
.services .image{
    margin: 0 auto;
    width: 20rem;
    height: 20rem;
}
.services .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.3rem;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 1px 5px 0 #262261;  
}
.services h2{
    color: #262261;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 10rem;
}
.services h3{
    font-size: 2rem;
    margin: 0 auto;
    width: 30rem;
    height: 5rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
    color: #262261;
    text-transform: uppercase;
    word-break: break-word;
}
.services .options{
    margin-bottom: 1rem;
    text-align: justify;
    max-width: 30rem;
}
.services p{
    margin: 0;
    color: #262261;
    word-break: break-word;
}
.services .link a{
    display: inline-block;
    margin-top: 5rem;
}
footer{
    background-color: #1f1f1f;
}
footer .container{
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
footer .contact-information{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
}
.footer-logo{
    width: 10rem;
    height: 10rem;
}
.footer-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-contact{
    text-align: left;
}
.footer-contact .small{
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}
.footer-contact small{
    font-size: 1.2rem;
    color: #c4c4c4;
}
.footer-contact i{
    color: #199cc4;
    font-size: 1.6rem;
    margin-right: 1rem;
}
footer .media-links .fa-twitter{
    color: #4a4a4a;
    font-size: 1.6rem;
    border: 2px solid #4a4a4a;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}
footer .media-links .fa-twitter:hover{
    color: #fff;
    border: 2px solid #262261;
    background-color: #262261;
}
footer .media-links .fa-facebook-f{
    color: #4a4a4a;
    font-size: 1.6rem;
    border: 2px solid #4a4a4a;
    padding: 1rem 1.32rem;
    border-radius: 50%;
    margin-top: 0.5rem;
    transition: all .5s ease-in-out;
}
footer .media-links .fa-facebook-f:hover{
    color: #fff;
    border: 2px solid #262261;
    background-color: #262261;
}
footer .contact-form{
    padding-top: 3rem;
}
footer form{
    width: 100%;
    text-align: start;
}
footer .contact-form h3{
    font-size: 2rem;
    color: #adadad;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
}
.contact-form input{
    width: 100%;
    height: 4rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 0.3rem;
    padding: 0 4rem 0 1rem;
    color: #ffffff;
    font-size: 1.5rem;
    background-color: #3a3a3a;
}
.contact-form input::placeholder{
    color: #adadad;
    font-size: 1.5rem;
}
.contact-form input:focus{
    outline: none;
    background-color: #4a4a4a;
}
.name-input{
    position: relative;
}
.contact-form .fa-user{
    color: #adadad;
    font-size: 1.8rem;
    position: absolute;
    right: 1.2rem;
    padding-bottom: 1rem;
    top: 50%;
    transform: translateY(-50%);    
}
.email-input{
    position: relative;
}
.contact-form .fa-envelope{
    color: #adadad;
    padding: 0;
    font-size: 1.8rem;
    position: absolute;
    right: 1rem;
    padding-bottom: 1rem;
    top: 50%;
    transform: translateY(-50%);    
}
.message-input{
    position: relative;
}
.contact-form .fa-pen{
    padding: 0;
    color: #adadad;
    font-size: 1.8rem;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    transform: translateY(-50%);  
}
.contact-form textarea{
    width: 100%;
    height: 10rem;
    border: none;
    border-radius: 0.3rem;
    padding: 1rem 3.5rem 0.5rem 1rem;
    color: #ffffff;
    font-size: 1.5rem;
    background-color: #3a3a3a;
    font-family: 'Roboto', 'sans-serif';
}
.contact-form textarea::placeholder{
    color: #adadad;
    font-size: 1.5rem;
}
.contact-form textarea:focus{
    outline: none;
    background-color: #4a4a4a;    
}
.contact-form button{
    padding: 1.5rem 3rem;
    background: #3a3a3a;
    color: #adadad;
    border: none;
    border-radius: 0.3rem;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: background .5s ease-in-out;
}
.contact-form button:hover,
.contact-form button:focus{
    outline: none;
    background: #4a4a4a;
}
footer .credentials{
    background-color: #3a3a3a;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
}
footer .credentials .copyrights{
    color: #c4c4c4;
    font-size: 1rem;
}
footer .credentials .company-name{
    color: #199cc4;
    font-size: 1rem;
}
/*===================ABOUT PAGE=================*/
.about-main{
    width: 100%;
    margin: 10rem 0;
    text-align: center;
}
.about-main .container{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-main h3{
    color: #262261;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 10rem;
}
.about-main p{
    color: #262261;
    font-size: 1.6rem;
    margin: 1.5rem 0;
    text-align: center;
    word-break: break-word;
}
/*=================SERVICES PAGE===============*/
.main-services{
    width: 100%;
    margin: 10rem 0;
    text-align: center;
}
.main-services h2{
    color: #262261;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 10rem;
}
.main-services .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    align-items: flex-start;
    grid-gap: 20rem;
}
.container .services-box{
    margin: 0 auto;
    padding: 5rem 0;   
    text-align: center;
}
.services-box h3{
    font-size: 2rem;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    width: 30rem;
    height: 5rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
    color: #262261;
    text-transform: uppercase;
    word-break: break-word;
}
.services-box .image{
    margin: 0 auto;
    width: 20rem;
    height: 20rem;
}
.services-box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.3rem;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 1px 5px 0 #262261;  
}
.services-box .options{
    margin-bottom: 1rem;
    text-align: center;
    max-width: 30rem;
}
.services-box p{
    color: #262261;
    height: 25rem;
    max-height: 35rem;
    word-break: break-word;
}
.services-box a{
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #262261;
    color: #ffffff;
    border-radius: 0.3rem;
    text-transform: uppercase;
    font-size: 1.6rem;
    transition: background .5s ease-in-out;
}
.services-box a:hover{
    background: #475a8b;
}
/*===================TEAM PAGE==================*/
.main-team{
    width: 100%;
    margin: 10rem 0;
    text-align: center;
}
.main-team h2{
    color: #262261;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 10rem;
}
.main-team .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    align-items: flex-start;
    grid-gap: 15rem;
}
.team-box{
    margin: 0 auto;
    padding: 5rem 0;   
    text-align: center;
}
.team-box h3{
    font-size: 2rem;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 20rem;
    max-width: 25rem;
    height: 3rem;
    max-height: 10rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
    color: #262261;
    text-transform: capitalize;
    word-break: break-word;
}
.team-box .profession{
    margin-bottom: 2rem;
    text-align: center;
    max-width: 30rem;
}
.team-box .profession p{
    color: #262261;
    text-transform: capitalize;
    word-break: break-word;
}
.team-box a{
    display: inline-block;
    margin-top: 3rem;
    padding: 1.5rem 3rem;
    background: #262261;
    color: #ffffff;
    border-radius: 0.3rem;
    text-transform: uppercase;
    font-size: 1.6rem;
    transition: background .5s ease-in-out;
}
.team-box a:hover{
    background: #475a8b;
}
/*==============CONTACT PAGE=================*/
.contact-main{
    margin: 10rem 0;
}
.contact-main .information{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #262261;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 2rem 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.information .contact-brand{
    width: 10rem;
    height: 10rem;
}
.contact-brand img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.information .contact{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.contact small{
    font-size: 1.2rem;
    color: #ffffff;
}
.information .media-links{
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.contact i{
    color: #199cc4;
    font-size: 1.2rem;
    margin-right: 1rem;
}
.information .fa-twitter{
    color: #ffffff;
    font-size: 1.6rem;
    border: 2px solid #ffffff;
    padding: 1rem;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}
.information .fa-twitter:hover{
    color: #262261;
    border: 2px solid #8a8a8a;
    background-color: #8a8a8a;
}
.information .fa-facebook-f{
    color: #ffffff;
    font-size: 1.6rem;
    border: 2px solid #ffffff;
    padding: 1rem 1.32rem;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}
.information .fa-facebook-f:hover{
    color: #262261;
    border: 2px solid #8a8a8a;
    background-color: #8a8a8a;
}
.contact-main form{
    background-color: #ffffff;
    padding: 2rem 1rem;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.contact-main form h3{
    font-size: 2rem;
    color: #262261;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
}
.contact-main form input{
    width: 100%;
    height: 4rem;
    margin-bottom: 1rem;
    border: 1px solid #262261;
    border-radius: 0.3rem;
    padding: 0 4rem 0 1rem;
    color: #262261;
    font-size: 1.2rem;
    background: #ffffff;
}
.contact-main form input::placeholder{
    color: #262261;
    font-size: 1.2rem;
}
.contact-main form input:focus{
    outline: none;
    border: 2px solid #262261;
}
.contact-main form .name-input{
    position: relative;
}
.contact-main form .fa-user{
    color: #262261;
    font-size: 1.8rem;
    position: absolute;
    right: 1.2rem;
    padding-bottom: 1rem;
    top: 50%;
    transform: translateY(-50%);    
}
.contact-main form .email-input{
    position: relative;
}
.contact-main form .fa-envelope{
    color: #262261;
    padding: 0;
    font-size: 1.8rem;
    position: absolute;
    right: 1rem;
    padding-bottom: 1rem;
    top: 50%;
    transform: translateY(-50%);    
}
.contact-main form .message-input{
    position: relative;
}
.contact-main form .fa-pen{
    padding: 0;
    color: #262261;
    font-size: 1.8rem;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    transform: translateY(-50%);  
}
.contact-main form textarea{
    width: 100%;
    height: 10rem;
    border: 1px solid #262261;
    border-radius: 0.3rem;
    padding: 1rem 4rem 0.5rem 1rem;
    color: #262261;
    font-size: 1.2rem;
    background: #ffffff;
    font-family: 'Roboto', 'sans-serif';
}
.contact-main form textarea::placeholder{
    color: #262261;
    font-size: 1.2rem;
}
.contact-main form textarea:focus{
    outline: none;
    border: 2px solid #262261;  
}
.contact-main form button{
    padding: 1rem 2rem;
    background: #262261;
    color: #ffffff;
    border: none;
    border-radius: 0.3rem;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: background .5s ease-in-out;
}
.contact-main form button:hover,
.contact-main form button:focus{
    background: #475a8b;
    outline: none;
}
.error{
    color: #ff5e5e;
    padding: 0.5rem 0;
}
.alert-message{
    color: #b6b6b6;
    font-size: 1.4rem;
    margin: 2rem 0;
}
@media screen and (min-width: 600px){
    .nav-link{
        font-size: 2rem;
    }
    .about .container{
        width: 80%;
    }
    footer .container{
        width: 90%;        
    }
    footer .credentials{
        text-align: center;
        padding-left: 0;
    }
    .contact-main{
        margin: 0 auto;
    }
    .contact-main .container{
        margin: 0 auto;
        width: 60rem;
        margin-top: 10rem;
    }
}
@media screen and (min-width: 800px){
    .about .container{
        width: 70%;
    }
    footer .container{
        width: 80%;        
    }
}
@media screen and (min-width: 1000px){
    @supports(position:sticky){
        header{
        height: 10rem;
        position: -webkit-sticky;
        position: sticky;
        z-index: 1;
        }
    }
    .container{
        max-width: 80%;
        height: 100%;
        padding: 0;
        margin: 0 auto; 
        align-items: center;
    }
    header .arrow-up{
        right: 3rem;
        bottom: 0.4rem;
        padding: 1rem 1.2rem;
        font-size: 1.8rem;         
    }
    nav{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 10rem;
        position: relative;
    }
    .nav-brand{
        height: 8rem;
        width: 8rem;
        margin: 0;
        padding: 0;
    }
    .nav-list{
        width: initial;
        height: initial;
        background-color: transparent;
        position: initial;
        top: initial;
        right: initial;
        display: flex;
        flex: 1;
        flex-direction: row;
        justify-content: flex-end;
        transition: initial;
        box-shadow: initial;
    }
    .menu-icon{
        display: none;
    }
    .nav-item{
        margin: 0 3rem;
        margin-right: 0;
    }
    .nav-link{
        font-size: 2rem;
        color: #262261;
        letter-spacing: 0.1rem;
    }
    .nav-list .profile-image{
        width: 4rem;
        height: 4rem;
    }
    .nav-item .dropdown-menu .dropdown-btn{
        display: flex;
        align-items: center;
        border: none;
        background: none;
        color: #262261;
        letter-spacing: 0.1rem;
        font-size: 2rem;
        cursor: pointer;
        text-transform: uppercase;
        font-family: 'Roboto', 'sans-serif';
        transition: color .5s ease-in-out;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 3rem;
    }
    .dropdown-menu .dropdown-content{
        position: absolute;
        display: flex;
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        background: #ffffff;
        border-radius: 0 0 0.5rem 0.5rem;
        top: 10rem;
        width: 12rem;
        border-bottom: 1px solid #f0f0f0;
        border-left: 1px solid #f0f0f0;
        border-right: 1px solid #f0f0f0;
        transition: all .3s ease-in-out;
    }
    .nav-item .dropdown-menu .dropdown-btn:focus + .dropdown-content{
        visibility: visible;
        opacity: 1;
        pointer-events: all;
    }
    .dropdown-content p{
        display: block;
        font-size: 1rem;
        color: #ffffff;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
        background: #262261;
    }
    .dropdown-menu .dropdown-content a{
        display: inline-block;
        width: 100%;
        margin: 0;
        font-size: 1.4rem;
        color: #262261;
        padding: 1rem 0;
        transition: color .5s ease-in-out;
    }
    .dropdown-menu .dropdown-content a:hover{
        color: #8a8a8a;
    }
    .dropdown-content .dropdown-profile{
        width: 100%;
    }
    .dropdown-content .dropdown-profile-links{
        width: 100%;
    }
    .dropdown-menu .dropdown-content .dropdown-profile-links{
        display: flex;
        flex-direction: column; 
        border-bottom: 1px solid #f0f0f0;       
    }
    .dropdown-btn .fa-caret-down{
        display: inline-block;
        font-size: 1.4rem;
        color: #262261;
    }
    .language-item{
        margin-left: 3rem;        
    }
    .language-item .dropdown-link-language{
        display: flex;
        align-items: center;
        border: none;
        background: none;
        cursor: pointer;
    }
    .language-item .dropdown-link-language:focus{
        outline: none;
    }
    .dropdown-link-language img{
        width: 2rem;
        height: 2rem;    
    }
    .language-item .dropdown-language span{
        display: block;
        font-size: 1rem;
        color: #262261;
        margin-left: 0.3rem;
    }
    .language-item .dropdown-language span:hover{
        color: #8a8a8a;
    }
    .language-item .dropdown-language-content a{
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .language-item .dropdown-language img{
        width: 2rem;
        height: 2rem;
    }
    .dropdown-link-language .fa-caret-down{
        font-size: 1.4rem;
        display: inline-block;
        color: #262261;
    }
    .language-item .dropdown-language{
        position: absolute;
        right: initial;
        display: flex;
        flex-direction: column;
        align-items: baseline;
        background: #ffffff;
        border-radius: 0 0 0.5rem 0.5rem;
        top: 10rem;
        padding: 1rem 1rem;
        opacity: 0;
        visibility: hidden;
        border-bottom: 1px solid #f0f0f0;
        border-left: 1px solid #f0f0f0;
        border-right: 1px solid #f0f0f0;
        transition: all .3s ease-in-out;
    }
    .language-item .dropdown-language > div{
        margin: 1rem 0;
    }
    .language-item .dropdown-link-language:focus + .dropdown-language{
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .logo{
        height: calc(100vh - 10rem);
    }
    .logo .text h1{
        font-size: 7rem;
    }
    .logo .text h2{
        font-size: 4rem;
    }
    .asterisk{
        font-size: 2.5rem;
    }
    .language a{
        color: #262261;
    }
    .about .container{
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .about h2{
        font-size: 3.5rem;
    }
    main p{
        color: #262261;
        font-size: 1.6rem;
        margin: 0 auto;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    main .about-image{
        display: initial;
        width: 50%;
        height: 50rem;
    }
    .about-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.3rem;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 1px 5px 0 #262261; 
    }
    .about .content{
        width: 50%;
        max-width: 60rem;
        margin-right: 3rem;
    }
    .services .container{
        grid-gap: 15rem;
    }
    .services h2{
        font-size: 3.5rem;
    }
    footer .container{
        width: 100%;
        display: flex;
        align-items: flex-start;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    footer .contact-information{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 50%;
        text-align: left;
        padding: 0;
    }
    footer .contact-form{
        width: 50%;
        padding-top: 0;
    }
    .footer-logo{
        width: 20rem;
        height: 20rem;
    }
    .footer-contact{
        display: flex;
        width: 90%;
        margin-top: 5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a4a4a;
    }
    .footer-contact .small{
        margin-right: 2rem;
    }
    .media-links{
        display: flex;
        margin-top: 3rem;
    }
    footer .media-links .fa-twitter{
        color: #4a4a4a;
        font-size: 2rem;
        border: 2px solid #4a4a4a;
        padding: 1rem;
        margin-bottom: 0;
        border-radius: 100%;
        transition: all .5s ease-in-out;
    }
    footer .media-links .fa-facebook-f{
        font-size: 2rem;
        padding: 1rem 1.4rem;
        margin-top: 0;
        margin-left: 1rem;        
    }
    footer .credentials .copyrights{
        font-size: 1.2rem;
    }
    footer .credentials .company-name{
        font-size: 1.2rem;
    }
    /*==============ABOUT PAGE===============*/
    .about-main {
        margin-top: 20rem;
        margin-bottom: 20rem;
    }
    .about-main .container{
        width: 60%;
        border-radius: 6px;
        padding: 5rem 0; 
    }
    .about-main h3{
        font-size: 3.5rem;
    }
    .about-main .about-content{
        width: 90%;
    }
    /*==============SERVICES PAGE============*/
    .main-services{
        margin-top: 20rem;
        margin-bottom: 20rem;
    }
    .main-services .container{
        grid-gap: 15rem;
    }
    .main-services h2{
        font-size: 3.5rem;
    }
    /*===============TEAM PAGE=============*/
    .main-team{
        margin-top: 20rem;
        margin-bottom: 20rem;
    }
    .main-team .container{
        grid-gap: 15rem;
    }
    .main-team h2{
        font-size: 3.5rem;
    }
    /*==============CONTACT PAGE=================*/
    .contact-main .container{
        width: 80rem;
    }
    .contact-main .information{
        padding: 3rem 2rem;
    }
    .contact-main form{
        padding: 3rem 2rem;
    }
    .information .contact-brand{
        width: 15rem;
        height: 15rem;
    }
    .information .media-links{
        justify-content: space-evenly;
    }
    .information .fa-twitter{
        font-size: 2rem;
    }
    .information .fa-facebook-f{
        padding: 1rem 1.4rem;
        font-size: 2rem;
    }
    .contact-main form h3{
        font-size: 2.5rem;
    }
    .contact-main form input{
        font-size: 1.4rem;
    }
    .contact-main form input::placeholder{
        font-size: 1.4rem;
    }
    .contact-main form textarea{
        font-size: 1.4rem;
    }
    .contact-main form textarea::placeholder{
        font-size: 1.4rem;
    }
    .contact-main form button{
        font-size: 1.6rem;
    }
}
@media screen and (min-width: 1516px){
    .services .container .box:last-child{
        grid-column: 3/3;
    }
    .contact-main{
        width: 60%;
    }
}
@keyframes fadeUp{
    0%{
        transform: translateY(4rem);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes grow{
    0%{
        width: 0;
    }
    100%{
        opacity: 1;
        width: 100%;
    }
}
@keyframes spin{
    0%{
        transform: rotate(0);
    }
    100%{
        opacity: 1;
        transform: rotate(-720deg);
    }
}
@keyframes fadeDown{
    0%{
        transform: translateY(-1rem);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeUpArrow{
    from{
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to{
        opacity: 1;
    }
}
@keyframes fadeDownArrow{
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}