/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}
h1, h2, h3, h4{
  margin: 0;
  padding: 0;
}


ul, li {
  margin: 0;
  padding: 0;
}

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


body {
/*   font-family: "Zen Old Mincho"; */
  word-wrap: break-word;
  background-color: white;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* form{
  max-width: 144rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 0;
}

/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
  /*   display: flex; */
  width: 100%;
  /*   justify-content: flex-start; */
}

.hs-input{
  width: 70% !important;
}
/* Labels */

form label {
  display: flex;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  width: 100%;
  /*   text-align: end; */
  text-align:start;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea{
  /*   display: inline-block; */
  display:flex;
  font-size: 0.875rem;
  padding: 0.7rem;
  width:100%;
}

/* .input{
width: 100%;
} */

.form-columns-1 .input{
  display: flex;
  flex-direction:row;
  /*   width: 50%; */
  width: 100%;
}

.form-columns-2{
  display: flex;
  justify-content: space-between;
  /*   width: 50%; */
  width: 100%;
  gap:1rem;

}

.form-columns-2 .input{
  display: flex;
  justify-content: space-between;
  width:100%;
/*   gap:5rem; */
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align:left;
  width:100%;
}


form .inputs-list > li {
  display: flex;
  margin: 0.7rem 0;
  width:100%;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
  width:100%;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
  display:flex;
  width:100%;
  max-width:2rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
  
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input{
  width: 100% !important; 
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  border:none;
  color:white;
  background-color:#ff7959;
  padding:1rem;
}

.hs_submit > .actions{
  margin:0 auto;
  display:flex;
  justify-content:center;
}




/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


 */
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/




/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* font and main css here */
/* @import url('http://example.com/example_style.css'); */

/* @import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/
html {
  font-family: serif;
}

p {
  font-size: 1.6rem;
  line-height: 180%;
}

h1 {
  font-size: 4.8rem;
  line-height: 180%;
}

h2 {
  font-size: 4rem;
  line-height: 180%;
}

h3 {
  font-size: 3.2rem;
  line-height: 180%;
}

h4 {
  font-size: 2.8rem;
  line-height: 180%;
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/
/* @import url('http://example.com/example_style.css'); */


html {
  font-size: 62.5%;
}

a {
  color: #000;
  text-decoration: none;
}



.main_section {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 60%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .main_section {
    width: 85%;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 46%;
  }

  .main_section {
    width: 90%;
  }
}

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */



.cm_blog-wrap{
  background: f5f5f5; 
  width:100%;
}

.cm_blog{
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width:144rem;
  width: 100%;
  padding:6rem 15rem;
}




.blog-post_wrap{
  background: #fff;
  max-width: 144rem;
  width:100%;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 2rem;
}

.blog-post_wrap .content-wrapper{
  width: auto !important;
  max-width: 100% !important;
}



.blogPost__hedder{
  display: flex;
  flex-direction:column;
  align-items: center;
  gap:4rem;
}
.blogPost__hedder > h1{



}
.blogPost__hedderL{
  /*   margin:0 2rem; */
  display:flex;
  width: 100%;
  gap:2.4rem;
}
.blogPost__hedderR{

}
.blogPost__tags{
  display:flex;
  flex-direction:row;
  gap:2rem;


}
.blogPost__tag{
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  padding: .4rem 1.3rem .4rem 1.3rem;
  background: var(--sub, #edf1f5);
  color: var(--accent, #2862ae);
  text-decoration: none;

}

.blogPost__date{
  display: flex;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;

}
.blogPost__date .publish{
  margin-right: 1rem;
}

.blogPost__title{
  font-size: 4rem;
  font-weight: 700;
  text-align:left;
}
.blogPost__authorName{
  margin-top: 0.5rem;
}
.blogPost__cta{
  margin-top: 0.5rem;
  display: flex;
}
.blogPost__cta .Document{
  margin-right: 1rem;
}
.blogPost__cta .Contact{

}
.blogPost__img{
  width: 100%;
  /*   margin-left: auto; */
}
.blogPost__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogPost__author{
  display: flex;
  flex-direction:row;
  width:100%;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  gap:2.4rem;
  /*   max-width: 1000px; */
  /*   margin: 2rem auto; */
}
.blogPost__authorL{
  /*   width: 100%; */
  display: flex;
  justify-content: center;
}
.blogPost__authorM{
  width: 100%;
}
.blogPost__authorR{
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;

}
.blogPost__author .avatar{
  /*   max-width: 150px; */
  width:100%;
}
.blogPost__author .avatar img{
  width: 100%;
}
.blogPost__author .name{
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  display:flex;
  flex-direction:column;

}
.blogPost__author .bio{
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;

}
.blogPost__author .sns{
  display: flex;
  margin-top: 1rem;
}
.blogPost__author .sns .twitter{
  margin-right: 1rem;
}
.blogPost__author .sns .youtube{

}
.richiText{
  margin: 2rem;

}


@media (max-width: 1200px){
  .cm_blog{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width:144rem;
    width: 100%;
    padding:5rem;
  }
  .blogPost__title{
    font-size: 4rem;
    font-weight: 700;
    text-align:left;
  }
  .blogPost__author{
    display: flex;
    flex-direction: column;
    text-align:center;
  }
  .blogPost__authorR{
    width: 100%;
    text-align:center;
  }
  .blogPost__author .bio{
    font-size: 1.6rem;
    font-weight: 400;
    text-align:center;
  }
  .blogPost__author .sns {
    flex-direction: column;
    align-items: center;
  }
}


/* @media (max-width: 550px){
.blogPost__author{
display: flex;
flex-direction: column;
}


.blogPost__author .sns {
flex-direction: column;
align-items: center;
}

.blogPost__author .sns .twitter{
margin-right: 0;
}
.blogPost__authorL{
width: 100%;
}
.blogPost__authorR{
width: 100%;
}
} */

/* TODO: Find a better place for this */
.content-wrapper {

}

.blog-header {
  background-color: ;
  text-align: center;
}

.blog-header__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}



.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;

}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem;
}


@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}

