/* Reviews */

#reviews {
    width: 100%;
    padding: 50px 0;
}

.review-row {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.review-column {
    flex-basis: 28%;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 5px 1px #c90000;
    cursor: pointer;
    transition: transform 0.5s;
}

.review-column p {
    font-size: 14px;
}

.user {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.user .fa-user {
    color: #002060; 
    font-size: 55px; 
    padding: 6px; 
    margin: 6px;
}

.user-info .fa{
    margin-left: 10px;
    color: #c90000;
    font-size: 20px;
}

.user-info small {
    color: #c90000;
}

.review-column:hover {
    transform: translateY(-10px);
}

.TitleHeading {
    text-align: center;
}

.TitleHeading p {
    margin: auto;
    font-size: 20px;
    color: #c90000;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: 'Kaushan Script', cursive;
}

.TitleHeading p::after {
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#c90000,white);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-right-radius: 35px;
    border-bottom-left-radius: 35px;
}

.TitleHeading h2 {
    font-size: 50px;
    font-family: 'Kaushan Script', cursive;
    color: #c90000;
}

.TitleH {
    color: #002060;
}

/* Media query for smaller screens */
@media screen and (max-width: 650px) {
    .review-row {
        display: block;
    }
}






/* Cookies consent */

.laravel-cookies-consent {
    border: 1px solid white;
    border-radius: 10px;
    background-color: rgb(201, 0, 0);
    position: fixed;
    right: 25px;
    z-index: 1;
    color: #FFFFFF;
    -webkit-animation-name: slide_to_top;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0s;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
}

.laravel-cookies-consent.slide_down {
    -webkit-animation-name: slide_to_bottom;
}

@-webkit-keyframes slide_to_top {
    0% {
        bottom: -800px;
    }
    100% {
        bottom: 25px;
    }
}

@-webkit-keyframes slide_to_bottom {
    0% {
        bottom: 25px;
    }
    100% {
        bottom: -800px;
        display: none;
    }
}

.laravel-cookies-consent .outer-wrapper {
    padding: 20px;
}

.laravel-cookies-consent .cookies-title {
    margin-top: 0;
}

.laravel-cookies-consent .cookies-text {
    color: lightgrey;
}

.laravel-cookies-consent .cookies-text a {
    color: #FFFFFF;
    font-weight: bold;
}

.laravel-cookies-consent .cookies-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 30px;
    height: 30px;
    font-size: 0;
}

.laravel-cookies-consent .cookies-close:before,
.laravel-cookies-consent .cookies-close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 10px;
    background-color: #F0F0F0;
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: top left;
    content: '';
}

.laravel-cookies-consent .cookies-close:after {
    transform: rotate(-45deg) translate(-50%, -50%);
}

.laravel-cookies-consent .consent-form-container {
    margin-top: 15px;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes {
    margin-bottom: 25px;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group label {
    font-size: small;
    letter-spacing: 1px;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group input:hover {
    cursor: pointer;
}

.laravel-cookies-consent .consent-form-container .consent-buttons {
    display: inline-block;
    width: 100%;
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit {
    height: 35px;
    color: #FFFFFF;
    border-radius: 35px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    border: 1px solid;
    width: 48%;
    font-size: small;
    text-decoration: none;
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit.hidden {
    display: none;
}

.laravel-cookies-consent .consent-form-container .consent-buttons a.consent-submit {
    padding-top: 7px;
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit:hover {
    cursor: pointer;
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit.consent-accept {
    background-color: white;
    color: rgb(201, 0, 0);
    border-color: white;
    float: left;
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit.consent-decline-all {
    background-color: transparent;
    border-color: #FFFFFF;
    float: right;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .laravel-cookies-consent {
        bottom: 10px;
        left: 5px;
        width: calc(100% - 10px);
    }

    .laravel-cookies-consent .outer-wrapper {
        padding: 10px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .laravel-cookies-consent {
        width: 75%;
    }

    .laravel-cookies-consent .outer-wrapper {
        padding: 15px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .laravel-cookies-consent {
        width: 55%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .laravel-cookies-consent {
        width: 420px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .laravel-cookies-consent {
        width: 420px;
    }
}
