@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

*,
::after,
::before {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Montserrat', sans-serif;
}

a {
    color: inherit !important;
    text-decoration: none !important;
}

a:hover {
    color: inherit !important;
    text-decoration: none !important;
}

h3,
h4,
h5,
h6 {
    font-weight: 700;
}

#icon {
    width: 1.688rem;
    height: 0.563rem;
    background: linear-gradient(96.34deg, #e537b9 0%, #c040df 100%);
    border-radius: 4.5px;
}

.btn-link {
    width: 100%;
    position: relative;
    text-align: left;
    opacity: 0.7;
}
    
.btn-link::before {
    content: "\f107";
    color: #737373;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    font-family: "FontAwesome";
    font-size: 1.1rem;
    /* margin-right: 10px; */
} 

.btn-link[aria-expanded="true"]::before {
    content: "\f106";
    color: #737373;
}
    
.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: unset;
}
    
.navbar-brand {
    letter-spacing: 2px;
    word-spacing: 2px;
    font-size: 24px;
    font-weight: bold;
}

.btn-link {
    font-weight: bold;
    color: unset;
    text-decoration: none;
}
    
.btn-link:hover {
    font-weight: bold;
    color: unset;
    text-decoration: none;
}
    
.card-header {
    padding: 0;
    background-color: unset;
    border-bottom: none;
}
    /* .carousel-inner {
    padding: 10px;
    } */
.card-title {
    /* margin-bottom: o; */
    margin-top: 10px;
}
    /* xs */
.carousel-img {
    width: 100%;
    height: auto;
}

    
.btn-link:focus {
    box-shadow: none;
    text-decoration: none;
}
    
.btn {
    display: flex;
    padding: 0px;
    text-align: start;
    /*padding-bottom: 20px;*/ 
    border: none;
    margin: 10px;
    padding-left: 18px;
}
    
.card {
    background-color: unset;
    background-clip: unset;
    border: none;
}
    

img:hover {
    filter: brightness(50%);
    transition: transform 0.6s;
    transform: scale(1.01);
}
    
#c_link {
    text-decoration: none;
    color: black;
}

.carousel-control-prev{
    position: absolute;
    width: 18px;
    height: auto;
    top: 0px;
    left: -27px;
    background: #eff2f6;
    border-radius: 10px;   
    color: #000; 
    
}

.carousel-control-next{
    position: absolute;
    width: 18px;
    height: auto;
    top: 0px;
    right: -27px;
    background: #eff2f6;
    border-radius: 10px;
}

.fa-angle-left {
    content: "\f104";
    color: black;
    font-family: "FontAwesome";
    font-size: 2rem;
    display: block;
    
}

.fa-angle-right {
    content: "\f105";
    color: black;
    font-family: "FontAwesome";
    font-size: 2rem;
    display: block;
}



/****** MEDIA QUERIES **********/

    /* sm */
    @media (min-width: 768px) {
        .carousel-img {
            width: 100%;
            height: 400px;
        }
        
    }

    /* carousel buttons */
    @media (max-width: 600px){
        .carousel-control-prev{
            height: 25px;
            background: #000;
            top: 50%;
        }
        .carousel-control-next{
            height: 25px;
            background: #000;
            top: 50%;
        }
        .fa-angle-left {
            color: #fff;
        }
        .fa-angle-right {
            color: #fff;
        }
    }

        /* md */
    @media (min-width: 992px) {
        .carousel-img {
            width: 100%;
            height: 400px;
        }
    }
        /* lg */
    @media (min-width: 1200px) {
        .carousel-img {
            width: 100%;
            height: 400px;
        }
    }