
#home{
    margin: auto;
    width: 100%;
    padding-top:20px;
    padding-bottom: 20px;
    height: auto;
    padding-left: 50px;
    padding-right: 20px;
    background: linear-gradient(334deg, #2d7aff 0%, rgb(0 0 0) 100%);
}

#home .home-row{
    margin-top: 3rem;
    margin-bottom: 4rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.home-row{
    max-width: 1200px;
    margin: auto;
}

.home-col-1{
    flex-basis: 50%;
    margin-top: 2rem;
}

.home-col-1 #t1{
    color: white;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
}

.home-col-1 #t2{
    color: #fff;
    letter-spacing: -.04em;
    margin-top: 0;
    margin-bottom:2opx;
    font-family: sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
}

.home-col-1 p{
    font-size: 1.2rem;
    color: white;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom:30px;
}


.text-group{
    display: flex;
    gap: 20px;
    color: #043c7c;
    margin-bottom: 2rem;
}

.text-group span{
    width: 10rem;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    background-color: #1451ad;
    background-image: linear-gradient(90deg,#3d9eff,rgba(189, 31, 31, 0.1));
    color:#fff
}

.large{
    font-size: 2rem;
    font-weight: bolder;
    margin-bottom: -10px;
}

.home-col-2{
    flex-basis:500px;
    height:auto;
    background-color:white;
    border-radius: 25px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

form{
    width: 400px;
    color: #043C7C;
}

#text{
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 25px;
    line-height: 32px;
    color: #1e51a8;
    letter-spacing: 0.25px;
}

label{
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgb(60, 60, 60);
}

input{
    display: block;
    margin-bottom: 10px;
    width: 100%;
    padding: 7px 20px;
    border-radius: 2px;
    border: none;
    box-shadow: 0px 0px 2px 0px #252525;
}

select{
    width: 100%;
    border: none;
    border-radius: 2px;
    padding: 8px 20px;
    box-shadow: 0px 0px 2px 0px #252525;
    margin-bottom: 20px;
    display: block;
}

.form-btn{
    width: 100%;
    background-color: #043C7C;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 18px;
}

.learn-more {
  background-color: white;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #043C7C;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  touch-action: manipulation;
  margin-top: 1rem;
}

.learn-more:hover {

  background-color: #c3d7ee;
}

@media(max-width:970px){
    .home-col-2{
        flex-basis:450px;
        margin-top: 2rem;
    }
    form{
        width: 350px;
    }
}


@media (max-width:900px){
    #home{
        padding-left: 20px;
    }

    .home-col-1{
        flex-basis: 100%;
    }

    #home .home-row{
    flex-direction: column;
    gap: 40px;
    }

    .home-col-1 #t1{
        text-align: center;
        font-size: 2rem;
    }

    .home-col-1 #t2{
        font-size: 4rem;
        text-align: center;
        text-decoration: underline;
        text-decoration-color:#043C7C;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .home-col-1 p{
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .text-group{
        justify-content: center;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .home-col-2{
        flex-basis: 100%
    }
    form{
        width:800px;
    }
    .learn-more{
        margin-left: 50%;
        transform: translateX(-50%);
    }
}

@media(max-width:550px){
    .home-col-1 #t1{
        text-align: center;
        font-size: 1rem;
        color: white;
    }

    .home-col-1 #t2{
        font-size: 3rem;
        text-align: center;
        text-decoration: underline;
        text-decoration-color:#043C7C;
        color: white;
        font-weight: bold;
        margin-bottom:2rem;
    }

    .home-col-1 p{
        text-align: center;
        font-size: 1rem;
        color: white;
    }


}