@font-face {
    font-family: 'Playfair Display';
    src: url(../fonts/PlayfairDisplay/PlayfairDisplay-Regular.otf);
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
}

.wrapper{
    background-image: url("../images/banner1.jpg");
    padding: 35px;
    background-size: cover;
    background-position: center;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header div img{
    width: 210px;
}

.navigation ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.navigation ul li{
    list-style: none;
}

.navigation ul li a{
    margin: 65px 25px 0 25px;
    text-decoration: none;
    color: #ECEFF3;
    font-size: 22px;
    line-height: 35px;
    transition: 0.3s all;
}


.navigation ul li a:hover{
    color: #F61B14;
}

.verify-cert{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 100px;
    flex-wrap: wrap;
}

.verify-cert h1{
    color: #fff;
    text-align: center;
    font-size: 30px;
}

.verify-form {
    display: flex;
    flex-wrap: wrap;
}

.verify-form input {
    border: 2px solid #000000;
    min-width: 435px;
    text-align: center;
    padding: 10px 0;
    border-radius: 50px 0 0 50px;
    font-size: 20px;
}

.verify-form button {
    background-color: #363636;
    color: #ffffff;
    border: none;
    padding: 0 70px;
    border-radius: 0 50px 50px 0;
}

.product_description{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:30px 0;
    flex-direction: column;
}

.product_description div{
    background-color: #fff;
    border-radius: 10px;
    padding:30px 60px;
}

.product_description h1{
    color: #fff;
}

.product_description h3{
    font-size: 20px;
}

.product_description h3 strong{
    font-weight: 500;
}

.product_description h3 strong span{
    font-weight: 600;
}

.image-view{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    color: #fff;
    width: 70%;
}

footer{
    background-color: #363636;
    padding: 20px 0;
}


.footer-content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.social img{
    width: 185px;
    margin-bottom: 20px;
}


.social p{
    font-size: 22px;
    color: #eceff3;
}

.social-icons span::before{
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 10px 15px;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 5px;
}

.social-icons span:hover::before{
    background-color: #F61B14;
    transition: 0.3s all;
}


.social-icons{
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
}

.services h3{
    color: #F61B14;
    font-size: 22px;
}

.services a{
    display: block;
    text-decoration: none;
    font-size: 20px !important;
    line-height: 36px !important;
    color: #ccc;
    transition: 0.3s all;

}

.services a:hover{
    color: #ECEFF3;
}

.footer-block h5{
    color: #F61B14;
}

.subscribe-input{
    background: #151515 !important;
    height: 50px;
    border: none !important;
    padding: 15px !important;
    color: #fff !important;
    border-radius: 0;
    margin-bottom: 15px;
    width: 70%;
}


#submit_btn{
    font-size: 18px;
    color: #eceff3;
    letter-spacing: 1px;
    line-height: normal;
    text-transform: capitalize;
    border: solid 1px #f61b14;
    padding: 15px 30px 15px 30px;
    font-weight: 500;
    background-color: #F61B14;
    border-radius: 0;
}


#submit_btn::after{
    font-family: FontAwesome;
    content: "\f178";
    margin-left: 10px;
    color: #fff !important;
}

.copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 22px;
    color: #eceff3;
}

.copyright a{
    text-decoration: none;
    font-size: 20px !important;
    line-height: 36px !important;
    color: #ccc;
}

.top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #000000;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #FFFFFF;
    height: 50px;
    padding: 1em;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu > li {
    margin: 0 1rem;
    overflow: hidden;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #ffffff;
    position: absolute;
    height: 1px;
    width: 30px;
    transition: transform 1900ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: "";
    margin-top: -8px;
}

.menu-button::after {
    content: "";
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0;
    transform: rotate(-405deg);
}

.mobile-logo{
    max-width: 100px;
}

.footer_address{
    color: #ffffff;
    font-size: 17px;
    line-height: 1;
}

.footer_address p a{
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
}

.footer-privacy{
    background-color: rgba(255,255,255,0.05);
}


.footer-privacy-content{
    display: flex;
    align-items: center;
}

.footer-privacy-content p{
    margin: 15px 10px;
}

.footer-privacy-content p a{
    margin: 0 10px;
    color: #FFFFFF;
    text-decoration: none;
}

.privacy-copyright p{
    margin: 20px;
    color: #999999;
    font-size: 12px;
}

@media (max-width: 1385px) {
    .navigation ul li a {
        margin: 65px 10px 0 10px;
    }
}


@media (max-width: 1148px) {
    .navigation ul li a {
        margin: 65px 10px 0 10px;
        font-size: 16px;
    }
}


@media (max-width: 997px) {
    header{
        display: none;
    }
    .top-nav{
        display: flex!important;
        padding: 3em;
    }
    .menu-button-container {
        display: flex;
    }
    .menu {
        position: absolute;
        top: 0;
        left: 0;
        flex-direction: column;
        z-index: 1000;
        width: 100%;
        justify-content: center;
        background: #000000;
        align-items: center;
        margin-top: 95px;
    }

    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked ~ .menu li {
        height: 3.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu > li {
        justify-content: left;
        padding: 0.5em 0;
        border-bottom: solid 1px #333!important;
        margin: 0;
        width: 100%;
        display: block;
        letter-spacing: 3px;
    }

    .menu > li a{
        text-decoration: none;
        color: #FFFFFF;
        background-color: #000000;
        transition: 0.5s all;
        display: block;
        width: 100%;
        padding: 10px 30px 10px !important;
        margin: 0 !important;
    }

    .menu > li a:hover{
        color: #f61b14;
    }
    .wrapper{
        padding: 0;
    }
}


@media (max-width: 918px) {
    .verify-form input{
        border-radius: 50px;
        margin: 0 auto;
    }
    .verify-form button{
        border-radius: 50px;
        min-width: 435px;
        text-align: center;
        padding: 10px 0;
        font-size: 20px;
        margin: 20px auto;
    }
}



@media (max-width: 750px) {
    .verify-cert{
        padding: 40px 0;
    }
    .verify-form input {
        min-width: 300px;
        font-size: 13px;
    }
    .verify-form  button {
        min-width: 300px;
    }

    .footer-content > div {
        margin: 20px;
    }
    .footer-form {
        width: 300px!important;
    }
}
