@tailwind base;
@tailwind components;
@tailwind utilities;

.container {
    max-width: 1280px;
    margin: auto;
}

* {
    font-family: "Inter";
}

header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

header {
    display: flex;
    flex-direction: row-reverse;
}

.logo p:last-child {
    font-size: 10.95px;
}

.logo:hover .with-kerning {
    letter-spacing: 10px;
}

.with-kerning {
    transition: .2s;
}

#more-menu {
    box-shadow: 0px 4px 4px 0px #00000040;
}

.dropdown-item {
    font-family: "Barlow";
}

.dropdown-item:hover {
    color: #D82626;
    background-color: #dadada;
}

.with-kerning {
    font-size: 10px;
    letter-spacing: 5.5px;
}

nav ul {
    display: flex;
}

.highlighted-btn {
    background-color: #D82626;
    transition: .5s;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.highlighted-btn:hover {
    background-color: #E87070;
}

nav ul li {
    font-size: 23.28px;
}

nav ul li:not(:last-child) {
    transition: .3s;
}

nav ul li:not(:last-child):not(.dropdown):hover {
    background: #DFDFDF;
    transition: .3s;
}

nav ul li:last-child {
    color: white;
}

.banner {
    background:
        linear-gradient(rgba(255, 255, 255, 0.8),
            /* overlay color */
            rgba(255, 255, 255, 0.8)),
        var(--hero-url);
    background-size: cover;
    background-position: center;
    height: 644px;
}

.banner h1 {
    line-height: 80px;
}

.banner p {
    font-size: 24px;
}

#services-section {
    margin-top: 40px;
}

#services-section h1 {
    font-size: 48px;
    color: #000;
}

.service-header,
.service-image {
    height: 405px;
    width: 405px;
    overflow: hidden;
}

.service {
    width: 405px;
}


.service-image {
    width: 405px;
    height: 405px;
    background-size: cover;
    object-fit: cover;
    transition: .5s;
    z-index: 1;
}

.service-image:hover {
    transform: scale(1.09);
}

.service-body h2,
.service-body p {
    font-size: 24px;
}

.service-body p {
    color: #828282;
}

.flow-work p {
    color: #828282
}

#how-it-works {
    margin-bottom: 20px;
}