*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    /* semiBold = 600
    black = 900
    medium = 500 */
}
p{
    color: #19057a;
    margin: 0;
}
a{
    text-decoration: none;
    color: white;
}
/* home style */
.home{
    width: 70%;
    margin: auto;
}
@media (min-width:320px) and (max-width:767px){
    .home{
        width: 80%;
    }
}
/* end of home style */
/* drop down menu style */
.menu{
    position: relative;
}
.drop-down-menu{
    box-shadow: 0 0 3px rgb(0 0 0 / 15%);
    position: absolute;
    right: 102%;
    top: 0%;
    transition: .2s;
    z-index: 100000;
    background-color:#19057a;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 310px;
}
.drop-down-menu li{
    margin: 20px 0 20px 0;
}
.company-name{
    color: white;
}
@media (min-width:320px) and (max-width:767px){
    .drop-down-menu{
        top: 207%;
        right: -175%;
    }
}
/* end of drop down menu */

/* navigation bar style */
.menu{
    background-color: #19057a;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 65px;
}
.first_nav-bar{
    display: flex;
    border-style: solid ;
    border-color: #c1c1c1;
    border-width: 1px 0px;
    justify-content: space-between;
}
.first_nav-bar a{
    padding-right: 3px;
}
.second_nav-bar{
    display: flex;
    border-style: solid;
    border-color: #c1c1c1;
    border-width: 0px 0px 1px 0px;
    justify-content: space-between;
}
.second_nav-bar p{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #19057a;
}
.second_nav-bar p a{
    color: #19057a;
    text-decoration: none;
}
.nav-bar_leftSide{
    margin: 5px;
    display: flex;
    align-items: center;
}
.nav-bar_leftSide a i{
    color: #19057a;
}
.nav-bar_leftSide p sup{
    font-weight: 500;
    font-size: 10px;
}
@media (min-width:320px) and (max-width:767px) {
    .nav-bar_leftSide p {
        font-size: 10px;
    }
    .nav-bar_leftSide p sup{
        font-size: 8px;
    }
}
.language{
    height: 35px;
    background-color: #19057a;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
}
.language p{
    color: white;
    font-weight: 500;
    margin-right: 5px;
}
@media (min-width:320px) and (max-width:767px) {
    .language p {
        font-size: 10px;
    }
}
.language i{
    font-size: 10px;
}
/* end of navigation bar */
/* Logo style */
.logo{
    width: 85%;
    margin: auto;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
@media (min-width:320px) and (max-width:767px){
    .logo svg{
        width: 100px;
        height: 100px;
    }
}
/* end of logo */
/* central text style */
.central-text{
    display: flex;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 100px;
}
.central-text h1 {
    color: #19057a;
    font-size: 70px;
    text-transform: uppercase;
}
@media (min-width:320px) and (max-width:767px){
    .central-text{
        margin-bottom: 60px;
    }
    .central-text h1{
        font-size: 22px;
        margin-bottom: 70px;
    }
}
/* end of central text */
/* first story section style */
.first-story-section{
    display: flex;
    justify-content: space-between;
}
.first-story-section p{
    text-align: justify;
}
.left-story-content{
    width: 45%;
}
.left-story-content h1{
    color: #19057a;
}
.first-story-section .right-story-content{
    width: 45%;
    margin-top: 300px;
}
.right-story-content h1{
    color: #19057a;
}
@media (min-width:320px) and (max-width:767px){
    .first-story-section{
        flex-direction: column;
    }
    .first-story-section .right-story-content{
        width: 100%;
        margin: 0 0 50px 0;
    }
    .left-story-content{
        width: 100%;
        margin-bottom: 50px;
    }
}
/* end of first story section */
/* second story section style */
.second-story-section{
    display: flex;
    justify-content: space-between;
}
.second-story-section .left-story-content{
    width: 45%;
    margin-top: 200px;
}
.left-story-content h1{
    color: #19057a;
}
.right-story-content{
    width: 45%;
}
.right-story-content h1{
    color: #19057a;
}
.second-story-section p{
    text-align: justify;
}
.sub-text{
    margin: 20px 0 20px 0;
}
.doodle{
    margin-bottom: 30px;
    text-align: center;
}
@media (min-width:320px) and (max-width:767px){
    .second-story-section{
        flex-direction: column;
    }
    .second-story-section .left-story-content{
        width: 100%;
        margin: 0 0 50px 0;
    }
    .right-story-content{
        width: 100%;
        margin-bottom: 50px;
    }
}
/* end of second section style */
/* footer style */
.footer{
    display: flex;
    align-items: center;
    margin: 50px 0 50px 0;
    justify-content: space-between;
}
.footer svg{
    width: 70%;
}
.footer p{
    font-size: 12px;
}
@media (min-width:320px) and (max-width:767px){
    .footer p{
        font-size: 8px;
    }
    .footer svg{
        width: 20%;
    }
}
/* end of footer style */