/**
* Template Name: Vesperr
* Updated: May 30 2023 with Bootstrap v5.3.0
* Template URL: https://bootstrapmade.com/vesperr-free-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 50vh;
    /* background: url("../img/hero-bg.jpg") top center; */
    background-size: cover;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    padding-top: 72px;
    position: relative;
    text-align: center;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: #eee;
    margin-bottom: 40px;
    font-size: 24px;
}

#hero .play-btn {
    width: 94px;
    height: 94px;
    margin: 0 auto;
    background: radial-gradient(#3498db 50%, rgba(0, 106, 192, 0.4) 52%);
    border-radius: 50%;
    display: block;
    overflow: hidden;
    position: relative;
}

#hero .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 3s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(0, 106, 192, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
    border-left: 15px solid #3498db;
    transform: scale(20);
}

#hero .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
  # Contact
--------------------------------------------------------------*/
#contact {
    padding-top: 60px !important;
}

#contact button {
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    background-image: -webkit-linear-gradient(30deg, #3498db 50%, transparent 50%);
    background-image: linear-gradient(30deg, #3498db 50%, transparent 50%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: 300ms ease-in-out;
}

#contact button:hover {
    background-position: 100%;
    color: #3498db;
}

#contact .bi-search {
    margin-left: 10px;
    transition: 200ms ease-in-out;
}

#contact button:hover .bi-search {
    margin-left: 15px;
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
    padding: 20px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f7fb;
}

.section-title {
    text-align: left;
    padding-bottom: 40px;
}

.section-title p {
    color: #707070;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 500;
    /* text-transform: uppercase; */
    position: relative;
    color: #57aae1;
}


.section-title h2::before {
    margin: 0 15px 10px 0;
}

.section-title h2::after {
    margin: 0 0 10px 15px;
}

.section-title p {
    margin: 15px 0 0 0;
}

.section-title a {
    color: #57aae1;
    text-decoration: underline;
}

.section-title a:hover {
    color: #21a4fc;
    text-decoration: underline;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    margin-top: 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta p {
    color: #fff;
}

.cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    background: #3498db;
    color: #fff;
    border-radius: 50px;
}

.cta .cta-btn:hover {
    background: #57aae1;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        /* display: flex;
      align-items: center;
      justify-content: flex-end; */
    }
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}


/*--------------------------------------------------------------
# search sertifikat
--------------------------------------------------------------*/
#search-sertifikat>div:nth-child(1) {
    padding: 0px 0px 0px 10px;
}

#search-sertifikat>div:nth-child(2) {
    padding: 0px 10px 0px 10px;
}
