@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700&display=swap');

*{
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-transform: capitalize;
    box-sizing: border-box;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body{
    background:#ff660000;
    background: url(./img/bruno-martins-ElUbmfsgvV0-unsplash.jpg) no-repeat fixed;
    background-size: cover;
    background-position: center;
}
body::-webkit-scrollbar {
    width: 1em;
    background-color: rgb(0, 0, 0);
}
 
/* Custom scrollbar track styling can be added here if needed */
 
body::-webkit-scrollbar-thumb {
  background-color: rgb(255, 94, 0);
  outline: 1px solid rgb(255, 94, 0);
}

section{
    padding: 2rem 7%;
}

/* Header */
/* Navbar styles have been moved to style.css */
.bttb{
    position: fixed;
    bottom: 20px;
    right: 10px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.493); */
    cursor: pointer;
    color: white;
}
.bttb img{
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    height: 70px;
    width: 70px;
    
}
.bttb:hover{
    background: rgb(0, 0, 0);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.493);
}



/* Navbar styles have been moved to style.css */


/* Navbar styles have been moved to style.css */

/* Search form styles */
.header .search-form{
    position: absolute;
    top: 100%; 
    right: -110%;
    width: 50rem;
    height: 5rem;
    background: rgb(0, 0, 0);
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 20px rgb(255, 255, 255);
}

.header .search-form.active{
    right: 2rem;
    transition: .4s linear;
}

.header .search-form input{
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: rgb(255, 255, 255);
    padding:1.5rem ;
}

.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1.5rem;
    color: black;
    cursor: pointer;
}

.header .search-form label:hover{
    color: orangered;
     
}


