* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

h2 {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: #2B388F;
}

.btn-custom {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: #EC2028;
    color: #fff;
    padding: 20px 40px 20px 40px;
}
.btn-custom:hover {
    color: #fff;
}


/*header start*/
#header {
    padding: 12px 0;
}
/*header end*/
/*gallery start*/
#gallery {
    padding: 100px 0 60px;
}
.single-img {
    border: 1px solid #EC2028;
    margin: 25px 0;
}
/*gallery end*/
/*reviews start*/
#reviews {
    padding-bottom: 60px;
}
.review-text {
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
    padding: 35px 35px 35px 35px;
    min-height: 200px;
    display: flex;
    align-items: center;
    transition: .3s;
}
.review-text:hover {
    box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.10);
    transition: .3s;
}
/*reviews end*/
/*contact start*/
#contact {
    padding: 60px 0;
}
#contact h6 a {
    font-size: 40px;
    color: #000;
}
#contact h6 a:hover {
    text-decoration: underline;
}
/*contact end*/
/*footer start*/
#footer {
    padding: 60px 0 20px;
    border-top: 1px solid #EDC9C9;
}
/*footer end*/

/*X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .btn-custom {
        font-size: 18px;
        padding: 12px 30px;
    }
    h2 {
        font-size: 22px;
    }
    #gallery,
    #reviews,
    #contact {
        padding: 40px 0;
    }
    #footer {
        padding: 40px 0 10px;
    }
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    #gallery,
    #reviews,
    #contact {
        padding: 50px 0;
    }
    .review-text {
        min-height: 250px;
        padding: 20px;
    }
}

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) { ... }

/*X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) { ... }

