/* Footer */
footer {
    background-color: var(--dark-green);
    padding: 100px 0px 0px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0px auto;
    justify-content: space-between;
    padding: 0px 0vw 0px 5vw;
    gap: 30px;
}
.footer-col ul {
    list-style: none;
}

.footer-col .footer-menu-tag {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
    margin-bottom: 10px;
}

.footer-col .footer-menu {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 177.778%;
    text-decoration: none;
}
.footer-col .footer-menu:hover{
    text-decoration: underline;
}

.footer-col p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.444%;
    position: relative;
}

.subscribe-newsletter{
    max-width: 310px;
}

.footer-col-right{
    max-width: 425px;
    width: 100%;
}

.footer-form{
    margin-top: 27px;
}




.subscribe-form-row {
    display: flex;
    position: relative;
}
.subscribe-submit {
    background: transparent;
    border: none;
    position: absolute;
    right: 0px;
    opacity: 0.5;
    cursor: pointer;
    top: 0px;
}
.subscribe-form .wpcf7-response-output {
  margin: 5px 0px !important;
  background: #fff;
  text-align: center;
}
.subscribe-form .wpcf7-form {
  position: relative;
}
.subscribe-form .wpcf7-response-output {
  margin: 5px 0px !important;
  background: #fff;
  text-align: center;
  position: absolute;
  width: 100%;
}
.subscribe-form-row .wpcf7-not-valid-tip {
  background: #df4343;
  color: #fff;
  padding: 3px 10px;
  font-size: 16px;
  margin-top: 8px;
  text-align: center;
}
.subscribe-form input[type="email"] {
    width: 100%;
    background: transparent;
    border-width: 0px 0px 1px 0px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 18px;
    line-height: 144.444%;
    font-weight: 400;
    padding: 0px 30px 15px 0px;
    outline: none;
    border-radius: 0px;
    outline: none;
}
.subscribe-form input[type="email"]::placeholder{
    color: rgba(255,255,255,0.5);
}

.subscribe-form input[type="text"]::placeholder{
    color: rgba(255,255,255,0.5);
}


.footer-bottom-content{
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 150px;
    padding-top: 27px;
}

.footer-bottom-text{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height:  200%;
    text-decoration: none;
}
/* .footer-bottom-text:hover{
    text-decoration: underline;
} */
.copyright-row{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer .bt-title{
    font-size: clamp(32px, 7.75vw, 112px);
    text-align: center;
}

.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: var(--dark-green);
    outline: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    border: 1px solid #fff;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover img {
    top: 0px;
    transition: all 0.1s;
}
.back-to-top img {
    width: 24px;
    transform: rotate(-90deg);
    position: relative;
    top: 3px;
    transition: all 0.1s;
}  

 @media screen and (max-width: 991px) {
    .back-to-top{
        display: none;
    }
 }

@media screen and (max-width: 690px) {
    footer{
        padding: 60px 0px 10px;
    }
    .footer-content{
        padding: 0px;
    }
    .footer-bottom-content{
        margin-top: 30px;
        border: none;
    }
    .copyright-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    .footer-content .footer-col {
        width: 100%;
        max-width: 100%;
    }

}

@media screen and (max-width: 420px) {
    .copyright-row .footer-bottom-text{
        font-size: 12px;
    }
    footer.footer .bt-title{
        font-size: 25px;
    }
}