.container {
    /* position: relative; */
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    /* background-color: #000000; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
  }
  
  .form {
    /* height: 1000px; */
    width: 100%;
    max-width: 900px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    /* z-index: 1; */
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form {
    background-color: rgba(0, 0, 0, 0.753);
    position: relative;
  }
  
  .circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #ffffff);
    position: absolute;
  }
  
  .circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
  }
  
  .circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
  }
  
  .contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #ffd900;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
  }
  
  form {
    background-color: #ffd900;
    padding: 2.3rem 2.2rem;
    z-index: 1;
    overflow: hidden;
    position: relative;
    height: 500px;
  }
  
  .title {
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
  }
  
  .input-container {
    position: relative;
    margin: 1rem 0;
  }
  
  .input {
    text-transform:none;
    width: 100%;
    outline: none;
    border: 2px solid #000000;
    background: none;
    padding: 0.6rem 1.2rem;
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
  }
  
  textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
  }
  
  .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #000000;
    font-size: 1.5rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
  }
  
  .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
  }
  
  .btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 3rem;
    color: #000000;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
  }
  
  .btn:hover {
    background-color: rgb(255, 94, 0);
    color: #fff;
  }
  
  .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 2rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
  }
  
  .input-container span:before,
  .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #ffd900;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .input-container span:before {
    left: 50%;
  }
  
  .input-container span:after {
    right: 50%;
  }
  
  .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 1.3rem;
  }
  
  .input-container.focus span:before,
  .input-container.focus span:after {
    width: 50%;
    opacity: 1;
  }
  
  .contact-info {
    background-color: rgb(255, 255, 255);
    padding: 2.3rem 2.2rem;
    position: relative;
  }
  
  .contact-info .title {
    color: #000000;
  }
  
  .text {
    color: rgb(0, 0, 0);
    margin: 1.5rem 0 2rem 0;
    font-size: 1.5rem;
  }
  
  .information {
    display: flex;
    color: rgb(0, 0, 0);
    margin: 0.7rem 0;
    align-items: center;
    font-size: 1.5rem;
  }
  
  .icon {
    width: 28px;
    margin-right: 0.7rem;
  }
  
  .social-media {
    padding: 2rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-media p {
    color: rgb(0, 0, 0);
    font-size: 2rem;
    margin: 2rem;
  }
  
  .social-icons {
    display: flex;
    margin-top: 0.5rem;
  }
 
.fa-linkedin-in:before {
    font-size: 3.5rem;
    content: "\f0e1";
}
  .social-icons a {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: linear-gradient(45deg, #1351af, #1351af);
    color: rgb(255, 255, 255);
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.05);
  }
  
  /* .contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #ffd900;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 1;
  } */
  
  /* .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #1cd4af, #159b80);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
  }
  
  .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
  } */
  
  /* .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.1;
  } */

  

  .location{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #ffffff9a;
  }
  .location h1{
    font-size: 5rem;
    color: black;
  }
  .location .map{
    margin: 2rem;
    width:100%;
    height:500px;
    border-radius: 50px;

  }
  
  .copyright{
    background: rgb(0, 8, 78);
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}
.copyright h1{
    font-size: 15px;
    color: white;
    font-weight: lighter;
}

  .loader{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;left: 0;right: 0;bottom: 0;
    z-index: 1000;
    background-color:rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 3.5s;
    
}
@keyframes fadeOut {
    50% {opacity:1;}
    100% {opacity:0;}
}
.loader img{
    height: 10rem;
}
  @media (max-width: 768px) {
    .form {
      grid-template-columns: 1fr;
    }
    .container {
      margin-top: 10rem;
      padding: 1.5rem;
    }
  
    .contact-info:before {
      bottom: initial;
      top: -75px;
      right: 65px;
      transform: scale(0.95);
    }
  
    .contact-form:before {
      top: -13px;
      left: initial;
      right: 70px;
    }
  
    .square {
      transform: translate(140%, 43%);
      height: 350px;
    }
  
    .big-circle {
      bottom: 75%;
      transform: scale(0.9) translate(-40%, 30%);
      right: 50%;
    }
  
    .text {
      margin: 1rem 0 1.5rem 0;
    }
  
    .social-media {
      padding: 1.5rem 0 0 0;
    }
  }
  
  @media (max-width: 480px) {
    
  
    .contact-info:before {
      display: none;
    }
  
    .square,
    .big-circle {
      display: none;
    }
  
    form,
    .contact-info {
      height: auto;
      padding: 1.7rem 1.6rem;
    }
  
    .text,
    .information,
    .social-media p {
      font-size: 1.5rem;
    }
  
    .title {
      font-size: 2.5rem;
    }
  
    .social-icons a {
      width: 30px;
      height: 30px;
      line-height: 30px;
    }
  
    .icon {
      width: 23px;
    }
  
    .input {
      padding: 0.45rem 1.2rem;
    }
  
    .btn {
      padding: 0.45rem 1.2rem;
    }
  }
    


        





/* ********************MEDIA QUERIES********************* */

@media (max-width:991px){

    html{
        font-size: 55%;
    }
    .header{
        padding: 2rem;
    }
    section{
        padding: 2rem;
    }

    
}

@media (max-width:768px){

    #menu-btn{
        display: inline-block;
    }

    .header .search-form{
        width: 90%;
    }

    .header .navbar{
        position: absolute;
        top: 110%; right: -110%;
        width: 30rem;
        box-shadow: 4px 4px 40px black;
        border-radius: 2rem;
        background-color:#000000;
    }

    .header .navbar.active{
        right: 2rem;
        transition: .4s linear;
    }

    .header .navbar a{
        color: rgb(255, 255, 255);
        font-size: 2rem;
        margin: 2rem 2.5rem;
        display: block;
    }
    .header.navbar a:hover{
        background: white;
        border-radius: 2rem;
        padding: 1rem;
    }
    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }
    .home .content h3{
        font-size: 8rem;
    }
    .home .content p{
        font-size: 2rem;
    }

    
}

@media (max-width:450px){

    html{
        font-size: 50%;
        
    }
}