/*
	section start
*/
section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.s-title {
    font-size: 25px;
}
.title {
    font-size: 35px;
}

@media screen and (max-width: 72em) {
    section {
        padding: 5rem 1rem;
    }
    .title {
        font-size: 25px;
    }
}
/*
	section end
*/
/*
	form start
*/
.container {
    padding: 5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}
.body {
    width: 100%;
    max-width: 60%;
    max-width: 800px;
    padding: 0 20px;
    /* border: #2c3e50 solid; */
}
.c-title {
    margin: 20px 0;
    font-weight: bold;
}
.body .title {
    text-align: center;
    font-size: 35px;
}
.body .s-title {
    text-align: left;
    font-size: 20px;
}
.body .form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.query {
    display: flex;
    flex-direction: column;
    width: 50%;
    max-width: 100%;
    /* border: #2c3e50 solid; */
}
.column {
    margin: 10px 0 20px 0;
    text-align: left;
    width: 100%;
    max-width: 150%;
    /* border: #2c3e50 solid; */
}

.body .inp,
.body select {
    width: 100%;
    display: block;
    margin: 15px 0px 15px 0px;
    padding: 10px 12px;
    border: 1px solid #2c3e50;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    color: #2c3e50;
    outline: none;
    transition: all 0.3s ease, border-color 0.3s ease;
}

.inp:focus,
select:focus {
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.body .inp::placeholder {
    color: #7f8c8d;
    opacity: 1; /* Firefox */
}
.body select option {
    color: #7f8c8d;
}

/* For IE and Edge */
.body select::-ms-value {
    color: #7f8c8d;
}

/* For Firefox */
.body select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #7f8c8d;
}

.submit {
    background-color: #2c3e50;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
    display: block;
    width: 100%;
    max-width: 150%;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.submit:hover {
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 10px 2px rgba(0, 0, 0, 0.3);
    background-color: #2980b9;
}

.submit:active {
    top: 2px;
}

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}

.comment {
    color: #3498db;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
}

.modal-content img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.close {
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: -50px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
    }

    .close {
        right: 10px;
        top: -40px;
        font-size: 30px;
    }
}

@media screen and (max-width: 600px) {
    .modal-content {
        width: 95%;
    }
}

@media screen and (max-width: 480px) {
    .modal-content {
        width: 98%;
    }

    .close {
        right: 5px;
        top: -35px;
        font-size: 25px;
    }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
    .modal-content {
        max-height: 95vh;
    }

    .modal-content img {
        max-height: 85vh;
    }

    .close {
        top: 5px;
        right: 5px;
    }
}
.size-img {
    display: none;
}
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: block;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.3s;
}

#back-to-top:hover {
    opacity: 0.8;
}
/*
	form end
*/