/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
/* Fonts */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('./assets/fonts/Lato/Lato-Regular.ttf') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('./assets/fonts/Roboto/Roboto-Medium.ttf') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('./assets/fonts/Roboto/Roboto-Bold.ttf') format('woff2');
    font-display: swap;
}

:root{
    /* colors */
    --white: rgb(246, 246, 234);
    --red: rgb(183, 17, 17);
    --black: rgb(28, 28, 28);
    --gray: rgba(28, 28, 28, 0.779);
}

body,html{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: var(--white);
    scroll-behavior: smooth;
    font-family: 'Lato', sans-serif;
}

/* Topography start */
.h1{
    font-size: 2.2rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
}
.h2{
    margin-top: 0;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 500;
}
.h3{
    margin-top: 0;
    margin-bottom: .5em;
    font-size: 1.3rem;
    font-weight: 500;

}
.h1,
.h2,
.h3{
   font-family: 'Roboto', sans-serif;
}
p{
    font-size: 1.15rem;
    line-height: 1.25;
}
@media (min-width: 576px) {
    .h1{
        font-size: 3rem;
    }
}
/* Topography end */
/* Utilities start*/
a{
    text-decoration: none;
    color: inherit;
}
.ul{
    margin: 0;
}
.li{
    font-size: 1.15rem;
    margin-bottom: .5rem;
}
.center{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.btn{
    padding: 1rem 2rem;
    text-transform: uppercase;
    border-radius: 10px;
    color: var(--white);
    border: .15rem solid transparent;
    -webkit-transition: border .5s;
    -o-transition: border .5s;
    transition: border .5s;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
/* Utilities end */
/* Hero section start */
#hero-section{
    height: 100dvh;
    /* Image by Steve Buissinne from Pixabay */
    background: -o-linear-gradient(45deg,rgba(0, 0, 0, 0.711),rgba(0, 0, 0, 0.848)), url(
        '/assets/img/hero-bg.webp');
    background: linear-gradient(45deg,rgba(0, 0, 0, 0.711),rgba(0, 0, 0, 0.848)), url(
        '/assets/img/hero-bg.webp');;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
    position: relative;
}
.hero-content{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
    text-align: center;
}
.btn-cta{
    background-color: var(--red);
    margin-top: 1.5rem;
}
.btn-cta:hover,
.btn-cta:focus,
.btn-cta:focus-within,
.btn-cta:focus-visible{
    border: .15rem solid orange;
    outline: none;
}
.see-more{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .5rem;
    position: absolute;
    left: 2rem;
    bottom: 1rem;
    color: var(--white);
}
.see-more-img{
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  
}
@media (min-width: 576px){
    .hero-content{
        width: 80%;
    }
    .btn-cta{
        font-size: 1.25rem;
    }
}
/* Hero section end */
/* Content sections start */
.section{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.section-content{
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50%;
    padding: 1rem 2rem 1rem 2rem;
}
.section-img{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    padding: 2.5rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.it-services-img{
    /* Image by StartupStockPhotos from Pixabay */
    background-image: url("./assets/img/it-section-bg.webp");
}
.tax-services-img{
        /* Image by Steve Buissinne from Pixabay */
    background-image:  url("./assets/img/taxes-section-bg.webp");
}
.payment-img{
    /* Image by Steve Buissinne from Pixabay */
    background-image:  url("./assets/img/payment-bg.webp"); 
}
.contact-img{
    /* Image by Tumisu from Pixabay */
    background-image:  url("./assets/img/contact-bg.webp"); 
}
.section-content.hidden{
    width: 95%;
    padding: 0;
    text-align: center;
    color: var(--white);
    padding: 2.5rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--gray);
    border-radius: 25px;
}
.section-content.hidden .li{
    text-align: left;
}
@media (min-width: 567px) {
    .section-content.hidden{
        width: 85%;
    }
}
@media (min-width: 768px) {
    .section-content{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .section-img{
        width: 50%;
    }
    .section-content.hidden{
        display: none;
    }
}
/* Content sections end */
/* Contact start */
.a-span{
    text-decoration: underline;
    letter-spacing: .04rem;
    color: var(--red);
}
/* Contact end */
/* Footer start */
.footer{
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
}
/* Footer end */.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: -o-linear-gradient(top, white, black);
    background: linear-gradient(to bottom, white, black);
}