/*
Theme Name: velan-blog
Theme URI: https://underscores.me/
Author: Underscores.me
Author URI: https://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: velan-blog
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

velan-blog is based on Underscores https://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.com/normalize.css/
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
textarea {
    color: #404040;
    font-family: sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}


/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, .8);
    font-size: 12px;
    line-height: 1;
    padding: .6em 1em .4em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
}

select {
    border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

textarea {
    width: 100%;
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
    color: royalblue;
}

a:visited {
    color: purple;
}

a:hover,
a:focus,
a:active {
    color: midnightblue;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}


/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 1.5em;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul ul li {}

.main-navigation li:hover>a,
.main-navigation li.focus>a {}

.main-navigation ul ul :hover>a,
.main-navigation ul ul .focus>a {}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
    left: auto;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
    left: 100%;
}

.main-navigation .current_page_item>a,
.main-navigation .current-menu-item>a,
.main-navigation .current_page_ancestor>a,
.main-navigation .current-menu-ancestor>a {}


/* Small menu. */

.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media only screen and (max-width: 37.5em) {
    .blog-page .content-area {
        width: 95% !important;
    }

    .side-area {
        width: 95% !important;
        padding-left: 1%;
    }
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: block;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}


/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget {
    margin: 0 0 1.5em;
}


/* Make sure select elements fit in widgets. */

.widget select {
    max-width: 100%;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
    display: none;
}

.single .byline,
.group-blog .byline {
    display: inline;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}


/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation,

/* Older / Newer Posts Navigation (always hidden) */

.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}


/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */

.infinity-end.neverending .site-footer {
    display: block;
}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}


/* ----------------custom style -------------- */

.site-content {
    max-width: 1170px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    ;
}

.blog-page .content-area {
    width: 70%;
    display: inline-block;
}

.widget-area {
    width: 30%;
    float: right;
    padding-top: 5%;
}

.widget-area li a {
    color: red;
}

.widget-title {
    color: #3e3e3e;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.post-image img {
    max-height: 500px;
}

.entry-header {
    border-top: 0;
}

.side-area ul {
    margin: 0 0 1.5em 1em;
}

.side-area {
    width: 25%;
    float: right;
    padding-top: 5%;
}

.side-area li a {
    color: #039be5;
}

.side-title {
    color: #3e3e3e;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.post-body,
.custom_listing_comments,
#hubspot-topic_data {
    font-family: 'pt_serifregular';
}

.post-body table,
.post-body th,
.post-body td {
    border: 1px solid #666;
}

#side ul li a:hover {
    color: #2a6496;
}

table td,
table th {
    padding: 5px;
}


/* ## Comments
--------------------------------------------- */

.comment-respond,
.entry-pings,
.entry-comments {
    color: #444;
    padding: 20px 45px 40px 45px;
    border: 1px solid #ccc;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #444;
}

.entry-comments h3 {
    font-size: 30px;
    margin-bottom: 30px;
}

.comment-respond h3,
.entry-pings h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.comment-respond {
    padding-bottom: 5%;
    margin: 20px 1px 20px 1px;
    border-left: none !important;
}

.comment-header {
    color: #adaeb3;
    font-size: 14px;
    margin-bottom: 20px;
}

.comment-header cite a {
    border: none;
    font-style: normal;
    font-size: 16px;
    font-weight: bold;
}

.comment-header .comment-meta a {
    border: none;
    color: #adaeb3;
}

li.comment {
    background-color: #fff;
    border-right: none;
}

.comment-content {
    clear: both;
    overflow: hidden;
}

.comment-list li {
    font-size: 14px;
    padding: 20px 30px 20px 50px;
}

.comment-list .children {
    margin-top: 40px;
    border: 1px solid #ccc;
}

.comment-list li li {
    background-color: #f5f5f6;
}

.comment-list li li li {
    background-color: #fff;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
    width: 50%;
}

.comment-respond label {
    color: #111;
    display: block;
    font-size: 16px;
    font-weight: 100;
    margin-right: 12px;
}

.entry-comments .comment-author {
    margin-bottom: 0;
    position: relative;
}

.entry-comments .comment-author img {
    border-radius: 50%;
    border: 5px solid #fff;
    left: -80px;
    top: -5px;
    position: absolute;
    width: 60px;
}

.entry-pings .reply {
    display: none;
}

.bypostauthor {}

.form-allowed-tags {
    background-color: #f5f5f5;
    font-size: 16px;
    padding: 24px;
}

.comment-reply-link {
    cursor: pointer;
    background-color: #444;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 4px 10px 4px;
    text-transform: uppercase;
    width: auto;
}

.comment-reply-link:hover {
    color: #fff;
}

.comment-notes,
.comment-form-url {
    display: none;
}

.comment-respond .submit:hover {
    background-color: #2bbbad;
    color: #fff;
    box-shadow: none;
}

.comment-respond .submit {
    text-decoration: none;
    text-align: center;
    letter-spacing: .5px;
    -webkit-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    -ms-transition: .2s ease-out;
    transition: .2s ease-out;
    cursor: pointer;
    background: #f2f1f7;
    color: #000000;
    height: 40px;
    border: none;
    border-radius: 2px;
    display: inline-block;
    line-height: 40px;
    outline: 0;
    padding: 0 2rem;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
}

.main_page_content header.entry-header {
    display: none !important;
}

.main_page_content {
    margin-top: 10px;
}

.bdp_blog_template .blog_header h1 a:hover {
    color: #d41212;
}

.bdp_blog_template .blog_header .metadatabox .metacomments {
    margin-right: 10px;
}


/* custom styles */

a {
    color: #039be5;
}

.blog img {
    margin-bottom: 15px;
}

#recent-posts {
    display: none;
}

