/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 16 nov. 2020, 22:54:15
    Author     : natachaar
*/

body {
    font-family: 'Verdana';
    font-size: 0.9rem;
}

.logo{
    width: 200px
}

.header {
    background-image: url(../img/header.jpg);
    /*background: url(../img/header.jpg) no-repeat center;*/
    background-size: cover;
}
.header .navbar {
    background-color: transparent !important;
}
.btn-yellow {
    color: #fff;
    background-color: #DA9500;
    border-color: #DA9500;
}
.btn-yellow:hover {
    color: #fff;
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-blue {
    color: #fff;
    background-color: #146FAB;
    border-color: #146FAB;
}

.btn-blue:hover {
    color: #fff;
    background-color: #0077BB;
    border-color: #0077BB;
}

#section1{
    background-image: url(../img/section1.jpg);
    /*background: url(../img/section1.jpg) no-repeat center;*/
    background-size: cover;
}
#section1 h5{
    color: #00003F;
    font-weight: bold;
}
#section1-1 h5, h6{
    color: #00003F;
    font-weight: bold;
}
#section2 h5{
    color: #00003F;
    font-weight: bold;
}
#section3{
    background-color: #868589;
}
#section3 h5{
    color: #fff;
    font-weight: bold;
}
#section4 h5, h6{
    color: #00003F;
    font-weight: bold;
}
#section5{
    background: url(../../../assets/img/contact.jpg) no-repeat center;
    background-size: cover;
}
#section6 h5{
    color: #00003F;
    font-weight: bold;
}
.bg-gray {
    background: #EDEDEF;
}
.vr {
    width:1px;
    background-color:#868589;
    position:absolute;
    top:0;
    bottom:0;
}

.rombo {
    z-index: 9999;
    position: absolute;
    left: 100px;
    top: 196px;
    border-radius: 0.2rem;
    width: 50px; 
    height: 50px; 
    border-bottom: 1px solid rgba(0,0,0,.125);
    background: #fff;
    transform: rotate(45deg);
}

.text-dark-blue{
    color: #00003F !important;
}

.btn-dark-blue{
    color: #fff;
    background-color: #00003F;
    border-color: #00003F;
}

.btn-dark-blue:hover{
    color: #fff;
    background-color: #00003F;
    border-color: #00003F;
}

.error{
    color:red;
}

.bg-dark-blue{
    background: #00003F;
}

.br-1{
    border-radius: 1rem;
}
.br-2{
    border-radius: 2rem;
}

.card-img-height{
    height: 264px !important;
}
.h-150{
    height: 150px !important;
}
.w-32{
    width: 32px !important
}

.text-blue{
    color: #00003F;
    font-weight: bold;
}

.bg-img{
    background-image: url(../img/bg-login.jpg);
}

.course-thumbnail {
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    position: relative;
    border-radius: 8px;
}

.course-thumbnail .play-button-trigger {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../images/icon-play.svg) no-repeat;
    background-size: auto 50%;
    background-position: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 150ms ease-in-out;
    -moz-transition: opacity 150ms ease-in-out;
    -ms-transition: opacity 150ms ease-in-out;
    -o-transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
    -webkit-transition: -webkit-transform 150ms ease-in-out;
    -moz-transition: -moz-transform 150ms ease-in-out;
    -o-transition: -o-transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out;
}

.course-thumbnail:hover .play-button-trigger,
.play-button-trigger.show {
    cursor: pointer;
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}