* {
    margin: 0;
    padding: 0;
    /*Set google font*/
    font-family: 'Ubuntu', sans-serif;
    position: relative;
}
/* Header Style */
#header {
    height: 120px;
    padding-bottom: 20px;
}
/*logo style*/
#logo {
    height: 140px;
    display: inline-block;
    float: left;
    margin-left: 100px;
}
/*flag icons style*/
.left-icon {
    margin-left: 30px;
}
.flag-icon {
    height: 50px;
    width: 50px;
    margin-top: 50px;
    display: inline-block;
    padding-left: 5px;
    transition: transform 250ms;
}
.flag-icon:hover {
    transform: translateY(-4px);
}
/* Navbar Style */
#navbar {
    float: right;
    padding: 30px;
    font-size: 19px;
}
#navbar-mobile {
    float: left;
    display: none;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
li.nav-li {
    float: right;
    margin-left: 2px;
}
li.nav-li a.nav-a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #94b7dd;
    border-radius: 120px;
    margin-left: 10px;
    margin-top: 22px;
    border: 2px solid #94b7dd;
}
li.nav-li a:hover {
    background-color: #ffff;
    border: 2px solid #94b7dd;
    color: black;
    transition: all 0.4s ease-in;
}
a {
    all: unset;
    color: white;
    text-decoration: none;


}
a:hover {
    cursor: pointer;
    color: white;
    text-decoration: none;
}
/* below header style*/
#below-header {
    display: inline-block;
    width: 50%;
    margin-left: 25%;
}
.below-header-text {
    color: #3b3e50;
}
.below-header-text-h1 {
    margin-top: 60px;
    font-size: 50px;
    color: #94b7dd;
}
.below-header-text-h2 {
    margin-top: 50px;
    font-size: 24px;
    font-weight: bold;
    color: #94b7dd;
}
.below-header-text-h3 {
    color: #94b7dd;
}
.below-header-text-p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 30px;
}
hr {
    width: 100%;
    border: #dedede 1px solid;
}
.below-header-text-h3 {
    font-size: 18px;

}
.below-header-text-h2 {
    font-size: 28px;
    
}
.build-yourself-img {
    margin-top: 20px;
}
.build-yourself-list {
    font-size: 14px;
}

/*Footer section style*/
#footer {
    background-color: #ad1414;
    color: #ffff;
    overflow: hidden;
}


#footer-left,
#footer-right {
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.footer-text-h3 {
    font-size: 18px;
}
.footer-text-h1 {
    font-size: 45px;
}
.footer-text-p {
    font-size: 24px;
}
#footer-left {
    width: 50%;
    padding-left: 8%;
    float: left;
    padding-top: 5%;
}


#footer-right {
    width: 45%;
    float: right;
    
    padding-top: 5%;
}


.left-footer-text {
    padding-left: 0px;
    font-size: 24px;
}


#footer-contact-form {
    clear: both;
}
/*Footer departments flag section style*/
#footer-flags-of-office {
    text-align: center;
    background-color: #ad1414;
}
.cepi-flag {
    border-radius: 50%;
}
/*Footer copyright section style*/
#footer-copyright {
    text-align: center;
    background-color: #ad1414;
    color: white;
    font-size: 14px;
    padding: 20px;
}
/* scroll button style */
#scrollButton {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #f2f2f2;
    color: #94b7dd;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 250ms;
}
#scrollButton:hover {
    width: 52px;
    height: 52px;
    transform: translateY(-8px);
}
#scrollButton i {
    font-size: 24px;
}

/* ALL MOBILE STYLES */
@media screen and (max-width: 1023px) {
    #logo {
        float: none;
        display: block;
        margin: auto;
        margin-bottom: 40px;
    }
    #navbar {
        display: none;
    }
    #navbar-mobile {
        width: 300px;
        float: none;
        padding: 0;
        text-align: center;
        margin: auto;
        display: block;
    }
    #navbar-mobile ul.top-navbar {
        display: block;
        text-align: center;
        padding: 10px 0;
    }
    li.nav-li {
        float: none;
        margin: 10px 0;
    }
    li.nav-li a.nav-a {
        background-color: rgba(255, 255, 255, 0.267);
        color: rgb(0, 0, 0);
        border-radius: 5px;
        padding: 18px 10px;
    }
    #header {
        text-align: center;
    }
    .flag-icon {
        display: inline-block;
        margin: 5px;
        vertical-align: middle;
        margin-bottom: 20px;
    }
    #header {
        height: auto;
    }
}
@media screen and (max-width: 650px) {
    #below-header {
        width: 96%;
        margin-left: 2%;
        margin-right: 2%;
    }
}
@media screen and (max-width: 900px) {
    #footer-left,
    #footer-right {
        width: 100%;
        float: none;
    }
}
@media screen and (max-width: 530px) {
    .left-footer-text {
        padding-left: 0px;
    }
    #footer-left {
        text-align: center;
    }
}
@media screen and (max-width: 420px) {
    .left-footer-text {
        word-wrap: break-word;
    }
    #scrollButton {
        right: 0px;
    }
}