.blog-post img {
  max-width: 100%;
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('');
    }

.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: ;
}
.blog-index__post-content p {
  font-family: ;
}
.blog-index__post-content a {
  color: ;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: ;
  margin-bottom: 3.3rem;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: ;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: ;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: ;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-post h1 {
  font-size: 1.6rem;
}
.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: ;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: ;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: ;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: ;
  padding: 1rem;
}

@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}
.blog-comments .hs-button {
  background-color: transparent;
  border: 2px solid ;
  color: ;
}
.blog-comments .hs-button:hover {
  background-color: ;
  color: ;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: ;
}

/*             Blog Listing with Sidebar            */

.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}

/*             Blog Grid Listing            */

.blog-index__post.blog-index__post--small {
  display: flex;
}

.blog-index__post-inner-card {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  border-radius: 5px;
  background: #fff;
}

.blog-index__post-image {
  border-radius: 5px 5px 0 0;
}

.blog-index__post-inner-card .blog-index__post-content {
  display: flex;
  flex-direction: column;
  padding: 24px 30px 30px 30px;
  height: 100%;
}

.blog-post__tag-link,
.blog-post__tags {
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01rem;
}

.blog-post__tag-link:hover{
  text-decoration: none;
}

.blog-index__post-content--small h2 {
  font-size: 18px;
  line-height: 26px;
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  transition: all .5s;
}

.blog-post__meta-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 30px;
  font-size: 14px;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  position: relative;
  top: 3px;
  padding-left: 10px;
}

.blog-post__read-more svg {
  width: 15px;
  height: auto;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media screen and (max-width: 767px) {
  .blog-index.sidebar {
    padding: 1rem 0;
    padding-bottom: 3.3rem;
  }
}

/*             Blog Grid Listing with Sidebar            */

.blog-index.sidebar {
  display:flex;
}

@media screen and (min-width: 1000px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/2);
  }
}

