/* all stylization */

*{
    font-family: 'Roboto';
    box-sizing: border-box;
    scroll-behavior: smooth;
    max-width: 100vw;
    margin: 0 auto;
}
::-webkit-scrollbar {
    width: 1vw;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #03ab5e;
    transition: all 0.5s ease-in-out;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #03ab5ee3;
  }
  
  ::-webkit-scrollbar-track {
    background: #000000;
  }
 

/* header */
header {
    display: block;
    width: 100vw;
    background-color: #000000;
    box-shadow: 0px 3px 1px -1px rgba(0,0,0,0.75);
}
header .line {
    height: 10px;
    background-color: #03ab5e;
}
.header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 90vw;
}
.header-img {
    width: 80px;
    margin-left: 40px;

}
.header-img img { 
    height: 80px;
}
.header-menu {
    margin-right: 40px;
}
.header-menu ul { 
    display: flex;
    width: 400px;
    height: 50px;
    align-items: center;
    list-style: none;
    background-color: #000000;
}
.header-menu ul .active {
    text-decoration: underline;
    text-underline-offset: 5px;
}
.header-menu ul li {
    padding: 10px;
}
.header-menu ul a {
    text-decoration: none;
    height: 40px;
    color: #fff;
    border-radius: 5px;
}
.header-menu ul a:hover {
    background-color: #03ab5e;
    color: #ffffff;
    transition: ease 0.8s;
}
.mobile-menu-icon, .mobile-menu {
    display: none;
}


/* 1 section */

.blue-section {
    display: flex;
    align-items: center;
    background-color: #000000;
    height: calc(100vh - 110px);
    min-height: 800px;
}
.blue-section--desc {
    width: 50%;
    text-align: center;
}
.blue-section--desc h1 {
    width: 6em;
    font-size: 50px;
    margin-bottom: 30px;
    border-right: 2px solid rgba(255, 253, 253, 0.75);
    text-shadow: 2px 1px 6px rgba(255,255,255,0.5);
    white-space: nowrap;
    overflow: hidden;
    color: #ffffff;
}
.blue-section--desc p {
    color: #ffffff;
    width: 45vw;
    font-size: 25px;
}
.typing-animation {
    animation: blinkCursor 500ms infinite alternate, typing 3s steps(22);
}

@keyframes typing {
    from {
        width: 0;
    }
}
@keyframes blinkCursor{
    50% {
        border-right-color: transparent;
    }
}
.blue-section--img {
    width: 50%;
    height: 100%;
    background-image: url("../images/img-business-contact.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* 2 section */

.white-section {
    height:100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}
.white-section-social {
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.white-section-social a, .white-section-social .copy-link{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.white-section-social--map {
    height: 50vh;
    width: 100vw;
    background-image: url(../images/pgs-local.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    box-shadow: inset 0px 0px 32px -6px rgba(0,0,0,0.58);
}
.white-section-social--map h2 {
    text-decoration: none;
    color: #000000;
}
.white-section-social--social {
    height: 50vh;
    width: 49.5vw;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

}
.white-section-social--social---info img {
    width: 30px;
    margin-right: 10px;
}
.white-section-social--social a, .white-section-social .copy-link{
    text-decoration: none;
    color: #ffffff;
}




/* footer */

footer {
    height: 110px;
    background-color: #000000;
    display: flex;
    padding: 0px 10px;
}
.footer-desc {
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #919191;
}
.footer-desc h3 {
    font-size: 30px;
}
.footer-social {
    display: none;
}
 


@media screen and (max-width: 1020px) {
    .blue-section--desc h1 {
        font-size: 35px;
    }
    .blue-section--desc p {
        font-size: 20px;
    }
    .white-section-social--map h2 {
        font-size: 20px;
    }
    .white-section--form input {
        padding: 7px;
    }
    .white-section--form textarea {
        height: 111px;
    }
}
@media screen and (max-width: 769px) {
    .nav-bar {
        padding: 1.5rem 4rem;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
    }
    .header-menu {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
        margin-right: 30px;
    }
    .mobile-menu-icon button {
        background-color: transparent;
        border: none;
        position: absolute;
        right: 30px;
        top: 31px;
    }
    .mobile-menu-icon img {
        width: 50px;
    }
    .mobile-menu {
        margin-top: 98px;
        width: 100%;
        text-align: center;
    }
    .mobile-menu .nav-item {
        display: block;
        padding-top: 1.2rem;
    }
    .open {
        display: block;
    }
    .mobile-menu ul {
        position: absolute;
        padding-bottom: 3rem;
        background-color: #000000;
        width: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
    }
    .mobile-menu ul .active {
        text-decoration: underline;
        text-underline-offset: 5px;
    }
    .mobile-menu ul li a {
        text-decoration: none;
        color: #ffffff;
    }
}
@media (min-width: 451px) and (max-width: 769px) {
    .blue-section {
        flex-direction: column;
    }
    .blue-section--desc {
        width: 100%;
        height: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;   
    }
    .blue-section--img {
        width: 100%;
        height: 50%;
    }
    .white-section {
        flex-direction: column-reverse;
        height: 100vh;
    }
    .white-section-form {
        width: 100%;
        height: 50%;
    }
    .white-section-social {
        width: 100%;
    }
    .white-section-social--map {
        width: 100vw;
        height: 50vh;
    }
    .white-section-social--social {
        width: 100%;
    }
    .footer-desc h3 {
        font-size: 20px;
        margin-top: 10px;
    }
}
@media screen and (max-width: 450px) {
    .header-img {
        margin-left: 5px;
    }
    .mobile-menu ul {
        padding-left: 0px;
    }
    .blue-section {
        flex-direction: column;
    }
    .blue-section--desc {
        width: 100%;
        height: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;   
    }
    .blue-section--desc p {
        font-size: 14px;
    }
    .blue-section--img {
        width: 100%;
        height: 50%;
    }
    .white-section {
        flex-direction: column-reverse;
        height: 100vh;
    }
    .white-section-form {
        width: 100%;
        height: 50%;
    }
    .white-section--form h2 {
        margin: 0;
    }
    .white-section-social {
        width: 100%;
    }
    .white-section-social--map {
        width: 100%;
    }
    .white-section-social--social {
        width: 100%;
    }
    .footer-desc h3 {
        font-size: 20px;
        margin-top: 10px;
    }
}