
@font-face {
    font-family: "openSans";
    src: url('Fonts/open_sans/OpenSans-Regular.ttf');
}
*{margin:0;padding:0;box-sizing:border-box;}
body {
    --secondaryColor: #f2f2f2;
    --primaryColor: #16a085;
    padding-bottom:10%;
    background-color: rgba(255, 255, 255, 0.199);

}
.link_ {
    text-decoration: none;
    color:rgba(150, 142, 142, 0.699);
}
.link:visited {
    color:rgba(150, 142, 142, 0.699);
}
#header_container {
    padding-left: 45%;
    display: inline-flex;

    width:100%;

}
#brands_title {
    width: 100%;
    display: flex;
    margin: 5vh 0;
    justify-content: center;
    font-family: "openSans";
    font-weight: 700;
    color:rgba(128, 94, 94, 0.671);
    font-size: large;
}
#header_ {
    background: url('../img/logo/small.png') no-repeat;
    background-size: contain;
    height:112px;
    width: 200px;
}
#actual_brands {
    display: grid;
    margin: 2vh 10vw;
    grid-template-columns: auto auto auto auto;
}
.brand_square {
    height: 250px;
    width: 250px;
    margin-top: 5vh;
    background-size: contain;
}
.brand_rectangle {
    height: 92px;
    width: 250px;
    padding: 15%;
    margin-top: 5vh;
    background-origin: content-box !important;
    background-size: contain !important;
}
#carousel {
    padding-top: 2.5%;
    height: 45vw;
    cursor: pointer;
}
#contact_h {

    padding-left: 5%;
}
#nav_but_container {
    width: 100%;
    padding-top: 70vh;
    display: inline-flex;
    justify-content: center;

}

#nav_buttons {
    position:absolute;
    width:45%;
    margin-left: 38.5vw;
    z-index: 4;
    margin-top: -5vh;
}

.nav_radio {
    margin: 0 .5rem 0 0;
    display: none;
    cursor: pointer;
}
.slide {
    width: 100%;
    height: 70vh;
    position: absolute;
    opacity: 0;
    z-index: 1;
    display: block;
    text-align: center;
    padding-top: 10vh;
    /* change the value for a faster or slower transition between slides */
    -webkit-transition: opacity 1.5s;
    -o-transition: opacity 1.5s;
    transition: opacity 1.5s;

}
.slide_title {
    font-family: "openSans";
    font-size: 2.5vh;
    display: block;
    margin-bottom: 5vh;
    color: white;
    font-weight: bold;
}
.slide_info {
    width: 40vw;
    justify-content: center;
    color: rgba(202, 199, 199, 0.932);
    font-weight: 800;
    font-size: 150%;
    font-family: "openSans";
    text-align: justify;
    margin: 10vh auto;
}
.to_form_class {
    border: solid 1px;
    width: 25vw;
    margin: auto;
    padding: 2vh 0;
    color: rgba(202, 199, 199, 0.932);
    font-weight: 800;
    font-family: "openSans";
    cursor: pointer;
    border-radius: 30px;
}
.showing {
    opacity: 1;
    z-index: 2;
    display: block;
    background-color:rgba(172, 169, 169, 0.87) ;

}

#first_slide {
    background:  url('../img/slides/shutterstock_401950459.jpg') no-repeat rgba(82, 77, 77, 0.726);
    background-size:cover;
    background-blend-mode: multiply;
    width: 100%;
}
#second_slide {
    background:  url('../img/slides/performance-management-hero.jpg') no-repeat rgba(82, 77, 77, 0.726);
    background-size:cover;
    background-blend-mode: multiply;
    width: 100%;
}
#third_slide {
    background:  url('../img/slides/R80750741051d99cbdfef290a6e444976.jpg') no-repeat rgba(82, 77, 77, 0.726);
    background-size:cover;
    background-blend-mode: multiply;
    width: 100%;
}

label.n_r{
    float:left;
    width:2.5%; padding-bottom:2.5%;
    margin:0 1.25%;
    background:rgba(194, 191, 191, 0.288);
    border-radius:50%;
    cursor:pointer;
  }
  #slider{
    position:absolute;
    left:0%; top:0;
    width:1.25%; padding-bottom:1.25%;
    margin:.625% 0 0 1.875%;
    background:#fff;
    transition:transform 1s;
    border-radius:50%;
    animation-timing-function: ease-in-out;
    animation-duration:.3s;
    animation-fill-mode: forwards;
    transition: 0.2s left .05s ease-in-out;
  }
#first_slide_radio:checked  ~ #slider{ animation-name: input1; left:0; }
#second_slide_radio:checked ~ #slider{ animation-name: input2; left:5%; }
#third_slide_radio:checked  ~ #slider{ animation-name: input3; left:10%; }

@keyframes input1{ 30%, 70% { transform:scale(0.5); } }
@keyframes input2{ 30%, 70% { transform:scale(0.5); } }
@keyframes input3{ 30%, 70% { transform:scale(0.5); } }

/* Form Styles*/

#contact_title {
    display: flex;
    justify-content: center;
    margin: 4vh 0;
    font-family: "openSans";
    font-weight: bolder;
    font-size: 4.5vh;
}
#form_container {
    border: 1px solid;
    display: flex;
    margin: auto;

    width: 50vw;
    height: 45vw;
    padding: 2.5% 2.5%;
}
.field {
    width: 100%;
    margin-bottom: 4.5vh;
}
.form_f {
    margin: 2vw 10vw 2vw 0vw;
    font-family: "openSans";
    font-size: large;
    display:inline-flex;
    justify-items: baseline;
    color: rgba(199, 156, 156, 0.877);
    max-width: 5%;
}
.req::after {
    content: " *";
    color:red;
}
.inpts_form {
    width: 65%;
    height: 2vw;
    padding: 0 1vw;
    border-radius: 30px;

}
#message {
    width: 100%;
    height: 25vh;
    border-radius: 30px;
}

.inpts_form:focus {
    outline: none;
}
 #submit_btn {
    border: 1px solid;
    display: flex;
    margin: auto;
    justify-content: center;
    padding-top: 1.5vh;
    max-width: 25vw;
    height: 5vh;
    border-radius: 30px;
    color:white;
    background-color: rgba(24, 9, 9, 0.877);
    cursor:pointer;
    font-family: "openSans";
 }
