/*Ajánlatkérés*/

.container{
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    background-color: var(--feher);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form{
    width: 100%;
    max-width: 305px;
    height: 400px;
    background-color: var(--feher) ;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.form:hover{
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.3);
}

.terkep{
    margin-right: 50px;
}

.contact-form{
    background-color: var(--zold);
    position: relative;
}

.kor{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 10%, var(--zold));
    position: absolute;
}

.kor.egy{
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.kor.ketto{
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact-form:before{
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--zold);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

.form-4{
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.title{
    color: var(--feher);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;    
}

.contact-info{
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info .title{
    color: var(--fekete);
}

.text{
    color: var(--szurke);
    margin: 1.5rem 0 2rem 0;
}

.information{
    display: flex;
    color: var(--informacio);
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.icon{
    width: 28px;
    margin-right: 0.7rem;
}
.contact-info::before{
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid var(--zold);
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.89;
}

.big-circle{
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom,var(--zold) ,var(--simazold));
    right: 30%;
    transform: translate(-40%, -20%);
}

.big-circle:after{
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: var(--feher);
    border-radius: 500%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.square{
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(180%, 11%);
    opacity: 0.2;
}

@media (max-width: 1050px){
    .form{
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .container{
        display: block;
        text-align: center;
    }
}

@media (max-width: 850px){
    .form{
        grid-template-columns: 1fr;
    }

    .square{
        transform: translate(140%, 43%);
        height: 350px;

    }


    .text{
        margin: 1rem 0 1.5rem 0;
    }
}

@media (max-width: 650px){
    
    .terkep{
        margin-left: 55px;
    }
    iframe{
        width: 500px;
        height: 300px;
    }
}

@media (max-width: 600px){
    
    .terkep{
        margin-left: 30px;
    }
    iframe{
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 400px){
    
    .terkep{
        margin-left: 5px;
    }
    iframe{
        width: 300px;
        height: 300px;
    }
}

.telefon{
    font-size:large;
    color: var(--zold);
    margin-right: 10px;
}