/*********FONTS*****

.montserrat-bold {
    font-family: 'Montserrat';
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Slab';
    src: url('RobotoSlab-Medium.woff2') format('woff2'),
        url('RobotoSlab-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.woff2') format('woff2'),
        url('Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*/
html,body{font-family: "Poppins", sans-serif;font-size: 16px;color: #4B4A4A;overflow-x: hidden;}
a:hover{text-decoration: none;color: #2597D6;}
a:focus{outline: 0;text-decoration: none;}
img{object-fit: cover;}
.dflex{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;}
.dflex-center{display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;align-items: center;justify-content: center;}

/* Images */
/* Begin Images */

p img {
    padding: 0;
    max-width: 100%;
    height: auto;
}

/*Using ‘class= »alignright »‘ on an image will (who would’vethought?!) align the image to the right. And using ‘class= »centered’, will of course center the image. This is much better than usingalign= »center », being much more futureproof (and valid) */
img.centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
img.alignright {
    padding: 4px;
    margin: 0 0 2px 7px;
    display: inline;
}
img.alignleft {
    padding: 4px;
    margin: 0 7px 2px 0;
    display: inline;
}
.alignright {
    /*float: right;*/
    text-align: right;
}
.alignleft {
    float: left;
}

/* End Images */
/* Captions */

.aligncenter, div.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption {
    border: 1px solid #ddd;
    text-align: center;
    background-color: #f3f3f3;
    color: #000;
    padding-top: 4px;
    margin: 10px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
.wp-caption img {
    margin: 0;
    padding: 0;
    border: 0 none;
}
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    padding: 0 4px 5px;
    margin: 0;
}


