/* Subscribetion Section at Footer */

.subscribe-section {
    position: relative;
    padding: 50px 0px 0px 0px;
}

.subscribe-section .content-box {
    position: relative;
    display: block;
    padding: 35px 35px 0px 35px;
    color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px 0 rgba(29, 197, 206, 0.25);
}

.subscribe-section .content-box .bg-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #dbc060;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.subscribe-section .image-col {
    position: relative;
    margin-bottom: 50px;
}

.subscribe-section .image-col .inner {
    position: relative;
    display: block;
}

.subscribe-section .text-col {
    position: relative;
    margin-bottom: 50px;
}

.subscribe-section .text-col .inner {
    position: relative;
    display: block;
    padding-top: 20px;
}

.subscribe-section .title {
    position: relative;
    margin-bottom: 25px;
}

.subscribe-section .title .subtitle {
    position: relative;
    font-size: 30px;
    line-height: 36px;
    text-transform: capitalize;
    font-family: 'Corinthia', cursive;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.subscribe-section .title h2 {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0;
}

.subscribe-section .title h2 span {
    position: relative;
    z-index: 1;
}

.subscribe-section .title .text {
    position: relative;
    display: block;
    font-weight: 400;
    font-size: 16px;
    padding-top: 20px;
}

.subscribe-section .form-box .inbound-btn {
    background-color: #145f61;
    color: white;
}


/* Popup Form Styles */

.form-popup {
    position: fixed;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100vh;
    z-index: 1100;
    background-color: rgba(128, 128, 128, 0.642);
    display: none;
    justify-content: center;
    align-items: center;
}

.form-popup .form {
    position: relative;
    border-radius: 10px;
    background-color: #dbc060;
    padding: 20px;
    width: 500px;
    color: rgb(255, 255, 255);
}

.form-popup .form .close {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #145e61c6;
    position: absolute;
    top: -32px;
    right: -17px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
}

.form .close:hover {
    background-color: #145f61;
    opacity: 1 !important;
}

.form-popup .form-group {
    margin-bottom: 8px;
}

.form-popup .form .form-control {
    border-radius: 5px;
    box-shadow: none;
    font-size: 14px;
}

.form-popup .form button {
    height: 50px;
    color: white;
    background-color: #145f61;
}

.form-popup .form-group input, select {
    height: 35px !important;
    appearance: none !important;
}

.form-popup .form-group textarea {
    height: 45px !important;
}

@media screen and (max-width: 600px) {
    .form-popup .form {
        width: 340px;
    }

    .form-popup .form-group {
        margin-bottom: 4px;
    }

    .form-popup .form .form-control {
        margin-bottom: 5px !important;
    }
}



