:root {
    --color-primary: #10852d;
    --text-color: #fff;
}


/* @font-face {
    font-family: poppins;
    src: url("police/Poppins.ttf");
} */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
    /* overflow-x: hidden; */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

h1 {
    font-weight: normal;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.container1 {
    width: 100%;
    min-height: 100vh;
    background-image: url("image/banner_3.jpg");
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.container1::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    opacity: 0.7;
    top: 0%;
    left: 0%;
    z-index: -1;
}

.header1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 1px 5px 6px rgba(0, 0, 0, 0.179);
    font-size: .7em;
    letter-spacing: 1px;
    padding: .5rem;
    position: relative;
    background-color: var(--color-primary);
}

.logo1 {
    width: 150px;
    z-index: 20;
}

.contact1 ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 1.4rem;
    flex-wrap: wrap;
    row-gap: .5rem;
}

.phone1 {
    display: flex;
    align-items: center;
    column-gap: .2rem;
}

.main1 {
    padding: 10rem 2rem 0rem 2rem;
    margin: 1.5rem 0rem;
}

.lang {
    width: 50px;
    height: 50px;
}

.lang-medium {
    width: 60px;
    height: 60px;
}

.lang span {
    position: relative;
    left: 60px;
    bottom: 35px;
    font-weight: 600;
}

.card1 {
    background-color: aliceblue;
    color: #000;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all ease-in-out 400ms;
    position: relative;
    overflow-y: hidden;
    margin-bottom: 1.5rem;
}

.card1::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    top: 0%;
    left: 0%;
    /* visibility: hidden; */
    transform: rotate(0deg);
}

.card1:hover {
    box-shadow: 6px 6px 10px #000;
}

.card1:hover::after {
    transform: rotate(180deg);
    border: 5px solid var(--color-primary);
    transition: border ease 300ms;
    width: 100%;
    height: 100%;
    /* visibility: visible; */
}

.heading1 {
    font-size: 1.2em;
    text-align: center;
    font-weight: normal;
}

.heading1 h1 {
    margin-bottom: 2rem;
}

.heading1 p {
    margin-bottom: 6rem;
}

.heading1 span {
    font-size: 1.5rem;
    font-weight: bold;
    transition: color ease-in-out 400ms;
}

.btn1 {
    text-transform: uppercase;
    display: block;
    text-align: center;
    color: var(--color-primary);
    border: 3px solid var(--color-primary);
    padding: 1.1rem 3rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 50;
    transition: all ease-in-out 150ms;
    margin: 0 1.5rem;
}

.card1:hover span {
    color: var(--color-primary);
}

.btn1::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    position: absolute;
    top: 0%;
    left: 0%;
    transform: skewX(0deg);
    visibility: hidden;
    z-index: -1;
    transition: transform ease-in-out 400ms, visibility ease-in-out 300ms;
}

.btn1:hover::after {
    visibility: visible;
    transform: skewX(-60deg);
}

.btn1:hover {
    color: #fff;
}

.copy1 {
    background-color: rgb(83, 83, 83);
    text-align: center;
    width: 100%;
    padding: 1rem 0rem;
}

@media screen and (min-width: 999px) {
    .header1 {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        padding: 0.5rem 2rem;
        font-size: .9em;
        color: #000;
        background-color: var(--text-color);
    }
    .contact1 ul {
        flex-direction: row;
        align-items: center;
        column-gap: 2rem;
        flex-wrap: wrap;
    }
    .main1 {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 2rem;
        position: relative;
        bottom: 1.5rem;
    }
    .card1 {
        flex: 1;
        margin-bottom: 0rem;
        max-width: 390px;
    }
    .heading1 h1 {
        margin-bottom: 1.5rem;
    }
    .heading1 p {
        margin-bottom: 5rem;
    }
    .copy1 {
        position: absolute;
        width: 100%;
        bottom: 0%;
    }
}