@media screen and (max-width: 999px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/1);
  }
}

.blog-sidebar {
  padding-top: 3.9rem;
}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding: 2rem 1rem;
    padding-bottom: 0;
  }
}

.blog-sidebar h3 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
}

.blog-sidebar ul {
  padding: 30px;
  margin: 0 0 40px 0;
  list-style: none;
  border-radius: 5px;
  background: #fff;
}

.blog-sidebar ul li {
  padding: 10px 0;
  border-top: 1px solid #dfddd9;
  font-weight: 600;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  padding-left: 2.3em;
  line-height: 24px;
  text-indent: -2.3em;
}

.blog-sidebar-post-listing li:before {
  position: relative;
  width: 22px;
  float: left;
  content: counter(list-item);
  margin-right: 25px;
  font-size: 36px;
  font-weight: 600;
}

.blog-sidebar-post-listing li a {
  position: relative;
  top: -3px;
}

.blog-pagination.span12 {
  display: flex;
  margin-left: 0;
}

/* Mobile Blog Sidebar */

@media(max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: flex;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    order: 1;
  }

  .hs-blog-listing .span9 {
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    visibility: hidden;
    opacity: 0;
    transition: all 5s;
    display: none;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    visibility: visible;
    transition: all 1s;
    opacity: 1;
  }
}

/* Blog Subscription Section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  width: 40%;
  text-align: center;
}

@media (max-width: 768px) {
  .subscription-form {
    width: 85%;
  }
}

.subscription-form label {
  text-align: center;
}

/*             Blog Post Layout          */

.post-featured-image {
  margin-bottom: -110px;
  min-height: 300px;
  background-size: cover;
  border-radius: 5px;
  margin-top: 40px;
  background-position: center center;
}

.blog-post {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 84px 100px 80px 100px;
  background: #fff;
  border-radius: 5px;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__links {
  display: block;
  padding: 26px 0;
  margin-top: 20px;
}

.blog-post__back-to-blog {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  position: relative;
  top: 6px;
  margin-right: 10px;
  width: 20px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media (max-width: 767px) {
  .blog-post {
    width: 90%;
    padding: 30px;
  }
}

/* Blog Comments */

.blog-comments {
  max-width: 100%;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments form {
  margin-top: 2em;
  padding-top: 2em;
}

/* Related Articles */

.blog-recent-posts__list {
  flex-wrap: wrap;
}

.blog-recent-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-recent-posts .blog-post__meta-section {
  justify-content: flex-end;
}


/*--------*/

.blog-header {
}

.blog-header h2.contentslist-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.blog-index_wrap {
}

.blog-index_wrap .content-wrapper {
  padding: 0;
  position: relative;
}

.blog-header p.back-figure {
  left: -50px;
  top: -10px;
}

.post-listing {
}

.post-listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin: 100px 0 0 0;
  flex-wrap: wrap;
}

.post-listing:before {
  content: '';
  display: block;
  width: 28%;
}

.post-item {
  width: 28%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  margin-top: 20px;
}

.post-item:first-child,.post-item:nth-child(2) {
  margin-top: 0;
}

.post-item h3 {
  padding: 20px;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  margin: 0;
}

.post-item .body p {
  padding: 0 20px 20px 20px;
  font-weight: lighter;
  font-size: 14px;
  margin: 0;
}

.post-item .img {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 170px;
} 

/*-----------*/

.cm_blog.post .content-wrapper {
  max-width: 1020px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto 150px;
  width: 100%;
}

/* .blog-post-body-wrap h1.blog-post__title {
padding: 60px 0;
text-align: center;
font-size: 3rem;
margin: 0;
font-weight: normal;
line-height: inherit;
} */

.cm-post__body p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 14px auto;
}

.section.cm-post__body img:first-of-type {
  margin-top: 0;
  margin-bottom: 0;
  width:100%;
  max-width:35rem;
}

.section.cm-post__body h2 {
  margin-top: 2rem;
  font-size: 2.8rem !important;
  font-weight: bold !important;
  text-align: left;
  padding: 0.5rem 1rem;
  /*   border-left: 5px solid #000;
  background: #f4f4f4; */
}

.section.cm-post__body h2 span{
  font-size: 2.8rem !important;
}

.section.cm-post__body img {
  display: block;
  margin: 30px auto;
}

.section.cm-post__body h3 {
  margin-top: 2rem;
  font-weight: 700 !important;
  font-size: 2rem !important;
  /*   border-left: 5px solid #000; */
  padding-left: 14px;

}

.section.cm-post__body h3 span{
  font-size: 2rem !important;
  font-weight: 700 !important;
}

.section.cm-post__body ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}


