
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
:root
{
    --peru:#cd9452;
    --black:#222;
    --white:#fff;
    --light-black:#666;
    --light-white:#ccc;
    --light-bg:#f5f5f5;
    --dark-bg:rgba(0,0,0,.7);
    --border:.1rem solid rgba(134, 75, 75, 0.3);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.8);
}

.contact {
  position: relative;
  z-index: 3;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: 100vh;
  width: 100%;
 
  justify-content: center;
  align-items: center;
  background-image: url(../image/pslide/3.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
background: transparent;
}

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header h2 {
  color: #FFF;
  font-weight: bold;
  font-size: 3em;
  margin-bottom: 20px;
}

.section-header p {
  color: #FFF;
}

.row  {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contact-info {
  width: 50%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: #1da9c0;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #FFF;
  font-size: 1em;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span{
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"]
{
  width: 100%;
  background: #00bcd4;
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #00bcd4;
  transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover
{
  background: #FFF;
  color: #00bcd4;
}

@media (max-width: 991px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .row {
    flex-direction: column;
  }
  
  .contact-info {
    margin-bottom: 40px;
    width: 100%;
  }
  
  .contact-form {
    width: 100%;
  }
}
section
{
    padding: 5rem 10%;
}
.header
{
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
}
.header .logo
{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
    text-decoration: none;
    
}
.header .logo i{
    color: var(--peru);
    padding-right: .5rem;
}
.header .navbar a
{
    font-size: 1.5rem;
    margin-left: 2rem;
    color: var(--light-black);
}
.header .navbar a:hover
{
    color: var(--peru);
}
#menu-btn
{
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--black);
    display: none;

}
@keyframes fadeIn
{
    0%
    {
        transform: translateY(-1rem) scale(0);
        opacity: 0;
    }
}
@media(max-width:991px)
{
    section
    {
        padding: 3rem 5%;
    }
}
@media(max-width:991px)
{
    section
    {
        padding: 3rem 2rem;
    }
    html{
        font-size: 55%;
    }
}
@media(max-width:991px)
{
  .contact {
    
    min-height: 10vh;
    
  }
    #menu-btn
    {
        display: inline-block;
    }
    .fa-times
    {
        transform: rotate(180deg);
    }
    .header .navbar
    {
        position:absolute;
        top: 99%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: var(--border);
        clip-path: polygon(0 0,100% 0, 100% 0, 0 0);
    }
    .header .navbar.active
    {
        clip-path: polygon(0 0, 100% 0,100% 100%, 0 100%);
    }
    .header .navbar a
    {
        display: block;
        margin: 2rem;
    }
    .contact {
    
      min-height: 10vh;
      
    }
}