/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */



/* GLOBAL STYLES */

body {
    background: #e3f2fd!important;
}

h1 span,
h4 span {
    color: #00ada8;
}

div#categorie-menu ul {
    display: block;
    column-count: 2;
}

/* CONTACT FORM */

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-form li {
    list-style: none;
}

.contact-form .half {
    width: calc(50% - 10px);
}

.contact-form .full {
    width: 100%;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    color: #1d1737;
    font-family: "Josefin Sans", sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    color: #333;
    transition: .3s;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9b9b9b;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c8b6ff;
    box-shadow: 0 0 0 4px rgba(200,182,255,.18);
}

.contact-form textarea {
    height: 180px;
    resize: none;
}

.contact-form .submit {
    margin-top: 10px;
}

.contact-form input[type="submit"] {
    width: auto;
    padding: 16px 38px;
    background: #10306a;
    border: none;
    border-radius: 40px;
    color: #fff;
    cursor: pointer;
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.contact-form input[type="submit"]:hover {
    background: #efb95b;
    transform: translateY(-2px);
}

.wpcf7-spinner {
    margin-top: 15px;
}

.wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
    margin-top: 25px;
    border-radius: 10px;
}

.contact-form li br {
    display: none;
}

/* BLOG HEADER */

.blog_single_header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1380px;
    width: calc(100% - 40px);
    margin: 20px auto;
    padding: 220px 30px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}

.blog_single_header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1;
}

.blog_single_header h1,
h1.entry-title {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fff;
    text-align: center;
    font-family: "Unbounded", sans-serif;
    font-size: 48px !important;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

/* BLOG CONTENT */

body.single main#content {
    width: 100%;
    max-width: 1380px;
}

body.single main#content .page-content img {
    height: 360px;
    object-fit: cover;
    width: 100%;
} 

.blog_container {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto 40px ;
    padding: 80px 0;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.blog_container h2 {
    font-size: 32px !important;
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
}

.blog_container h3 {
    font-size: 28px !important;
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
}

.blog_container h4 {
    font-size: 25px !important;
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
}

.blog_container h5 {
    font-size: 22px !important;
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
}

.blog_container h6 {
    font-size: 20px !important;
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
}

.blog_container p,
.blog_container li {
  font-family: "Montserrat", sans-serif;
 margin-bottom:0px;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #000;
}
.blog_container ul li, .blog_container ol li{
	
	margin-bottom:5px;
}
.blog_container a {
    color: #ba8d53;
    text-decoration: none;
}

.blog_container a:hover {
    color: #10306a;
}

.blog_container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.blog_container .page-content ul {
    margin-bottom: 20px!important;
}

/* RESPONSIVE */

@media (max-width:1024px){

    .blog_single_header {
        padding: 180px 30px;
    }

    .blog_single_header h1,
    h1.entry-title {
        font-size: 40px !important;
    }

    .blog_container h2 {
        font-size: 30px !important;
    }

    .blog_container h3 {
        font-size: 26px !important;
    }
}

@media (max-width:767px){

    div#categorie-menu ul {
        column-count: 1;
    }

    .contact-form {
        gap: 18px;
    }

    .contact-form .half,
    .contact-form .full {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px;
    }

    .contact-form input[type="submit"] {
        width: 100%;
    }

    .blog_single_header {
        width: calc(100% - 20px);
        margin: 10px auto;
        padding: 120px 20px;
    }

    .blog_single_header h1,
    h1.entry-title {
        font-size: 30px !important;
        line-height: 38px;
    }

    .blog_container {
        width: calc(100% - 30px);
        padding: 40px 0;
    }

    .blog_container h2 {
        font-size: 26px !important;
    }

    .blog_container h3 {
        font-size: 24px !important;
    }

    .blog_container h4 {
        font-size: 22px !important;
    }

    .blog_container h5 {
        font-size: 20px !important;
    }

    .blog_container h6 {
        font-size: 18px !important;
    }

    .blog_container p,
    .blog_container li {
        font-size: 15px;
        line-height: 26px;
    }
}