/*--------*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

.author{
  display: none;
}

.post .author {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #000;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 800px;
  margin: 30px auto;
  padding: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  display: none;
}

.post .author p.author-ttl {
  border-radius: 3px;
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 0;
  text-align: center;
  line-height: 25px;
  height: 25px;
  position: absolute;
  left: -10px;
  top: -10px;
}

.post .author figure {
  margin: auto;
  DISPLAY: BLOCK;
}

.post .section .author figure img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 7px;
}

.post .author p.author-prof {
  width: calc(100% - 170px);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 15px;
}

.post .author p.author-prof > strong {
  font-size: 20px;
  font-weight: normal;
}

.post .author p.author-prof > span {
  display: inline-block;
  line-height: 2.5;
}

.post .author p.author-prof a.author_link {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  margin: 5px 5px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

.post .author p.author-prof a.author_link.link_twitter {
  background: #1da1f2;
}

.post .author p.author-prof a.author_link.link_youtube {
  background: #ff3f3f;
  margin-right: 0px;
}

.fa-youtube:before {
  content: "\f167";
}


.post .section .img_3c {
  max-width: 600px;
  margin: 60px auto;
}

.post .section .img_3c ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.post .section .img_3c ul > .img_3c-list {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  background: #E0EEEF;
  width: calc(50% - 10px);
  margin-bottom: 20px;
  border-radius: 50%;
  position: relative;
  padding: 20px;
}

.post .section .img_3c ul > li:nth-child(1) {
  background: #EF8B8B;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  margin: 0 auto -20px;
}

.post .section .img_3c ul > li:nth-child(2) {
  background: #9CD194;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.post .section .img_3c ul > li:nth-child(3) {
  background: #9AD6EB;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.post .section .img_3c ul > li:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.post .section .img_3c ul > li > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

li.img_3c-list {
}

.post .section .img_3c .img_3c-list h4 {
  border: 0;
  font-size: 40px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  color: #fff;
  font-weight: bold;
}

.img_3c .right-txt,.img_3c .left-txt,.img_3c .mutual-txt {
  text-align: center;
  position: absolute;
  margin: auto;
  z-index: 3;
}

.img_3c-customer .right-txt {
  right: -40%;
  bottom: 0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  color: #8C1A1A;
}

.img_3c-customer .left-txt {
  left: -35%;
  bottom: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  color: #8C1A1A;
}

.img_3c-company .left-txt {
  right: 45%;
  top: -23%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  color: #226B16;
}

.img_3c-company .mutual-txt {
  bottom: -10%;
  left: -45%;
  color: #166B61;
}

.img_3c-competitor .right-txt {
  color: #0E4B60;
  left: 45%;
  top: -23%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.fa, .far, .fas {
  font-family: "Font Awesome 5 Free";
}

.fa, .fas {
  font-weight: 900;
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.img_3c-list p, .img_3c-list i {
  margin: 0 auto;
}

.img_3c-list p {
  line-height: 1.5;
  font-weight: bold;
}

.img_3c-list i {
  font-size: 80px;
  line-height: 1;
}

.img_3c-customer .right-txt * {
  color: inherit;
}

.cm-post__body table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table[data-table2] {
  border: 0;
}

table[data-table2] th,table[data-table2] td {
  border: 1px solid #666;
  vertical-align: middle;
  padding: 15px;
}

table[data-table2] tr th {
  width: 33%;
}

table[data-table2] tr th:first-child {
  border-left: none;
  border-top: none;
}

table[data-table2] h4 {
  margin: 0;
  font-size: inherit;
  font-weight: normal;
}

table[data-table2] h5 {
  font-weight: normal;
  font-size: 20px;
  color: #666;
}

table[data-table2] h5 span {
  line-height: 1.5;
  padding: 5px;
}

table[data-table2] p {
  font-size: 1rem;
  line-height: 1.5;
  margin: .5em auto;
}

.cm-post__body ol {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.cm-post__body h4 {
  margin-top: 2rem;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  padding: 0.1rem 0.5rem;
  border-left: 3px solid #d8d8d8;
}
.cm-post__body h4 span{
  font-size: 1.2rem !important;
  font-weight: bold !important;
}

table[data-table3] td {
  border: solid 1px black;
  vertical-align: middle;
  padding: 0;
}

table[data-table4] * {
  font-size: inherit;
  font-weight: normal;
  padding: 0;
}

table[data-table4] th,table[data-table4] td {
  border: solid 1px black;
  text-align: center;
  vertical-align: middle;
}

table[data-table4] {
  font-size: 14px;
}

.table-wrap:not(.noScroll) {
  width: 100%;
  margin: 0 auto;
  overflow-x: scroll;
  overflow-y: hidden;
}

.cm-post__body table[data-table4] {
  margin: 0 auto 60px;
  font-size: 14px;
  width: 1000px;
}

.post-item.po2 .img {
  background-position: initial;
  background-size: contain;
}


.cm_blog-wrap .cont_grup .item a.btn {
  text-align: center;
}

/*----------------*/

