* {
    margin: 0px;
    box-sizing: border-box;
}

.container1 {
    width: 100%;
    height: fit-content;
    padding: 15px 20px 0px 20px;
    align-items: center;
    /* background-image: linear-gradient(to right, #5e93ee, #ff000000); */
    background-image: linear-gradient(180deg, #5e93ee, #ff000000);
    background-color: white;
}

.container1::before {
    content: '';
    width: 100vw;
    height: 101vmin;
    background-image: linear-gradient(to bottom right, #0d2ae4e3, #d810ee);
    /* background-color: rgb(48, 11, 212); */
    position: absolute;
    top: 0%;
    left: 0px;
    max-width: 100%;
    clip-path: polygon(43% 100%, 57% 100%, 100% 74%, 100% 100%, 0 100%, 0 74%);
    /* clip-path: polygon(0% 0%, 0% 100%, 25% 100%, 0 0, 100% 0, 75% 100%, 25% 100%, 25% 100%, 100% 100%, 100% 0); */
}

.img-background {
    width: 21vmax;
    height: 21vmax;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    border: 7px solid white;
    margin: auto;
    box-shadow: 0 0 5px 0 black;
}

.img-background>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: all 0.3s;
}

.img-background>div:hover,
.img-background>div:focus {
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.text-frist {
    width: 40em;
    text-align: center;
    margin: 20px auto;
    margin-bottom: 0px;
    font-family: sans-serif;
    z-index: 5;
}

.text-frist>h1 {
    margin-bottom: 15px;
}

.text-frist>p {
    line-height: 24px;
}

.text-frist>button {
    padding: 10px 16px 10px 16px;
    border-radius: 20px;
    margin-top: 10px;
    border: 2px solid blue;
    font-size: 15px;
    background: transparent;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}

.text-frist>button:hover {
    color: white;
    background-color: rgb(0, 0, 255);
}

.container2 {
    width: 100%;
    display: flex;
    padding: 20px 50px;
    font-family: sans-serif;
    position: relative;
    z-index: -1;
    background-color: #ffffff;
}

.child1 {
    width: 55%;
}

.container2::before {
    content: '';
    width: 100vw;
    height: 90vmin;
    position: absolute;
    top: 0%;
    left: 0px;
    max-width: 100%;
    clip-path: circle(22% at 0% 100%);
    background-color: aqua;
}

.child1>h1,
.child1>div>h3 {
    margin-top: 20px;
}

.child1>p,
.child1>div p {
    opacity: 0.5;
    line-height: 21px;
    margin-top: 5px;
}

.progressBars {
    display: flex;
    flex-wrap: wrap;
    flex: left;
    position: relative;
    justify-content: space-evenly;
}

.progress-container {
    width: 45%;
    margin: 10px 0;
}

.progress {
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin: auto;
    overflow: hidden;
}

.progress-bar {
    width: 0;
    height: 15px;
    text-align: center;
    background-color: #4caf50;
    border-radius: 2px;
    transition: width 0.5s ease;
    font-size: small;
    transition: all 0.5s;
}

.progress:hover .progress-bar {
    background-color: #29a92d;
}

.child2 {
    width: 45%;
    padding: 10px;
}

.child2>div {
    width: 80%;
    height: 500px;
    margin: auto;
}


.container3 {
    width: 100%;
    font-family: sans-serif;
    padding: 20px 60px;
    background-color: #e6e8fa;
}

.container3-child2 {
    display: flex;
    justify-content: space-between;
}

.container3-child2>div {
    width: 30%;
    margin: 15px 0px;
    padding: 10px 15px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 5px 5px 15px -8px black;
}

.container3-child2>div p {
    margin-left: 38px;
}

.container3-child2>div>div {
    display: flex;
    font-size: small;
    margin: 0 0 5px -7px;
}

.container3-child3 {
    display: flex;
    justify-content: space-between;
}

.container3-child3>div {
    width: 48%;
    border-radius: 2px;
    margin-top: 25px;
    box-shadow: 5px 5px 15px -8px black;

}

.Contact-Form {
    padding: 20px;
}

.map-copnante {
    padding: 5px;
}

.map {
    width: 100%;
    height: 100%;
}

.input-container>input {
    width: 100%;
    margin: 8px 0px;
}

.input-container {
    margin-bottom: 15px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {

    .container1,
    .container2,
    .container3-child2,
    .container3-child3,
    .progressBars,
    .container3 {
        flex-direction: column;
    }

    .container1::before {
        display: none;
    }

    .text-frist {
        width: 100%;
        padding: 0 20px;
    }

    .child1 {
        width: 100%;
        text-align: center;
    }

    .child2,
    .child2>div {
        width: 100%;
        padding: 0;
        border-radius: 10px;
    }

    .container3 {
        text-align: center;
    }

    .progress-container,
    .child2,
    .container3-child2>div,
    .container3-child3>div {
        width: 100%;
    }


}