@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&family=Raleway:wght@400;700&display=swap');

:root {
    --kblack: #484d5d;
    --kyellow: #ffce06;
    --kgrey: #f5f5f5;
}
html {
    scroll-behavior: smooth;
  }
body {
    font-family: 'Montserrat', sans-serif;
}

.flex-center {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

img.header-img {
    height: 50px;
}

.bg-light {
    background-color: var(--kgrey)!important;
}

a.navbar-brand {
    padding: 2% 5% 2% 5%;
}

.kblack {
    color: var(--kblack);
    font-weight: bold;
}

.kyellow {
    color: var(--kyellow);
    font-weight: bold;
}

ul.navbar-nav {
    width: 50%;
}

li.nav-item {
    width: 100%;
    text-align: center;
}
span.nav-link {
    width: 100%;
    color: var(--kblack);
    font-weight: bold;
    cursor: pointer;
}
span.nav-link:hover {
    background: var(--kyellow);
    border-radius: 25px;
}
span.nav-link.active {
    background: var(--kyellow);
    border-radius: 25px;
}

nav.navbar.navbar-expand-lg.navbar-light.bg-light {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
}

img.yellow-k {
    height: 320px;
    margin: auto;
}

img#bg-k {
    position: fixed;
    height: 350px;
    width: fit-content;
    object-fit: contain;
    z-index: -1;
    right: 15%;
}

img.team-avatar {
    height: 150px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 40px;
}

.service-cont {
    background: var(--kgrey);
    padding: 3rem;
    text-align: center;
    border-radius: 50px;
}
img.service-logo {
    height: 150px;
    margin-bottom: 5%;
}

.port-cont {
    border-radius: 50px;
    position: relative;
    min-height: 400px;
    cursor: pointer;
    margin-bottom: 10px;
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

img.prot-logo {
    height: 100px;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 35%;
    width: 100%;
    left: 0;
}

.font-white {
    color: white;
    font-weight: bold;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 20%;
}

img.footer-logo {
    height: 100px;
    margin-bottom: 30px;
}

img.footer-bg {
    position: absolute;
    left: 0;
    height: 100%;
    top: 0px;
    opacity: 0.1;
}

.input-cont {
    width: 100%;
    display: inline-flex;
}

.form-control {
    border-radius: 12px;
    margin: 5px;    
    font-size: 13px;
}

button.submit-btn {
    margin: 5px;
    border-radius: 10px;
    width: 99%;
    padding: 6px 5px;
    background: var(--kyellow);
    border: none;
    color: var(--kblack);
    font-weight: bold;
}


.parallax-effect-container {
    height: 100%;
    overflow: hidden;
    display: block;
    background: black;
    position: relative;
    overflow: hidden;
  }
  .parallax-effect-content {
    /position: absolute;
    display: block;
    max-width: 100%;
    top: 50%;
    left: 0;
    padding: 16px;
    width: 100%;
    transform-style: flat;
    transform: translate3d(0,0%,0);
  }
  .parallax-effect-image {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-attachment: fixed;
    opacity: 1;
  }
  
  .text-center {
    text-align: center;
    font-size: 52px;
    margin-bottom: 22px;
    display: block;
    box-sizing: border-box;
    max-width: 100%;
  }
  