/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */


/* BEGIN CSS */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --main-color: #E23D3D;
    --main-shade: #C62E2E;
    --secondary-color: #111111;
    --secondary-shade: #303030;
    --optional-color: #D8D8D8;
}

* {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

body {
    font-family: 'Lato', sans-serif;
}

.fab .fas {
    margin-right: 15px;
}

#main #content-wrap {
    padding-top: 0px !important;
    padding-bottom: 50px;
}

img.custom-logo.ls-is-cached.lazyloaded:hover {
    opacity: 1!important;
}


/* main menu styles */

.btn-support {
    background-color: var(--secondary-shade);
    padding: 7px 10px;
    color: white;
    border-radius: 10px;
    transition: 0.2s;
}

.btn-support:hover {
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
    transition: 0.2s;
}

.btn-contact {
    background-color: var(--main-shade);
    padding: 7px 10px;
    color: white;
    border-radius: 10px;
    transition: 0.2s;
}

.btn-contact:hover {
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
    transition: 0.2s;
}

span.text-wrap {
    font-size: 16px;
}



/* footer */

.footer-social {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

div#footer-widgets {
    font-size: 15px;
}


/* contact form */

.nf-form-content button, .nf-form-content input[type=button], .nf-form-content input[type=submit] {
    background: var(--main-color);
    border: 0;
    color: #f7f7f7;
    transition: all .5s;
}

input#nf-field-4:hover {
    background: var(--main-color);
    color: #f7f7f7;
}    


/* sidebar */

.sidebar-box a {
    color: var(--secondary-color)!important;
}



/* blog */

h2.bdp-post-title {
    font-size: 20px;
}