/* Create four equal columns that floats next to each other */

:root {
    --black:#000000;
    --lightblack:#354b58;
    --blue: rgb(4, 179, 226);
    --gray: #666;
    --lightgray:#f2f2f2;
    --red: rgb(255,0,0);
    --white:#ffffff;
    --yellow: #FFFF00;    
    --green: #00a440;
}


.box {
    border-collapse: collapse;
    color: #1c3144;
    display: block;
    float: left;
    height: 100%;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
}


.box:before {
    border-color: rgba(200, 200, 200, 0);
    border-style: solid;
    border-width: 0 1px;
    content: "";
    height: 50%;
    left: 50%;
    margin-left: -50%;
    position: absolute;
    top: 25%;
    transition: all 0.4s;
    width: 100%;
}

.box:after {
    border-color: rgba(200, 200, 200, 0);
    border-style: solid;
    border-width: 1px 0;
    content: "";
    height: 100%;
    left: 50%;
    margin-left: -25%;
    position: absolute;
    top: 0;
    transition: all 1.5s;
    width: 50%;
}

.box:hover {
    color: white;
}

.box:hover:after {
    border-color: #5a5a5a;
    border-radius: 5px;
    color: white;
    margin-left: -50%;
    width: 100%;
}

.box:hover:before {
    border-color: #5a5a5a;
    border-radius: 5px;
    color: white;
    height: 100%;
    top: 0%;
}

.button {
    background-color: var(--green);
    border-radius: 5px;
    color: var(--white);
    font-family: 'Helvetica 25 UltraLight', sans-serif;  
    font-size: 14px;
    font-weight: bold;
    margin-top: -10px;
    padding: 8px 28px;
    text-align: center;
    text-decoration: none;
}

.col {
    float: left;
    width: 25%;
    padding: 10px;
    height: 100%;
    /* Should be removed. Only for demonstration */
}

.col-6 {
    float: left;
    width: 50%;
    padding: 10px;
    height: 100%;
    /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: flex;
    flex-wrap: wrap;
    clear: both;
}

.division {
    border-right: 4px solid white;
    margin-top: 20px;
}

.form-control {
    border-radius: 5px;
    border: 1px solid var(--green);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin: 15px 20px;
    padding: 15px 5px;
    width: 490px;
}

.form-control:hover,
focus {
    border: 1px solid green;
}

.form-control:focus {
    border: 1px solid green;
}



.custom-shape-divider-top-1657918862 {
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1657918862 svg {
    background-color: white;
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 127px;
}

.custom-shape-divider-top-1657918862 .shape-fill {
    background-color: red;
    fill: red;
}

.container_loader{
    align-items: center;
    margin: auto;
    text-align: center;
    width:100%;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid rgba(28, 49, 68, 1);
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
  z-index: 89626566666666666666666666666666666666666;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}