*{
    text-decoration: none;
}

/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
}

@font-face {
    font-family: Biko;
    src: url(Biko_Regular.otf);
}
@font-face {
    font-family: Lemon Milk;
    src: url(LEMONMILK-Regular.otf);
}

/* header css start */
.header {
    padding: 10px 0 0 0;
}

.navbar {
    background: #ffffff; 
    font-family: Biko;
    border: 2px solid #005691;
    border-radius: 70px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 10px 20px 10px 20px;
    margin: 30px 30px 30px 30px;
}

.navdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    padding-top: 5px;
    padding-left: 10px;
}

li {
    list-style: none;
    display: inline-block;
    color: #005691;
    padding: 10px 20px 10px 20px;
}

a:not(.active):hover{
    color: #005691;
}
.active{
    color: #E84B33;
}
.unactive{
    color: #A6D0D9;
}


/* contact page css */
.contact-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-opt {
    margin-right: 50px;
}

.contact-opt li {
    list-style: none;
    display: flex;
    justify-content: right;
    color: #005691;
    
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 48pt;
    font-style: italic;
}

.get-intouch h1 {
    font-family: Lemon Milk;
    font-size: 72pt;
    font-weight: 500;
    color: #005691;

    margin: 0 0 30px 100px;
}

/* footer css start */
.footer {
    background: #005691;
    justify-content: center;
    align-items: center;
    border: 3px;
    padding: 30px 0 10px 0px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.icon-socmed {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
}

.icon-socmed a {
    padding: 10px;
}

p {
    color: #ffffff;
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: small;
    font-style: italic;
    padding-bottom: 20px;
    text-align: center;
}