@import url(header.css);
@import url(hero.css);
@import url(about.css);
@import url(services.css);
@import url(testimonials.css);
@import url(contact.css);
@import url(footer.css);
@import url(advise.css);
@import url(modal.css);
@import url(billing.css);
@import url(container.css);

:root{
    --primaryColor: #0A4F5A;
    --primaryColorLight: #1A646E;
    --accentColor: #D7BA80;
    --acentColorDark: #B2914F;
    --black: #111111;
    --white: #ffffff;
    --grey: #bdbdbd;
    --darkGrey: #757575;
    --ligthGrey: #f5f5f5;
    --green: #7cbc9a;     
    --titleSize: 3rem;
    --subtitleSize : 2.3rem;
    --mediumSize: 1.8rem;
    --textSize: 1.3rem;
    --smallText: 1rem;
    --tinyText: 0.9rem
}

@font-face {
	font-family: 'Avanta';
    src: url('../fonts/ITCAvantGardeStd-Md.ttf');
}
@font-face {
	font-family: 'Avanta_Bold';
    src: url('../fonts/ITCAvantGardeStd-Bold.ttf');
}
html{
    scroll-behavior: smooth;
}
body{
    position: relative;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Avanta";

}

h1,h2,h3,h4,h5,h6{
    text-align: center;
    font-family: "Avanta_Bold";
}
a{
    text-decoration: none;
    transition: all ease .5s;
}
.myBtn{
    padding: 1rem 1.5rem !important;
    background-color: var(--primaryColorLight) !important;
    color: var(--white);
    border-radius: 5px;
    letter-spacing: 1px;
    font-size: var(--textSize);
    transition: all ease .5s;
    outline: none;
    border: none;
    cursor: pointer;
}
.myBtn.small{
    padding: 0.8rem 1rem !important;
    font-size: var(--smallText);
    width: 100px;
}
.myBtn:hover{
    background-color: var(--primaryColor) !important;
}
.myBtn.modaal-close{
    position: relative !important;
    width: 200px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.myBtn.modaal-close::after{
    display: none !important;
}
.myBtn.modaal-close::before{
    display: none !important;
}
.button-whats{
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 55px;
    height: 55px;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    font-size: var(--subtitleSize);
    animation: btnWhats 1s infinite linear alternate;
    transition: all ease .5s;
}
.hide{
    display: none !important;
}
@keyframes btnWhats {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.1);
    }
}

.button-whats:hover{
    background-color: var(--primaryColorLight);
}
label{
    color: var(--accentColor);
    letter-spacing: 1px;
    font-size: var(--smallText);
}
@media (max-width: 600px) {
    h2{
       font-size:  var(--mediumSize) !important;
    }
    h2 span{
        font-size:  var(--mediumSize);
    }
}