:root{
    --sidebar-color: #0f0f0f;
    --primary-color: #171717;
    --primary-color-light: #3e3e3e;
    --toggle-color: #fff;
    --text-color: #ffffff;
    --tran-03: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}
@keyframes slideInFromLeft {
    0% {
      transform: translatey(-50px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
    }
  }
@keyframes navigationSlide {
    0% {
      transform: translatey(-60px);
      opacity: 0;
    }
    100% {
      transform: translatey(-3px);
    }
  }
body{
    background-color: #f3f3f3;
}
.page{
    margin-top: 80px;
}
a{
    text-decoration: none;
    color: #000;
}
.banner{
    height: 350px;
    transition: ease 0.5s;
    overflow: hidden;
    position: relative;
    background-image: url('images/bannerimage.jpg');
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.432);
    background-blend-mode: darken;
}
.banner .bannercontent{
    padding: 50px;
    position: absolute;
    bottom: 0;
    animation: slideInFromLeft ease 1.5s;
    animation-fill-mode: forwards;
}
.banner .bannertext{
    font-size: 70px;
    color: #fff;
    line-height: 69px;
    letter-spacing: -0.9px;
    font-weight: 600;
    transition: ease 0.5s;
}
.banner .bannerbutton{
    font-size: 22px;
    margin-top: 28px;
    border: none;
    padding: 11px;
    color: #000;
    border-radius: 15px;
    font-family: 'Plus Jakarta Sans';
    transition: ease 0.3s;
}
.banner .bannerbutton:hover{
    outline: 2px solid #fff;
    color: #fff;
    background-color: transparent;
}
.banner .bannerbutton i{
    transform: translateY(2px);
    margin-left: 10px;
}
.navigationmenu{
    background-color: #00719a;
    position: fixed;
    height: 230px;
    padding: 20px;
    width: 100%;
    animation: navigationSlide ease 0.4s;
    animation-fill-mode: forwards;
}
.navigationmenu .navitem{
    height: 60px;
    border-radius: 10px;
    margin-bottom: 5px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transform: translateY(15px);
}
.navigationmenu .navitemactive{
    height: 60px;
    border-radius: 10px;
    margin-bottom: 5px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(15px);
}
.topbar{
    transform: translateY(-80px);
    height: 80px;
    width: 100%;
    z-index: 999;
    position: fixed;
    text-align: left;
    background-color: #fff;
}
.topbar .toplogo{
    height: 100%;
    padding: 12px;
    cursor: pointer;
}
.topbar .menuicon{
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 15px;
    margin-right: 25px;
    font-size: 40px;
    color: #00719a;
    cursor: pointer;
}
.footer{
    padding: 30px;
    background-color: #fff;
}
.footer .footerlogo{
    height: 50px;
    transform: translateX(-3px);
    margin-bottom: 10px;
}
.footer i{
    font-size: 25px;
    transform: translateY(4px);
    margin-right: 10px;
}
.footer a{
    text-decoration: none;
    color: #000;
}
.footer h1{
    font-size: 30px;
}
.subtitle{
    font-size: 29px;
    padding: 20px;
    border-bottom: 1px solid #ababab;
    background-color: #fff;
}
.socialpagebutton{
    width: calc(100% - 30px);
    margin: 15px;
    font-weight: 500;
    background-color: #fff;
    color: #000;
    outline: 1px solid #c8c8c8;
    border-radius: 15px;
    border: none;
    padding: 90px;
    font-size: 30px;
    transition: ease 0.5s;
}
.socialpagebutton:hover{
    transform: scale(1.02);
    outline: 2px solid #0077ff;
}
p{
    font-size: 1.3em;
    padding: 20px;
    line-height: 1.8rem;
}
h2{
    font-size: 23px;
    padding-left: 25px;
    font-weight: 600;
}
.footerlink{
    font-weight: 500;
    padding: 0px;
}
.columns{
    display: flex;
    margin: 20px;
    padding: 6px;
    outline: 1px solid #bdbdbd;
    border-radius: 18px;
    height: 100%;
    background-color: #fff;
}
.columnimg{
    width: 230px;
    border-radius: 15px;
    object-fit: cover;
}
@media screen and (max-width: 600px) {
    .banner{
        width: 100%;
    }
    .banner button{
        cursor: pointer;
    }
    .banner .bannercontent{
        margin-top: 15px;
        width: 100%;
    }
    .banner .bannertext{
        font-size: 60px;
        line-height: 60px;
    }
    .banner .bannertext i{
        font-size: 60px;
    }
    .columns{
        display: block;
    }
    .columnimg{
        width: 100%;
        height: 300px;
    }
    .columnimgleft{
    height: 500px;
    width: 230px;
    border-radius: 15px;
    object-fit: cover;
}
.columnimgright{
    height: 270px;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}
}