body{
  font-family: 'Roboto', 'Helvetica', sans-serif;
  padding: 0;
  margin: 0;
  background: #eee;
}

.site-header{
  min-height: 55.95px;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 0px;
  background: #2F489A;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}


.navigation{
  max-width: calc(100% - (30px * 2));
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

.brandlogo {
  width: 47%;
}

.navbar {
  width: 100%;
  max-width: unset;
  padding-right: 15px;
  padding-left: 15px;
}

.nav-link{
  color: white;
  font-weight: bold;
  line-height: 1.5;
}
.nav-link:hover {
  color: #3FA9F3;
}

.active{
  color: #3fa9f3;
}

a {
  color: #1da1f2;
  text-decoration: none;
/*  font-weight: bold;*/
}

#fm-medium-embed{
  box-sizing: border-box;
  margin: 8% 5% auto;
  text-align: center;
}

.fm-post-wrapper{
  display: inline-block;
  border-radius: 5px;
  width: 400px;
  padding: 15px;
  background: #ffffff;
  text-align: left;
  margin: 10px;
  min-height: 350px;
  border: 1px solid #1DA1F2;
  box-shadow: 0 0px 8px rgba(0,0,0,0.35);
}

.fm-post-title{
  font-size: 20px;
  height: 25px;
  white-space: nowrap;
  padding-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1DA1F2;
}

.fm-post-sub-title{
  min-height: 130px;
  line-height: 24px;
  color: #000000;
}

.fm-medium-profile{
  margin-top: 10px;
  padding: 5px;
  display: block;
}

.fm-medium-profile a{
  display: inline-block;
  background: #ffffff;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #1DA1F2;
  box-shadow: 0 0px 8px rgba(0,0,0,0.35);
}

.site-footer {
  background-color: #2F489A;
  padding: 6% 0px;
  position: relative;
  margin-top: 6%;
  -moz-box-shadow:     0 0 6px #000000;
  -webkit-box-shadow:  0 0 6px #000000;
  box-shadow:          0 0 6px #000000;
}

.footer-col-wrapper {
    font-size: 15px;
    color: #828282;
    margin-left: -15px;
}

.footer-link{
  color: white;
}

.footer-col {
    float: left;
    margin-bottom: 15px;
    padding-left: 15px;
}

.logo {
  width: 5%;
}

.footer-col-half {
  display: inline-block;
  padding-left: 5%;
}

.brandlogonew{
  width: 20%;
}
.directionRtl{
  text-align: right;
  color: white;
}

label input {
  display: none;
}

/*---------------------------media query-----------------------------*/

@media only screen and (max-width: 600px) {
.fm-post-wrapper{
  display: inline-block;
  border-radius: 5px;
  width: 300px;
  padding: 15px;
  background: #ffffff;
  text-align: left;
  margin: 10px;
  min-height: 350px;
  border: 1px solid #1DA1F2;
  box-shadow: 0 0px 8px rgba(0,0,0,0.35);
}

#fm-medium-embed{
  box-sizing: border-box;
  margin: 25% 2% auto;
  text-align: center;
}

.navigation {
  max-width: calc(100% - (30px * 2));
  margin: 0;
  padding-left: 0px;
  padding-right: 0px;
}
.brandlogo {
  text-align: left;
}

.nav-link{
  color: white;
  font-weight: normal;
  line-height: 1.5;
  font-size: 19.2px;
}

.nav-link.active {
  color: #3FA9F3;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}


label .menu {
  position: absolute;
  right: -100px;
  top: -100px;
  z-index: 100;
  width: 150px;
/*  height: 200px;*/
/*  background: #FFF;*/
  border-radius: 50% 50% 50% 50%;
  transition: .5s ease-in-out;
  box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
  cursor: pointer;
}
label .hamburger {
  position: absolute;
  top: 135px;
  left: 50px;
  width: 30px;
  height: 2px;
  background: #FFF;
  display: block;
  -webkit-transform-origin: center;
          transform-origin: center;
  transition: .5s ease-out;
}
label .hamburger:after, label .hamburger:before {
  transition: .5s ease-out;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #FFF;
}
label .hamburger:before {
  top: -10px;
}
label .hamburger:after {
  bottom: -10px;
}
label input {
  display: none;
}
label input:checked + .menu {
  box-shadow: 0 0 0 100vw #000014, 0 0 0 112vh #000014;
  border-radius: 0;
  /* opacity: 0.8; */
}
label input:checked + .menu .hamburger {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
label input:checked + .menu .hamburger:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  bottom: 0;
}
label input:checked + .menu .hamburger:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}
label input:checked + .menu + ul {
  opacity: 1;
}
label ul {
  z-index: 200;
  position: absolute;
  top: 300%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  transition: .25s 0s ease-out;
}
label a {
  /* margin-bottom: 1.5em; */
  margin: 20px auto;
  display: block;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
}   
}