/*////////    reset css    /////////*/
 
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,
code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,
figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    }

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
    display: block;
}

body{
    line-height: 1;
}

ol,
ul{
    list-style: none;
}

blockquote,
q{
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after{
    content: '';
    content: none;
}

table{
    border-collapse: collapse;
    border-spacing: 0;
}

a:focus,
button:focus{
    outline: 0;
}

*,
*:before,
*:after{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    font-family: 'inter', sans-serif;
    font-size: 16px;
}

a{
    text-decoration: none;
}

h1,h2,h3,h4,h5,p{
    color: #000;
    padding-bottom: 30px;
}

p{
    line-height: 24px;
    color: #666;
    font-weight: 300;
}

a{
    color: #316bff;
}

.hr{
    width: calc(100% - 60px);
    max-width: 1350px;
    margin: 0 auto;
}

html{
    overflow-y: hidden;
    overflow-x: hidden;
}

@font-face{
  font-family: myfirstFont;
  src: url("Inter_24pt-Light.ttf");
}

@font-face{
  font-family: mysecondFont;
  src: url("Inter_24pt-Regular.ttf");
}

@font-face{
  font-family: myThirdFont;
  src: url("Inter_24pt-Bold.ttf");
}

.spacer_1{
  width: 100%;
  height: 30px;
}

/*/////////      CSS      //////////*/

body{
    background-color: white;
    font-family: mysecondFont;
    font-size: 16px;
}

.container{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.container__index{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 90px;
    padding: 0 30px;
    font-size: 32px;
}

.main-title{
    position: relative;
    width: 100%;
    margin-top: 100px;
    padding: 40px;
    text-align: center;
    font-size: 32px;
    color: #fff;
    background-color: #88a5ee;
}

.content{
    width: 70%;
    float: left;
}

.post{
    padding: 40px;
}

.header{
    position: fixed;
    z-index: 100;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    padding: 20px;
    background: #333;
    border-radius: 8px;
    box-shadow: 5px 8px 13px -6px #000000;
}

.header__menu{
    float: right;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.header__menu .menu-item{
    display: inline-block;
    color: #fff
}
.header__menu .menu-item a{
    padding: 5px 10px;
    color: #fff;
    text-decoration: none;
}
.header__menu .menu-item a:hover{
    font-size: 17px;
    font-weight: bold;
    color: rgb(0, 162, 255);
}

.footer{
    position: relative;
    width: 100%;
    height: 0px;
    padding: 0px;
    background: #333;
}

@media (max-width: 996px) {
    .header__icon__bar{display: none;}
}

@media (max-width: 767px) {

    .header__logo{margin-bottom: 20px;}
    .header__menu{width: 100%; height: 0;
        overflow: hidden;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }
    .header__menu .menu-item{display: block;}
    .header__icon__bar span{display: block; background-color: #fff; height: 2px; width: 23px; margin-bottom: 5px;;}
    .header__menu .menu-item a{display: block; padding: 8px 10px 3px 10px; border-bottom: 1px solid #888;}

    .header__icon__bar{display: block; float: right;}
    .show-menu{height: 110px; overflow: hidden;}

    .content,
    .sidebar{width: 100%}
 
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */