body {
    font-family: 'Poppins', sans-serif;
    background: #F8FAFC;
}

main {
    margin-top: 70vh;
}

.navbar {
    padding: 14px;
    margin: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
}

.logo {
    height: 36px;
    width: auto;
}

#background-video {
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
	
  min-width: 100%; 
  min-height: 100%; 
  max-height: 100%; 
  
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;
  
  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}


.btn-blue {
    background: linear-gradient(122.53deg, #4B7BEC -9.75%, #3FA9F5 64.12%);
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-out;
}

.btn-blue:before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    background: linear-gradient(122.53deg, #b9b9b9 -9.75%, #525252 64.12%);
    border-radius: 6px;
    color: #fff;
}

.btn-blue:hover:before {
    opacity: 1;
}

.navbar-nav {
    align-items: center;
}

.navbar-light .navbar-nav .nav-item {
    padding: 0 7px;
    margin: auto 8px;
    transition: all .1s ease-in-out;
}

.navbar-light .navbar-nav .nav-item:last-child {
    padding-right: 0;
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: #000;
    padding: 5px 0;
}

.navbar-light .navbar-nav .nav-link.btn-blue {
    padding: 10px 20px;
    color: #fff;
}

.navbar-light .navbar-nav .nav-item.active, .navbar-light .navbar-nav .nav-item:hover {
    border-bottom: 3px solid #40A9F5;
}

.navbar-light .navbar-nav .nav-item.contact {
    border: none;
}


h1 {
    text-align: center;
    font-size: 50px;
    line-height: 75px;
    font-weight: 600;
    margin: 50px auto;
}

h1.blue {
    background: linear-gradient(122.53deg, #4B7BEC -9.75%, #3FA9F5 64.12%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.value-proposition {
    padding: 39px;
    padding-top: 50px;
    background: linear-gradient(122.53deg, #4B7BEC -9.75%, #3FA9F5 64.12%);
    border-radius: 24px;
}

.value-proposition-header {
    text-align: center;
    background-image: url(../images/blue-block-header-lines.svg);
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: top center;
    min-height: 100px;
}

.value-proposition-footer {
    margin-top: 10px;
    text-align: center;
    background-image: url(../images/blue-block-footer-lines.svg);
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: top center;
    min-height: 160px;
}


.value-proposition .header-icon {
    margin-top: -20px;
}

.value-proposition-body {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.value-proposition-body .box {
    width: 30%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 14.2762px 28.5523px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.value-proposition-body .box h3 {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 10px;
}

.value-proposition-body .title {
    text-align: center;
}

.value-proposition-body .box ul {
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
}

.value-proposition-body .box ul li {
    list-style: disc;
}

.value-proposition-bottom h2 {
    margin: 10px auto 20px;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    color: #fff;
    text-align: center;
}

.value-proposition-bottom .box-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.value-proposition-bottom .box-list .list-item {
    width: 30%;
    background-color: #fff;
    box-shadow: 0px 14.2762px 28.5523px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.system-block {
    margin-top: 200px;
    background: linear-gradient(125.17deg, #4B7BEC -9.37%, #3FA9F5 61.61%);
    border-radius: 24px;
    padding: 100px;
    position: relative;
}

.system-block:after {
    content: '';
    position: absolute;
    background-image: url(../images/wadmin-bg-logo.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom 0px;
    width: 50%;
    height:50%;
    bottom: 0;
    left: 0;
}

.system-block h1 {
    color: #fff;
    margin: 0;
    padding: 0;
    margin-bottom: 70px;
}

.system-block-body {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.system-block-body .list {
    width: calc(50% - 50px);
}

.system-block-body .list .item {
    background: rgba(255, 255, 255, .7);
    box-shadow: 0px 14.2762px 28.5523px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    position: relative;
}

.system-block-body .list .item:hover, .system-block-body .list .item.active {
    cursor: pointer;
    background: rgba(255, 255, 255, 1);
}

.system-block-body .list .item.active:after {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: -65px;
    content: '';
    background: url(../images/icon-arrow-right.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}

.system-block-body .list .item .title {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

.system-block-body .list .item span {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

.system-block-body .preview {
    width: calc(50% - 50px);
    text-align: right;
}

.system-block-body .preview img {
    vertical-align: top !important;
    width: auto;
    max-width: 100%;
    height: 200px;
}


.contact-block {
    z-index: 1;
    margin-top: 200px;
    position: relative;
    margin-bottom: 200px;
}

.contact-block h1 {
    background: linear-gradient(122.53deg, #4B7BEC -9.75%, #3FA9F5 64.12%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: 0;
    padding: 0;
    margin-bottom: 70px;
}

.contact-box {
    display: block;
    margin:auto;
    padding: 30px;
    max-width: 660px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 14.2762px 28.5523px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    position: relative;
    z-index: 2;
    appearance: none;
}

.contact-box:after {
    content: '';
    left: -272px;
    top: 57px;
    position: absolute;
    background-image: url(../images/contact-hello.png);
    background-size: cover;
    width: 271px;
    height: 452px;
    z-index: -1;
}

.contact-box .form-group {
    margin-bottom: 15px;
}

.contact-box .form-control {
    padding: 18px 22px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #8E8E8E;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
}

.btn-send {
    padding: 10px;
    border: none;
    width: 100%;
    background: linear-gradient(122.53deg, #4B7BEC -9.75%, #3FA9F5 64.12%);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-out;
}

.btn-send:before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    background: linear-gradient(122.53deg, #b9b9b9 -9.75%, #525252 64.12%);
    border-radius: 6px;
    color: #fff;
}

.btn-send:hover:before {
    opacity: 1;
}

footer {
    margin: 2rem;
    background: linear-gradient(122.53deg, #4B7BEC -9.75%, #3FA9F5 64.12%);
    border-radius: 24px;
    padding: 90px 30px 90px 70px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

footer .row {
    align-items: center;
}

footer .list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    color: #fff;
}

footer .list a {
    padding-bottom: 15px;
    text-decoration: none;
    color: #fff;
}


.mission-block-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 30px;
}

.mission-block-body .mission-box {
    margin: 10px;
    display: flex;
    width: calc(50% - 20px);
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 10px;
    height: 80px;
    background: #FFFFFF;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.mission-box .icon-check {
    content: '';
    background: url(../images/icon-check-blue.svg);
    width: 25px;
    height: 17px;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.reference-block-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 30px;
}

.reference-block-body .reference-box {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    color: #fff;
    margin: 10px;
    padding: 40px;
    width: calc(25% - 20px);
    background-color: #4C7CED;
    box-shadow: 0px 14.276150703430176px 28.55230140686035px 0px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
}

.reference-block-body .reference-box:hover {
    background-color: #3a6dbb;
}

.reference-block-body .reference-box img {
    max-width: 100%;
    max-height: 58px;
    width: auto;
    height: auto;
}

.reference-block-body .reference-box.wide {
    width: calc(50% - 20px);
}

.reference-block-body .reference-box span {
    margin-top: 20px;
}

.functions {
    padding: 39px;
    padding-top: 50px;
}

.functions-header {
    min-height: 100px;
    display: flex;
    justify-content: center;
}

.functions-footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}


.functions .header-icon {
    margin-top: -20px;
}

.functions-body {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.functions-body .functions-box {
    margin: 10px;
    display: flex;
    width: calc(33% - 20px);
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 30px;
    gap: 10px;
    height: 130px;
    background: #FFFFFF;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.functions-box .icon-check {
    content: '';
    background: url(../images/icon-check-blue.svg);
    width: 35px;
    height: 17px;
    background-repeat: no-repeat;
    margin-right: 0px;
}

.functions-box  span {
    width: calc(100% - 30px);
}


@media only screen and (max-width: 991px) {

    .functions {
        margin-top: 70vh;
    }

    .functions-header, .functions-footer {
        display: none;
    }

    .functions-body {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-around;
    }

    .functions-body .functions-box {
        width: 100%;
        margin: 10px 0;
    }

    .mission-block-body {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .mission-block-body .mission-box {
        width: 100%;
        margin: 10px 0;
    }

    .reference-block-body {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .reference-block-body .reference-box {
        width: 100%;
    }

    .reference-block-body .reference-box.wide {
        width: 100%;
    }

    #background-video {
        height: 70vh;
    }

    main {
        margin-top: 50%;
    }

    h1 {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 70px;
    }

	#value-proposition {
		background: #f8fafc;
		z-index: 999;
		position: relative;
	}
	
    .value-proposition-body {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .value-proposition-body .box {
        width: 100%;
        margin-bottom: 30px;
    }

    .value-proposition-header, .value-proposition-footer {
        background: none;
    }

    .value-proposition-footer, .value-proposition-header {
        min-height: auto;
    }

    .value-proposition-bottom .box-list {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .value-proposition-bottom .box-list .list-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .system-block {
        padding: 20px;
        margin-top: 80px;
    }

    .system-block-body {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .system-block-body .list, .system-block-body .preview {
        width: 100%;
		
    }

    .system-block-body .list .item.active:after {
        display: none;
    }

    .system-block-body .list {
        order: 1;
    }

    .system-block-body .preview {
        text-align: center;
        margin-bottom: 30px;
        order: 0;
height: 340px;
    }

    .contact-block h1 {
        line-height: 48px;
    }

    .contact-block {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    footer {
        margin-top: 80px;
        padding: 30px 10px;
    }

    footer img {
        width: 100%;
        margin-bottom: 30px;
    }

    footer .text-end {
        text-align: center !important;
    }

    .navbar-light .navbar-nav .nav-item {
        margin-bottom: 10px;
    }
}

#bgp {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 65%;
    margin-bottom: 27px;
}
#bgp:after {
	/*
    display: block;
    content: " ";
    background: rgba(0,0,0,0.25);
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: -1;
    right: 0;
    height: 100%;
/*	background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248,250,252,0.04805672268907568) 22%, rgba(239,244,249,0.165703781512605) 90%, rgba(239,244,249,0.2413340336134454) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248,250,252,0.04805672268907568) 22%, rgba(239,244,249,0.165703781512605) 90%, rgba(239,244,249,0.2413340336134454) 100%);
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248,250,252,0.04805672268907568) 22%, rgba(239,244,249,0.165703781512605) 90%, rgba(239,244,249,0.2413340336134454) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#eff4f9",GradientType=1);*/
}