@font-face {
    font-family: 'poppins';
    font-style: normal;
    font-weight: 500;      /* Adjust for medium weight */
    src: url('assets/fonts/poppins/poppins-medium-webfont.eot'); /* Assuming font is in a 'fonts' folder */
    src: url('assets/fonts/poppins/poppins-medium-webfont.eot?#iefix') format('embedded-opentype'),
    url('assets/fonts/poppins/poppins-medium-webfont.woff2') format('woff2'),
    url('assets/fonts/poppins/poppins-medium-webfont.woff') format('woff'),
    url('assets/fonts/poppins/poppins-medium-webfont.ttf') format('truetype');
}

@font-face {
    font-family: 'default';
    src: url('assets/fonts/helvetica-bold/HelveticaNeueLTGEO-75Bold.eot');
    src: url('assets/fonts/helvetica-bold/HelveticaNeueLTGEO-75Bold.eot?#iefix') format('embedded-opentype'),
    url('assets/fonts/helvetica-bold/HelveticaNeueLTGEO-75Bold.woff2') format('woff2'),
    url('assets/fonts/helvetica-bold/HelveticaNeueLTGEO-75Bold.woff') format('woff'),
    url('assets/fonts/helvetica-bold/HelveticaNeueLTGEO-75Bold.ttf') format('truetype'),
    url('assets/fonts/helvetica-bold/HelveticaNeueLTGEO-75Bold.svg#HelveticaNeueLTGEO-75Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


* {
    font-family: "default", sans-serif !important;
}

body {
    margin: 0;
    background-color: #ECEEF6;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
}

.blue {
    color: #2a1768;
}

.slogan {
    font-size: 32px;
    line-height: 40px;
}

.red {
    color: #da291c;
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 80%;
}

.callus {
    font-size: 34px;
    font-weight: bolder;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1500px;
    margin: 20px auto;
    padding: 0 20px;
}

.column {
    flex: 1 1 0; /* Makes columns equal width and grow if needed */
}

.cta {
    background-color: #2A1768;
    color: white;
    font-size: 52px;
    font-weight: bolder;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 6px;
}

.cta:hover {
    text-decoration: underline;
}

.hours {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 500;
    margin-top: 10px;
    font-size: 20px;
    color: seagreen;
}

.wide-bar {
    width: 100%;
    height: 46px;
    background-color: #DA291C;
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 0 0;
    text-align: center;
}

.wide-bar a {
    color: white;
}

.wide-bar a:hover {
    text-decoration: underline;
}

.services {
    /*height: 500px;*/
    position: relative;
    background: linear-gradient(to right bottom, #2A1768 50%, #ECEEF6 50%);
}

.services .wrapper {
    padding: 20px 90px;
}

.services .headline {
    color: white;
    font-size: 30px;
    margin-bottom: 100px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    display: flex;
}

.box {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 5px 25px #a9a9a98c;
    padding: 66px 20px 10px;
    border-radius: 3px;
    cursor: default;
    justify-content: center;
}

.box h3 {
    color: #393939;
    text-align: center;
    font-size: 24px;
}

.box .icon {
    top: -50px;
    left: 50%;
    transform: translate(-50%);
    height: 107px;
    width: 107px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #2A1768;
    position: absolute;
    transition: all .25s ease-in-out 0s;
}

.box .icon img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translate(-50%);
    left: 50%;
}

.languages {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.languages img {
    width: 35px;
    height: auto;
    border: 1px solid lightgray;
    border-radius: 50%;
}


@media (max-width: 1200px) {
    .cta {
        font-size: 40px;
    }
}

@media (max-width: 1000px) {
    .cta {
        font-size: 24px;
    }

    .cta img {
        width: 30px;
    }
}

@media (max-width: 768px) {

    .container {
        gap: 2rem;
    }

    .column {
        flex: 1 0 100%; /* Stacks columns on smaller screens */
    }


    .box {
        padding: 30px 30px 30px 170px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .box h3 {
        text-align: left;
        font-size: 18px;
    }

    .box .icon {
        left: 20px;
        transform: translateY(-50%);
        top: 50%;
    }

    .logo img {
        max-width: 90%;
    }

    .slogan {
        font-size: 24px;
    }

    .services .headline {
        margin-bottom: 30px;
    }

    .col {
        padding: 15px 0;
    }

    .cta img {
        width: 33px;
    }

    .cta {
        font-size: 30px;
    }

    .col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services .wrapper {
        padding: 20px 30px;
    }

    .wide-bar {
        font-size: 16px;
    }

}




