
/********** Template CSS **********/
:root {
    --primary: #F0535B;
    --light: #F5F5F5;
    --dark: #8a8e8b;
}

.text-primary {
    color: var(--primary) !important;
}

.btn {
    border-radius: 0px;
}

.bg-dark {
    background-color: #28293e !important;
}

.bg-light {
    background-color: rgb(253, 240, 233) !important;
}

.service-card {
    background-color: rgb(253, 240, 233) !important;
}

.service-list-item {
    list-style-image: url('../img/haken.png');
    font-size: larger;
}

.tick-list {
    padding-right: 0;
}

.tick-text {
    padding-left: 0; 
    font-size: larger;
}

html, body { overflow-x: hidden;}

body {position: relative;}
/*** Present ***/
.present-circle-wrapper {
    display: flex;
    justify-content: center;
}

/* .present-circle {
    display: flex;
    justify-content: center;
} */

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--light);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Footer ***/
.footer {
    background: linear-gradient(rgba(40, 41, 62, .7), rgba(40, 41, 62, .7)), url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.portfolio-card {
    background-size: cover;
    cursor: pointer;

    &:hover {
        transform: scale(1.05);
    }
}

#portfolio-card-1 {
    background-image: url('../img/portfolio-hg-krauss-4-dark.png');
    background-position: -10px -1px;
}

#portfolio-card-2 {
    background-image: url('../img/portfolio-klepper-mb-dark.png');
    background-position: -1px 0;
}

#portfolio-card-3 {
    background-image: url('../img/portfolio-fitness-dark.png');
}

.blog-text {
    font-family: "Epilogue", "Epilogue Placeholder", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    overflow-wrap: break-word;

    h1, h2, h3, h4 {
        letter-spacing: -2.24px;
        font-weight: 800;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

.back-to-button {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 20px;
    
    i {
        margin-right: 5px;
    }
}

.portfolio-big-picture {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.portfolio-small-picture {
    width: calc(50% - 25px);
    border-radius: 20px;
}