@import url('https://fonts.googleapis.com/css2?family=Varela&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

* {
    scroll-behavior: smooth;
    scrollbar-width: none;
    font-family: "Varela", sans-serif;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Standard */
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
}

* a {
    text-decoration: none;
    color: #fff;
}

body {
    background-color: #222831;
    width: 100%;
    height: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

.nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #393e46;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
    background-blend-mode: darken;
    backdrop-filter: blur(15px);
    /* overflow: hidden; */

}

.nav .left {
    height: auto;
    width: 200px;
    display: flex;
    justify-content: center;
    margin-left: 5vw;
}


.nav .left img {
    width: 200px;
}

@media (max-width: 720px){
    .nav .left img{
        width: 150px;
    }
}

.nav .right {
    height: auto;
    width: 400px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 5vw;
}

@media (max-width: 720px) {

    .nav .right {
        width: auto;
    }

    .nav .right .display {
        display: none;
    }
}

@media (min-width: 721px){
    
    .nav .right .menu-container{
        display: none;
    }

    .nav .right .menu-button{
        display: none;
    }

    .nav .right .menu-dropdown{
        display: none;
    }

    .nav .right .menu-dropdown a{
        display: none;
    }

}

.nav .right .menu-container {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.nav .right .menu-button {
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    user-select: none;
    background: transparent;
    border-radius: 5px;
    color: #00adb5;
}

.nav .right .menu-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 59px;
    border: 1px solid #393e46;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    color: #00adb5;
    border-radius: 10px;
    height: auto;
}

.nav .right .menu-dropdown a {
    padding: 16px 16px;
    text-decoration: none;
    display: block;
    color: #fff;
    height: auto;
    border-bottom: 1px solid #393e4688;
    background-blend-mode: darken;
    backdrop-filter: blur(15px);
    z-index: 10;
}

.nav .right .menu-dropdown a:hover {
    background-color: #f0f0f034;
}


.nav .right a {
    width: 100px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav .right a:hover {
    color: #ffffff9d;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav .right a.active {
    color: #00adb5;
    /* border-bottom: #00adb5 2px solid; */
}

.section1 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 850px;
    overflow: hidden;
    background-image: url('/assets/backgrounds/fpagefcont1.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: #393e46 1px solid;
    z-index: 1;
    align-items: center;
}

.section1 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    max-width: 550px;
    width: 80vw;
    min-width: 400px;
    height: 600px;
    border: #393e46 2px solid;
    border-radius: 20px;
    background-blend-mode: darken;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.section1 .container h1 {
    margin: 0;
    padding: 20px;
    color: #1abc9c;
    font-size: max(25px, 2.5vw);
}

.section1 .container form {
    width: 80%;
    height: 400px;
    align-items: center;
    justify-content: space-between;
}

.section1 .container form .form-group {
    color: #ffffff9f;
    font-size: max(15px, 1vw);
    padding: 10px;
    width: 100%;
    justify-content: space-between;
    text-align: center;
    position: relative;
    height: 70px;
}

.section1 .container form .form-group .text {
    left: 0;
    top: 0;
    position: absolute;
    padding: 5px 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section1 .container form .form-group .box {
    right: 0;
    top: 0;
    position: absolute;
    padding: 5px 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 250px;
    border: #484e58 1.5px solid;
    border-radius: 10px;
    background-color: transparent;
    color: #ffffff;
    resize: none;
}

@media (max-width: 550px) {
    .section1 .container form .form-group textarea {
        left: 0;
        top: 0;
        transform: translateX(0%);
        height: 100px;
        margin-top: 60px ! important ;
        margin-left: 15px ! important ;
        width: 85% ! important;
        position: absolute;
    }
}

.section1 .container form .form-group .box:focus {
    border-color: #00bfff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
}

.section1 .container form .button {
    position: absolute;
    bottom: 60px;
    padding: 5px 10px;
    left: 50%; 
    transform: translateX(-50%);
}

button {
  background-color: transparent;
  width: 13em;
  height: 3.3em;
  border: 2px solid #1abc9c;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  color: #1abc9c;
  padding: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

button.loading {
    cursor: wait !important;
}


#responseMessage{
    margin-top: 10px;
    margin-bottom: 10px;
}

/* footer css  */

.footer {
    color: #ffffff9d;
    background-color: #000b0c63;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 8vw;
    padding-top: 80px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
}

.footer-content-left img {
    width: 150px;
}

.footer-content {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.footer .footer-content-left p {
    margin: 0;
    margin-left: 10px;
    margin-top: 5px;
    font-size: max(15px, 0.7vw);
}

.footer-content-left,
.footer-content-right,
.footer-content-center {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0px;
}

.footer-content-left ul,
.footer-content-right ul,
.footer-content-center ul {
    margin-top: 0;
}

.footer-content-left li,
.footer-content-right li,
.footer-content-center li {
    margin-bottom: 10px;
    font-size: max(15px, 0.7vw);
}

.footer-content-left a,
.footer-content-right a,
.footer-content-center a {
    color: #ffffff9d;
}

.footer-content-left a:hover,
.footer-content-right a:hover,
.footer-content-center a:hover {
    color: #0adbb5;
}

.footer-content-right h2,
.footer-content-center h2 {
    color: #00adb5;
    font-size: max(17px, 1.2vw);
}

.footer-social-icons {
    margin-top: 25px;
}

.footer-social-icons img {
    width: max(1.8vw, 30px);
    margin-right: 7px;
    margin-left: 7px;
}

/* media footer css */

@media (max-width: 750px) {

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .footer-copyright {
        text-align: center;
    }

}

/* end of footer css  */