@media(max-width:1020px){
  .cm_blog.post .content-wrapper {
    max-width: 620px;
    padding: 0 10px;
  }

  .blog-post-body-wrap h1.blog-post__title {
    padding: 150px 0 50px 0;
    font-size: 2.2rem;
  }


  .section.cm-post__body img:not(:first-child) {
    width: 400px !important;
  }

}


@media(max-width:800px){
  .blog-index_wrap.section-padding {
    padding: 60px 0 30px 0;
  }

  .blog-header p.back-figure {
    left: -50px;
    font-size: 100px;
    top: -30px;
  }

  .post-listing {
    display: block;
  }

  .post-item {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .blog-post-body-wrap h1.blog-post__title {
    padding: 130px 0 50px 0;
    font-size: 2.2rem;
  }

  .post .cont_grup .page-center {
    padding: 80px 0 30px 0;
  }

  .post  .t_hdr h2.title-right {
    font-size: 24px;
    margin: 0;
  }

  .post-item.po2 .img {
    background-size: cover;
    background-position: center;
  }
}

@media(max-width:768px){
  .post-item {
    margin-bottom: 50px;
  }

  .cm_blog.post .content-wrapper {
    max-width: 550px;
    margin: 0 auto 75px;
    padding: 5px 10px;
  }

  .blog-post-body-wrap h1.blog-post__title {
    font-size: 1.8rem;
  }

  .post .author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .post .author p.author-prof {
    width: 100%;
  }

  .section.cm-post__body h2 {
    font-size: 1.3rem !important;
    margin-bottom: 0;
  }

  .post .section .img_3c ul>li:nth-child(1) {
    margin-bottom: -10px;
  }

  .post .section .img_3c .img_3c-list h4 {
    font-size: 14px;
  }

  .img_3c-customer .right-txt {
    right: -55%;
    bottom: 3%;
  }

  .img_3c-customer .left-txt {
    left: -55%;
    bottom: 3%;
  }

  .img_3c-list p {
    font-size: 12px;
  }

  .img_3c-list i {
    font-size: 30px;
  }

  .img_3c-competitor .right-txt {
    left: 15%;
    width: 100%;
  }

  .img_3c-company .left-txt {
    width: 100%;
    right: 30%;
    top: -27%;
  }

  .img_3c-company .mutual-txt {
    left: -75%;
  }
  table[data-table2] tr th {
    width: 40%;
  }

  table[data-table2] th, table[data-table2] td {
    vertical-align: top;
    padding: 5px;
  }

  table[data-table2] tr th:first-child {
    width: 20%;
  }

  table[data-table2] tr:not(:first-child) {
  }

  table[data-table2] tr:not(:first-child) td h4 {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  table[data-table2] h5 {
    font-size: 14px;
    margin: 0;
  }

  table[data-table2] p {
    font-size: 14px;
    margin: 0 auto;
  }

  .cm-post__body h4 {
    font-size: 1.1rem !important;
  }


}
@media(max-width:479px){
  .blog-header p.back-figure {
    font-size: 50px;
    top: 50px;
    left: -25px;
  }
}



.Previous_Next{
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 1rem;
}

.previousPost,
.nextPost{
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.previousPost_post,
.nextPost_post{
  position: relative; 
}

.previousPost_img,
.nextPost_img{
  display: block;
  width: 100%;
  height: 100px;
}
.previousPost_img img,
.nextPost_img img{
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.previousPost_text,
.nextPost_text{
  font-size: 0.8rem;
  border-left: solid 5px #d8d8d8;
  transition: all 0.3s;
  margin-bottom: 0.5rem;
  padding: 0 0.2rem;
}

.previousPost:hover .previousPost_text,
.nextPost:hover .nextPost_text{
  border-left: solid 5px #000;
}

.previousPost_title,
.nextPost_title{
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
  padding: 0.5rem;
  display: block;
  font-size: .6rem;
  color: #fff;
  background: rgba(0,0,0,0.6);
}

.previousPost_title:hover,
.nextPost_title:hover{
  color: #fff;
}


.tags_serach{
  max-width: 1024px;
  margin:0 auto;
  padding: 1rem;
}
.tags{

}
.tags_ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.tags_li{
  margin: 0.3rem 0.2rem;
  padding: 3px 5px;
  border: solid 1px #fff;
  transition: all 0.3s;
  color: #000;
  background: #fff;
}
.tags_li:hover{
  border: solid 1px #d8d8d8;
  background: #000;
  color: #fff;
}
.tags_li:hover a{
  color: #fff;
}

.serach{

}



.Related_Popular{
  max-width: 1024px;
  margin: 0 auto;
}
.relatedPost,
.popularPost{
  margin: 2rem 1rem; 
}
.relatedPost .head,
.popularPost .head{
  margin-bottom:1rem;
  text-align: center;
}

.relatedPost .head span,
.popularPost .head span{
  font-size: 1.5rem;
  border-left: solid 5px #d8d8d8;
  padding: 0 0.2rem;
}

.relatedPost .posts,
.popularPost .posts{

}

.Related_Popular .post__title{
  margin-top: 0.3rem;
}

.blogPost__school{
  margin-top:2rem;
  font-size: 1.2rem;
}

.blogPost__name{

}

.blog-post-body-wrap p{
  font-size: 1.6rem !important;
}


.blogPost__title.document{
  font-size: 2rem;
  font-weight: bold;
}

.document_wrapper{
  display: flex;
  gap: 1rem;
}

.document_wrapper__body{
  width: 50%;
}

.document_wrapper__body .blogPost__tags{
  margin-top: 1rem;
}

.document_wrapper__form{
  width: 50%;
}

.blogPost__title.document{
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }

  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }

  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }

  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/2);
  }
}

@media screen and (max-width: 768px){
  .cm_blog{
    margin: 0 1rem;
    width: calc(100% - 2rem);
  }
  .document_wrapper{
    flex-direction: column;
  }
  .document_wrapper__body{
    width: 100%;
  }

  .document_wrapper__form{
    width: 100%;
  }
}