@charset "utf-8";

@font-face {
    font-family: "UTMEssendineCapsBold";
    font-weight: 400;
    font-style: normal;
    src: url("fonts/UTMEssendineCapsBold.ttf");
}

:root {
    --d-transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    --fz-12: 9px ;
    --fz-16: 12px ;
    --fz-24: 14px ;
}
@media (min-width:768px) {

}
@media (min-width:1200px) {
    :root {
        --fz-24: 1.25vw;
    }
}
@media (min-width:1601px) {
    :root {
        --fz-12: 0.625vw ;
        --fz-16: 0.8333333333333333vw;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.img-fluid{max-width:100%; height:auto;}
.w-100{width:100%;}

body {
    background-color: #f2f2f2;
    color: #1a1718;
    font-family: "Montserrat", serif;
    font-size: var(--fz-16);
}

.container{
    width:100%;
    padding-left:0.75em;
    padding-right:0.75em;
    margin: auto;
}
@media(min-width:1200px){
    .container{
        padding-left:15vw;
        padding-right:15vw;
    }
}

.header {
    background-color: #8A1F1A;
    text-align: center;
    padding: 6vw 0 6vw;
}

.header .logo {

    width:40vw;
    min-width: 300px;
    margin: 0 auto;
}

.services {
    display: flex;
    justify-content: center;
    padding: 0 0 2em;
}

.service-box {
    text-align: center;
    margin: 0 1em;
    background-color: #fff;
    padding: 3vw 0vw 1.5vw;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex:1;
    transition: var(--d-transition);
    text-decoration: none;
}
.service-box:hover{
    background:#f1f1f1;
}

.service-box .thumb{
    padding: 0vw 2vw ;
	flex-grow: 1;
    display: inline-flex;


}
.service-box img {

}
.service-box h2{
    margin-top: auto;
    padding: 0px 0.2rem;
    padding-top: 1rem;

    border-top: solid 1px #cacaca;
    text-decoration: none;
    font-size: var(--fz-16);
    font-style: italic;
    font-weight: 400;
    color: rgba(3,8,8,0.77);
    margin: auto 0 0;
    text-align: center;
}
.service-box h2 span{display:inline-block}

quotes{}


.footer {
    background-color: #ffffff;
    text-align: center;
    padding: calc(var(--fz-24) * 1.8) 0 ;
    color: #333;

}
@media(min-width:1921px){

}

.footer p {
    margin: 5px 0;
}
.footer a{
    color: #333;
    text-decoration:none;
}
.footer a:hover{color:#8A1F1A;}

.footer .copyright {
    margin-top: 1em;
}
.footer .footer-bottom{margin-top: 3rem; font-size: var(--fz-12); font-style: italic; text-align: center; color: #929393}

.footer p.fw-bold{font-weight: 700; margin-bottom: 1em;}


.service-items{
    display: flex;
    justify-content: center;
    margin-top: -3vw;

}
.quotes{
    padding: 2em 2em 0;
    color: #575757;
    font-size: var(--fz-24);
    line-height: 1.8;
}
.quotes q{
    padding: 0px 4em;
    display: block;
    position: relative;
    font-style: italic;
    font-weight: 500;
    text-align: center;
}
.quotes q:after{display: none;}
.quotes q:before{font-size: calc(10 * var(--fz-24)); font-family: 'UTMEssendineCapsBold'; color: #ACACAC;
    position: absolute;
    left: 0;
    top: -0.12em;
    line-height: 1;
    font-style: normal;
    font-weight: 400;
    content: '"';
}
@media(max-width:1399px){
    .service-box h2{font-size: 13px;}
}
@media(max-width:991px){
    .service-box h2 {
        font-size: 12px;
    }
    .quotes q{padding-right: 0}
    .service-items .service-box{
        margin: 0 0.5em;
    }
}

@media(max-width:767px){

    .header{
        padding: 12vh 0;
    }
    .service-items{
        margin-top: -4vh;
		flex-wrap: wrap;
        gap: 1rem;
    }
    .service-items .service-box{
		flex: 0 0 calc(50% - 1rem);
        margin: 0;
    }
    .service-box h2{font-size: 12px; padding-top: 2vw;}
    .quotes{
        padding: 2em 1em 0;
    }
    .quotes q{
        padding-left: 1.6em;
    }
    .quotes q:before{
        font-size: calc(5* var(--fz-24));
    }
}
@media(max-width:380px){
     .service-box h2{}
}