.blog:after {
    content: "";
    display: block;
    border-bottom: 1px solid #ccc;
    margin: 30px auto;
}

.blog-header h2 a {
    display: block;
    color: #000;
    font-size: 22px;
    margin: 10px auto;
    font-weight: 600;
}

#categories h2 {
    text-transform: uppercase;
}

.blog-header h2:after,
#categories h2:after {
    content: "";
    display: block;
    border-bottom: 1px solid #ccc;
    margin: 15px 0 20px 0;
    width: 20%;
}

.blog-header h2 a:hover {
    color: #164375;
}

.postedBy a span,
.blog-content a {
    color: #039be5;
}

.postedBy span:after {
    content: "";
    border-right: 1px solid #ccc;
    margin: 5px;
}

.postedOn {
    font-style: italic;
}

.blog-content p {
    text-align: justify;
}

.blog-content a {
    font-style: italic;
    text-decoration: underline;
}

.fa-comment {
    color: #000;
    padding: 0 !important;
}

.fa {
    padding: 10px;
}

.social i.fa-facebook {
    color: #4867aa;
}

.social i.fa-twitter {
    color: #1da1f2;
}

.social i.fa-square-x-twitter {
    color: #000;
}

.social a i.fa-square-x-twitter:hover {
    background: #000;
    color: #fff;
}

.fa-brands {
    padding: 10px;
}

.social i.fa-google-plus {
    color: #cc453a;
}

.social i.fa-linkedin {
    color: #0177b5;
}

.social a i.fa-facebook:hover {
    color: #fff;
    background: #4867aa;
}

.social a i.fa-twitter:hover {
    background: #1da1f2;
    color: #fff;
}

.social a i.fa-google-plus:hover {
    background: #cc453a;
    color: #fff;
}

.social a i.fa-linkedin:hover {
    background: #0177b5;
    color: #fff;
}

.site-content .side-area #categories ul li {
    padding: 5px 0;
}

.site-content .side-area #categories ul li:before {
    content: "\27A4";
    color: #164375;
    margin-right: 8px;
    font-size: 12px;
}


/* 20-08-18 */


/* blog page */

.header-area .menuzord-menu>li:hover>a,
.header-area .menuzord-menu>li.active>a {
    transition: all .5s;
    color: #222222 !important;
}

.header-area .menuzord-menu>li>a:before {
    background: #222222 !important;
}

.blog-paginate {
    margin-bottom: 50px;
}

.blog-paginate .page-numbers {
    padding: 10px;
    color: #000 !important;
}

.blog-paginate .page-numbers:hover,
.blog-paginate .page-numbers.current {
    background: #000;
    color: #fff !important;
    display: inline-block;
}


/* blog inner page */

.bdp_blog_template a:hover {
    background: #4867aa;
    color: #fff;
}

.bdp_blog_template a.twitter:hover {
    background: #000;
}

.bdp_blog_template a.google:hover {
    background: #cc453a;
}

.bdp_blog_template a.linkedin:hover {
    background: #0177b5;
}

.comment-form .comment-form-comment textarea {
    resize: vertical;
}


/* blog cta */

.flex-container {
    display: flex;
    background: #3db787;
    padding: 30px;
    height: auto;
    align-items: center;
    margin: 20px 0 0 0;
}

.flex-child.magenta {
    width: 72%;
}

.flex-child.green {
    width: 25%;
}

.flex-child p {
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Raleway";
    margin: 0;
    padding-right: 10px;
}

.flex-child b {
    font-weight: 700;
}

.flex-child a {
    width: auto;
    height: 50px;
    color: #fff;
    font-size: 13px;
    background: #2675d6;
    font-weight: 700;
    border: 2px solid #ffffff;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    padding: 10px 25px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.flex-child:last-child {
    /* justify-content: flex-end; */
    margin-left: auto;
}

.blog-contact-form {
    padding: 0px 50px;
    /* border: 1px solid black; */
}

.blog-contact-label {
    font-size: 15px;
    font-family: "Raleway";
    font-weight: 500;
    color: #696969;
    display: block;
}

.blog-contact-form input[type="submit"] {
    border: 2px solid #1bb580;
    border-radius: 0;
    font-size: 13px;
    line-height: 1;
    margin: 20px 0 0;
    padding: 17px 26px;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .02em;
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    transition: .3s linear;
    background-color: #1bb580;
    color: #fff;
    outline: 0;
    box-shadow: none;
    border-radius: 5px;
}

.blog-contact-form input[type="submit"]:hover {
    background-color: #000;
    color: #fff;
    border: none;
}

.blog-contact-form h2 {
    font-weight: 500;
    font-size: 30px;
    color: #333;
    font-family: "Raleway";
    margin-bottom: 30px;
}

.blog-contact-label textarea {
    height: 100px;
    margin-top: 10px;
}


/*.blog-contact-form input[type="submit"]:hover{
	background: #000;
	color: #fff;
	border:none;
} */


/* logo */

.normalLogo {
    margin-top: 10px;
}

.fixedLogo {
    margin-top: 0px;
}

@media(max-width:915px) {
    .flex-container {
        flex-direction: column;
        height: auto;
    }

    .flex-child p {
        font-size: 18px;
        text-align: center;
        padding: 0px;
    }

    .flex-child:last-child {
        /* justify-content: flex-end; */
        margin-left: 0px;
        padding-top: 15px;
    }

    .flex-child a {
        font-size: 12px;
    }

    .flex-child.magenda {
        width: auto;
    }

    .flex-child.green {
        width: auto;
    }
}

@media only screen and (max-width:767px) {

    .header-area .menuzord-menu>li:hover>a,
    .header-area .menuzord-menu>li.active>a {
        color: #fff !important;
    }
}