@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');


#certificate_pdf {
    width: 100%;
    height: 100%;
}

.p-25 {
    padding: 0 25px;
}

.cookies_header {
    width: 100%;
    overflow: hidden;
    border-bottom: solid 1px #00A3E1;
    font-family: 'Montserrat', sans-serif;
}

.img-header a img{
    margin: 10px 0;
    width: 250px;
}

.img-header {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

/*footer*/

.all-footer {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 70px;
}

.p-10 {
    padding: 0 10px;
}

.line-blue {
    width: 100%;
    height: 1px;
    background: #00A3E1;
}

.cookies_first img {
    width: 90px;
    margin-top: 5px;
}

.cookies_first {
    width: 50%;
}

.cookies_footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.second {
    margin-top: 20px;
    font-size: 14px;
    width: 50%;
}

.second a {
    text-decoration: none;
    color: black;
}

.float {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.float a{
    color: #00A3E1;
    transition: 0.2s;
    margin: 0 10px;
}

.float a:hover{
    transition: 0.2s;
    color: #004163;
}

@media (max-width: 700px) {
    .float {
        flex-direction: column;

    }

    .second {
        margin-top: 10px;
        font-size: 12px;
    }

    .two {
        margin-top: 5px;
    }
}

/*/////search/////*/

.cookies_content {
    padding-top: 50px;
    width: 40%;
    height: 500px;
    margin: auto;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;

}

.cookies_content h1 {
    color: #b1b1b1;
    font-size: 30px;
}

.cookies_content p {
    color: #b1b1b1;
    font-size: 15px;
    margin-top: 25px;
}

.first-input {
    width: 70%;
    border: solid 1px #b1b1b1;
    height: 40px;
    border-radius: 3px;
    margin-top: 50px;
    font-size: 16px;
    padding-left: 5px;
}

.second-input {
    width: 70%;
    border: solid 1px #b1b1b1;
    height: 40px;
    border-radius: 3px;
    margin-top: 25px;
    font-size: 16px;
    padding-left: 5px;
}

.cookies_content button {
    padding: 15px;
    margin-top: 25px;
    border-radius: 5px;
    box-shadow: none;
    background-color: #00A3E1;
    border: none;
    color: #f3f3f3;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.cookies_content button:hover {
    transition: 0.2s;
    background: #004163;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    opacity: 1; /* Firefox */
    padding-left: 15px;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    padding-left: 15px;
}

::-ms-input-placeholder { /* Microsoft Edge */
    padding-left: 15px;
}

@media (max-width: 1428px) {
    .cookies_content {
        width: 80%;
    }

    .cookies_content input {
        width: 80%;
    }

}

@media (max-width: 991px) {
    .cookies_content {
        width: 80%;
    }

    .cookies_content input {
        width: 80%;
    }
}

@media (max-width: 730px) {
    .cookies_content {
        width: 100%;
    }

    .cookies_content input {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .cookies_content {
        width: 100%;
        height: 600px;
    }

    .cookies_content input {
        width: 80%;
    }
    .first-input {
        margin-top: 10px;
    }

    .cookies_content .alert-danger{
        margin-top: 0!important;
    }
}

