html {
    scroll-behavior: smooth;
  }

@font-face {
    font-family: garamond;
    src:url(../fonts/EBGaramond-Italic-VariableFont_wght.ttf);
    font-style: italic;
}

div
{
    font-family: garamond;  
}

.header-contact
{
    background-color: #DAE0E5;
    font-size: 1.2em;
    text-align: center;
}

.header-contact p
{
    margin: 0 auto;
}

.header-contact p span
{
    padding: 0 0.5em 0 0 
}

.navbar 
{
    font-size: 1.5rem;;
}

.main-logo img
{
    display: block;
    margin: 0 auto;
    height: 15em;
}

.landing .row .col img:first-of-type 
{
    padding: 0 0 2em 0;
}

.right-big 
{
    width: 42em;
}

.main-title
{
    text-align: center;
    font-size: 2rem;
    padding: 1em;
}

.introduction 
{
    font-size: 1.7em;
    text-align: justify;
}

.services .row:nth-child(3)
{
    padding: 2em 0 0 0;
}

.services .card 
{
    box-shadow: 10px 10px lightgrey;
    height: 495px;
}


.services .flip-card {
    perspective: 1000px;
    height: 495px;
    width: 18rem;
    margin-bottom: 20px;
}

.services .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
}

.flip-card-front {
    background-color: #f8f9fa;
    color: #000;
}


.flip-card-back {
    transform: rotateY(180deg);
}



.card-img-top {
    max-height: 495px;
    object-fit: cover;
}

.prices tr.empty td
{
    background-color: #f8f9fa;
}

.prices tr td:last-child
{
    font-weight: 600;
}

.prices th, tr td 
{
    font-size: 1.3em;
    border: none;
    background-color: #f8f9fa
}

.prices tr td:nth-child(2)
{
    padding-left: 1em;
    border-left: 1px solid black;
}


.prices tr.highlight,
.prices th.highlight
{
    height: 4em;
    font-size: 1.6em;
    font-weight: bold;
    vertical-align: middle;
}

.prices tr.highlight td
{
    background-color: antiquewhite;
}

.prices td.intend
{
    text-indent: 30px;
}

.contact .row .col img 
{
    width: 50%;
}

.contact .row .col
{
    padding: 1em 0 0 10em;
}

.contact .row:last-child 
{
    padding: 2em 0 2em 0;
    width: 80em;
    text-align: center;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
  }

