
:root {
  --bg-main: #F7F7F7;
  --bg-section: #E5E5E5;
  --primary: #ff6b00;
  --primary-dark: #CC5500;
  --accent: #FFA94D;

  --text-main: #222;
  --text-light: #666;
  --white: #FFFFFF;


    scrollbar-color: var(--primary) var(--text-light);
}

.bg-color {color: var(--bg-main); background-color: var(--bg-main);}
.bg-section {color: var(--bg-section); background-color: var(--bg-section);}
.primary-color {color: var(--primary);}
.primary-color-dark {color: var(--primary-dark);}
.text-primary {color: var(--text-main);}
.text-light {color: var(--text-light);}
.accent {color: var(--accent);}
.text-white {color: var(--white);}
.text-shadow {
    text-shadow: 3px 3px 3px rgba(0,0,0,.5);
}
.box-shadow {
    box-shadow: 3px 3px 3px rgba(0,0,0,.5);
}
accent {
    color: var(--accent);
}

body {
    margin: 0;
    font-family: Inter,sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.margin-bottom {
    margin-bottom: 10rem;
}
.margin-bottom-less {
    margin-bottom: 5rem;
}
.header {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    /* zoom: 125%; */
    z-index: -99;
    background-color: #000;
    top: 0;
}
.bg img {
    width: 100% !important;
    height: 100vh !important;
    object-fit: cover;
    filter: blur(5px) brightness(0.60);
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 5rem 3rem;
}
.gap-big {
    gap: 10rem;
}
.gap-small {
    gap: 5rem;
}
.services {
    gap: 10rem;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.horizontal {
    display: flex;
    flex-direction: row;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
}
p {
    margin: 0;
    text-align: center;
}
h1, h2, h3, h4, h5, h6 {margin: 0; text-align: center;}
h1 {font-size: 3.5rem;}
h2 {font-size: 3rem;}
h3 {font-size: 2.5rem;}
h4 {font-size: 2rem;}
h5 {font-size: 1.5rem;}
h6 {font-size: 1rem;}
p {font-size: 1rem;}

.small-heading {
    font-size: 1.5rem;
}
.medium-heading {
    font-size: 1.75rem;
}

.big-heading {
    font-size: 2rem;
}

.inf-icon {
    width: 2.5rem;
    height: 2.5rem;
    /* filter: invert(33%) sepia(93%) saturate(477%) hue-rotate(158deg) brightness(93%) contrast(87%); */
    filter: invert(43%) sepia(99%) saturate(2137%) hue-rotate(1deg) brightness(103%) contrast(103%);
}

.round {
    border-radius: 25px;
}

@media (max-width: 768px) {
    h1 {font-size: 1.5rem;}
    h2 {font-size: 1rem;}
    h3 {font-size: 1rem;}
    h4 {font-size: 0.6rem;}
    h5 {font-size: 0.5rem;}
    h6 {font-size: 0.5rem;}
    p {font-size: 0.5rem;}

    .small-heading {
        font-size: 0.7rem;
    }
    .medium-heading {
        font-size: 1rem;
    }
    .big-heading {
        font-size: 1rem;
    }

    .section {
        padding: 1rem 2rem 1rem;
    }
    .gap-big {
        gap: 5rem;
    }
    .gap-small {
        gap: 2.5rem;
    }
    .margin-bottom {
    margin-bottom: 5rem;
    }
    .margin-bottom-less {
        margin-bottom: 2.5rem;
    }
    .services {
        gap: 1rem;
        flex-direction: column;
    }
    .service {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}
