* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

.banner {
    max-width: 100%;
    height: 100vh;
    background-image: url(images/banner.png);
    background-size: cover;
    background-position: center;
}

section {
    padding: 5%;
}

/* .container{
    width: 100%;
    min-height: 100vh;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    overflow: hidden;
} */

.container p {
    font-family: 'Inter';
}

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    cursor: pointer;
    margin: 3px 0;
    ;
}

.menu-icon {
    width: 50px;
    cursor: pointer;
}

nav {
    flex: 1;
    text-align: left;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-family: 'Inter';
    font-weight:700;
}

nav ul li a:hover {
    color: #ef1919;

}

.visionary-legacy {
    background-color: rgba(203, 71, 66, 0.12);
    
}

.sub-tittle {
    font-family: 'Poppins';
}

.epci-and-work .container .row .col h4 {
    font-family: 'Poppins';
}


/* footer */
.footers a {
    color: #696969;
    font-family: 'PT Serif', serif;
    text-decoration: none;
}

.footers p {
    color: #696969;
    font-family: 'PT Serif', serif;
    text-decoration: none;
}

.footers ul {
    line-height: 30px;
}

#social-fb:hover {
    color: #3B5998;
    transition: all .001s;
}

#social-tw:hover {
    color: #4099FF;
    transition: all .001s;
}

#social-gp:hover {
    color: #d34836;
    transition: all .001s;
}

#social-em:hover {
    color: #f39c12;
    transition: all .001s;
}

.foot-title {
    font-family: 'PT Serif', serif;
    font-weight: 700;
    color: #000 !important;
    text-decoration: none;
}

.copyright {
    background-color: rgba(203, 71, 66, 1);
}


.rectangle{
    width:100%;
    height:5px;
    background:rgba(203, 71, 66, 1);
}



.line {
    --c:20px; /* control the size */
    
    width: 100px;
    margin-bottom:-100px;
    display:inline-block;
    box-sizing:border-box;
    border: solid var(--c) transparent;
    border-radius:50%;
    border-top-color:red;
    background:
      radial-gradient(farthest-side,red 98%,transparent) left  15% top 14%,
      radial-gradient(farthest-side,red 98%,transparent) right 15% top 14%;
    background-size:var(--c) var(--c);
    background-origin:border-box;
    background-repeat:no-repeat;
  }
  
  /* maintain the square ratio */
  .line::before {
    content:"";
    display:block;
    padding-bottom:100%;
  }

  @media only screen and (max-width:700px){
    /* nav {
        flex: 1;
        flex-direction: column;
        text-align: right;
    } */
    nav ul{
        width: 100%;
        position: absolute;
        background: rgba(203, 71, 66, 1);
        top: 75px;
        right: 0;
        z-index: 2;
    };


    nav ul li{
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    nav ul li a{
        color: #fff;
    }
  }