@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
}

body {
    font-family: 'Poppins-Light';
    background-color: #26235a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins-Bold';
}

b {
    font-family: 'Poppins-Bold';
}

.yellow-border {
    border: 5px solid #ffd503;
    max-width: 130px;
    width: 100%;
    margin: 30px auto;
}

.next-scroll {
    width: 20px;
}

@media (min-width: 768px) {
    .next-scroll {
        width: auto;
    }
}

/** top navigation **/
@media (min-width: 768px) {
    #mainNav .nav-container {
        border-bottom: 2px solid #ffd503;
    }
}

#mainNav .navbar-nav .nav-item {
    border-right: 1px solid #fff;
    margin-right: 0;
    margin-left: 0;
    padding-right: 1rem;
    padding-left: 1rem;
}

#mainNav .navbar-nav .nav-item:first-child {
    padding-left: 0;
}

#mainNav .navbar-nav .nav-item:last-child {
    border-right: 0;
    padding-right: 0;
}

#mainNav .navbar-nav .nav-item .nav-link {
    padding: 0;
    text-transform: uppercase;
    line-height: 12px;
}

#mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #ffd503;
    text-shadow: none;
}

#mainNav .navbar-toggler {
    background: #ffd503;
}

#mainNav.navbar {
    background: #26235a;
    border-bottom: 2px solid #ffd503;
}

#mainNav .navbar-collapse.show .navbar-nav .nav-item {
    padding: 0px;
    border-right: 0;
}

#mainNav .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    padding: 10px;
}

#mainNav .navbar-collapse.show .navbar-nav .nav-item .nav-link::before {
    content: '> ';
    color: #ffd503;
}

/** footer **/
.footer {
    background-color: #fff;
    color: #26235a;
}

/** header **/
@media (min-width: 768px) {
    header.masthead {
        height: 100vh;
    }
}

/** about us **/
@media (max-width: 767.98px) {
    .about-us .img-logo {
        width: 200px;
    }

    .about-us .yellow-border {
        border: 2px solid #ffd503;
        margin: 20px auto;
    }
}


/** services **/
.services {
    background-color: #fff;
    padding: 0;
}

.services .services-section {
    padding: 2rem 5rem;
}

@media (min-width: 768px) {
    .services .services-section {
        padding: 8rem 5rem;
    }
}

.services .bg-yellow {
    background-color: #ffd503;
}

.services .card {
    border: 0;
}

.services .card .card-body {
    text-align: center;
}

.services .card .card-img-top {
    width: 80%;
}

.services .card .card-title {
    font-family: 'Poppins-Bold';
    background-color: #ffd503;
    color: #26235a;
    border-radius: 25px;
    margin-top: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
}

@media (max-width: 767.98px) {
    .services .card .card-title {
        font-size: 13px;
    }

}

/** portfolio **/
.portfolio {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .portfolio {
        padding: 10rem 0;
    }
}

.portfolio .card {
    background-color: transparent;
    border: 3px solid #ffd503;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio .card .card-body {
    padding: 0;
}

.portfolio .card .card-body .card-details {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in;
}

.portfolio .card .card-body .card-details:hover {
    background: rgba(0, 0, 0, 0.8);
}

.portfolio .card .card-title {
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .portfolio .card .card-title {
        font-size: 13px;
    }

    .portfolio .card .card-text {
        font-size: 13px;
    }
}

.portfolio .card .card-title::after {
    content: '';
    display: block;
    width: 85px;
    border-bottom: 3px solid #ffd503;
    margin: 0 auto;
    padding-top: 5px;
    transition: 0.3s ease-in;
}

.portfolio .card .card-body .card-details:hover .card-title::after {
    width: 100px;
}


.portfolio .card a {
    text-decoration: none;
}



/** contact us **/
.contact-us {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 150px auto;
    background-position: bottom right;
    background-color: #fff;
    padding: 0;
}

@media (min-width: 768px) {
    background-size: auto;
}

.contact-us h3.section-title {
    color: #ffd503;
    font-size: 3rem;
}

@media (min-width: 768px) {
    .contact-us .contact-us-section {
        padding: 8rem 5rem;
    }

    .contact-us h3.section-title {
        font-size: 6rem;
    }
}



.contact-us p {
    color: #26235a;
}
