
body {
    font-family: "DM Sans", serif;
    background: none;
    color: black;
    font-size: 16px;
}

.navbar-default {
    padding: 70px 0 20px 0;
    display: none;
}

.paragraph2 {
    font-size: 16px !important;
}

.navbar-default button {
    display: none;
}

.navbar-default .navbar-brand {
    cursor: default;
    font-size: 44px;
    color: black;
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 1.4;
    font-family:"DM Sans", serif;
}

.container .row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    
}

.container .row .col-md-6 {
    width: 100%;
    border: 2px solid #00416A;
    border-radius: 48px;
    padding: 50px 20px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.alert-warning {
    background-color: red;
    border-radius: 10px;
    padding: 15px 45px;
    color: white;
    font-size: 16px;
    border: 0;
}

form fieldset h4 {
    font-size: 32px;
    color: black;
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 1.4;
    font-family:"DM Sans", serif;
    min-height: 130px;
}

form fieldset input[type="text"] {
    width: 100%;
    height: 48px;
    line-height: 46px;
    border: 1px solid #737373;
    padding-left: 15px;
    background-color: #EFF6F8;
    color: black;
    font-size: 14px;
    font-family: "DM Sans", serif;
    appearance: none;
    background-color: transparent;
    margin-bottom: 10px;
    outline: none;
    margin-top: 10px;
}


form fieldset input[type="text"]::placeholder {
    color: black;
}

form fieldset hr {
    display: none;
}

form fieldset .row .col-md-12 {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

form fieldset .btn {
    height: 56px;
    line-height: 56px;
    background: linear-gradient(90deg, #014981 0%, #4CB0FE 100%);
    padding: 0 56px 0 28px;
    position: relative;
    font-size: 18px;
    color: white;
    display: inline-block;
    outline: none;
    transition: .3s;
    border: 0;
    border-radius: 28px;
    font-weight: 500;
    position: relative;
    font-family: "DM Sans", serif;;
}

form fieldset .btn::after {
    content: '';
    display: block;
    width: 16px;
    height: 11px;
    background-image: url('../../assets/svg/arrow.svg');
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 28px;
    transition: .3s;
}

form fieldset .btn:hover::after {
    right: 18px;
}

@media (min-width:768px){
    .container .row .col-md-6 {
        width: calc(33.3% - 20px);
        margin-bottom: 100px;
    }
}