* {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  /* Create two equal columns that floats next to each other */
  .column {
    float: left;
    width: 50%;
    padding: 20px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

body {
    margin: 0;
    padding: 0;
}

.logo, .customerLogo {
    width: 200px;
}

.icon {
    width: 25px;
    padding: 0 5px;
}

.header {
    font-family: 'Poppins', sans-serif;
    color: black;
    font-weight: 200;
    margin: 50px auto;
    text-align: center;
}

.header-title {
    text-align: center;
    font-size: 32px;
}

.header-bio {
    font-size: 16px;
    width: 700px;
    text-align: center;
    margin: auto auto;
}

.form-button {
    position: relative;
    width: 200px;
    height: 50px;
    background: #3027cd;
    margin: 0 10px;
    border-color: transparent;
    color: white;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: background 300ms ease-in-out;
    transition: border-radius 300ms ease-in;
    outline: none;
    transition: 0.4s;
}

.form-button:hover {
    border-radius: 30px;
    background-color: #2821a2;
}

.form .form-control {
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    border: 1.5px solid #3343f7;
    color: black;
    padding: 10px 0px 10px 3px;
    width: 420px;
    margin: 15px 80px;
    font-size: 16px;
    border-radius: 12px;
    transition: background 200ms ease-in;
    transition: 0.6s;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: #5663ea;
  }

.form .form-control:focus {
   outline: none;
   box-shadow: none;
   border: 2.5px solid #222da7;
}

#fpg1 {
    text-align: center;
}

.column-image {
    width: 450px;
    margin: 40px;
    border-radius: 32px;
}

.fade {
    animation-name: fade;
    animation-duration: 0.8s;
  }
  
  @keyframes fade {
    from {opacity: .1} 
    to {opacity: 1}
  }
  

  @media screen and (min-width: 250px) and (max-width: 539px) {
    .form .form-control {
        width: 260px;
        margin-left: 0;
        margin-right: 0;
        font-size: 14px;
    }

    .column-image {
        width: 200px;
    }

    .header-title {
        font-size: 24px;
    }

    .header-bio {
        width: 250px;
    }
  }

  @media screen and (min-width: 540px) and (max-width: 800px) {
    .form .form-control {
        width: 330px;
        margin-left: 80px;
        font-size: 14px;
    }

    .column-image {
        width: 250px;
    }
  }
 
  @media screen and (min-width: 801px) and (max-width: 1325px) {
    .column-image {
        width: 300px;
    }
}

@media screen and (max-width: 1100px) {
    .column {
        width: 100%;
    }
}

@media screen and (min-width: 1326px) and (max-width: 1670px) {
    .form .form-control {
        width: 400px;
    }

    .column-image {
        width: 300px;
    }
}

@media screen and (min-width: 500px) and (max-width: 1450px) {
    .header-bio {
        width: 500px;
    }
}