/*
	CSS STRUCTURE
	-----------------
	01. Import Font Family
	02. CSS Reset
	03. General Settings
	04. Header Settings
	05. About Settings
	06. Portfolio Settings
	07. Contact Settings
	08. Footer Settings
	09. Responsive Settings
*/

/* 01 IMPORT FONT FAMILY
--------------------------------------------------------------- */
/*@import url(http://fonts.googleapis.com/css?family=Montserrat);*/
/*@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,300);*/
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/MontserratRegular.eot');
  src: local('MontserratRegular'),
    url('../fonts/MontserratRegular.woff') format('woff'),
    url('../fonts/MontserratRegular.ttf') format('truetype');
}

:root {
  --red-light: #aa0505;
  --red-dark: #6a0c0b;
  --gold-light: #fbca03;
  --gold-dark: #b97d10;
  --sky-blue: #67C7E;
}

/* 02 CSS RESET
--------------------------------------------------------------- */
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;
}
sup {
  vertical-align: super;
  font-size: smaller;
}

/* 03 GENERAL SETTINGS
--------------------------------------------------------------- */

* {
  box-sizing: border-box;
}

.clear {
  clear: both;
}

body {
  background: #fff;
  font: 300 14px Montserrat, 'Open Sans', sans-serif;
  text-align: center;
  color: #333;
}

.body_hidden {
  overflow: hidden;
}

p {
  line-height: 2;
}

a {
  color: #a67d4a;
  text-decoration: none;
  transition: all 300ms linear;
}

a:hover {
  color: #999;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.btn {
  color: #252525;
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
  cursor: pointer;
  font-weight: 400;
  font-size: 18px;
  padding: 20px 40px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid transparent;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  font-weight: 700;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  background-color: #fec810;
  border-color: #fec810;
  color: #fff;
}

/* Section Titles */
.section_title {
  margin: 15px 0 15px 0;
  color: #a67d4a;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.section_subtitle {
  margin: 0 0 50px 0;
  font: italic 18px 'Open Sans', sans-serif;
  text-transform: none;
}

.section_description {
  text-align: left;
  margin-bottom: 2em;
}

/* Containers */
.container_small,
.container_big {
  width: 100%;
  margin: 0 auto;
}

.container_small {
  max-width: 900px;
}
.container_big {
  max-width: 1050px;
}

/* Fade-in Animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;

  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.fade-in.cmon {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/* 04 HEADER SETTINGS
--------------------------------------------------------------- */

.grad {
  background-image: linear-gradient(
    to right,
    #2b5876 0%,
    #4e4376 51%,
    #2b5876 100%
  );
}
.grad {
  background-image: linear-gradient(
    to right,
    #4776e6 0%,
    #8e54e9 51%,
    #4776e6 100%
  );
}
.grad {
  background-image: linear-gradient(
    to right,
    #7474bf 0%,
    #348ac7 51%,
    #7474bf 100%
  );
}
.grad:hover {
  background-position: right center;
}

#welcome {
  background: url('../images/training-mobile.jpeg') no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
}

#welcome::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 41, 50, 0.4);
  /*background-repeat: repeat;*/
}

.brand {
  position: relative;
}

.brand::before,
.content__title::before,
.header_title.logo::before {
  content: '';
  background: url('../images/logo.png');
  background-size: 50px 50px;
  background-repeat: no-repeat;
  display: block;
  width: 50px;
  height: 50px;
  position: relative;
  top: 15px;
}

.content__title::before {
  position: absolute;
  left: -85px;
  top: 10px;
  background-size: 80px 80px;
  width: 80px;
  height: 80px;
}

.header_title.logo::before {
  position: absolute;
  /*left: -65px;
    top: 0;*/
  left: -95px;
  top: -50px;
  background-size: 120px 120px;
  width: 120px;
  height: 120px;
}

.header_title.logo.tiny::before {
  left: -10px;
  top: -45px;
}

.nav-brand::after {
  content: '';
  background: url('../images/logo.png');
  background-size: 50px 50px;
  display: inline-block;
  width: 50px;
  height: 50px;
  position: relative;
  left: 50px;
  top: -5px;
}

.logo.block {
  display: inline-block;
  margin-top: 2em;
}

.logo.block img {
  width: 50px;
}

.logo > img {
  width: 100px;
}

.head-row .logo > img {
  width: 65px;
}

header .logo > img {
  width: 150px;
}

.content__title {
  display: inline-block;
  position: relative;
}

.head-row {
  display: grid;
}

.head-col1 {
  grid-column: 1;
  grid-row: 1;
}

.head-col3 {
  grid-column: 3;
  grid-row: 1;
}

footer .logo > img,
header .logo > img {
  margin-bottom: 2em;
}

#page {
  background: url('../images/opening-04-21-2019/2. Dr. G C Ukala, with the patients.jpg')
    no-repeat center;
  background-size: cover;
  width: 100%;
  height: 300px;
  position: relative;
}

#posts {
  background: url('../images/news-cover.jpg') no-repeat center;
  background-size: cover;
  width: 100%;
  height: 300px;
  position: relative;
}

#page::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 41, 50, 0.35);
  /*background-repeat: repeat;*/
}

#page .container_small {
  margin-top: 50px;
}

.fade {
  transition: 0.5s;
  background-size: 200% auto;
  background-image: linear-gradient(
    to right,
    #2b587640 0%,
    #4e437640 51%,
    #2b587640 100%
  );
  /*background: rgba(17,17,17, 0.4);*/
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.fade::hover {
  background-position: right center;
}

/* Header Titles */
.header_title {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
  margin: 0 0 20px 0;
  position: relative;
}

.header_title a {
  color: #fff;
}

.header_subtitle {
  color: #a67d4a;
  font-size: 16px;
  letter-spacing: 6px;
  line-height: 2em;
  font-weight: 600;
  text-shadow: 1px 1px 3px #000;
  margin-bottom: 80px;
  width: 80%;
  margin: 0 auto;
}

.header_subtitle > strong {
  font-family: Montserrat;
  font-weight: 1000;
  font-size: 20px;
}

.scroll_down {
  width: 100%;
  position: absolute;
  bottom: 25px;
  text-align: center;
  color: #fff;
}

#tagline {
  color: var(--red-light);
  font-family: Century Gothic, sans-serif;
  font-size: 20px;
  font-weight: 500;
  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, .3);*/
  position: relative;
  margin-top: 100px;
}

/* Vertical centering */
.parent {
  display: table;
}

.child {
  display: table-cell;
  vertical-align: middle;
}

/* Menu */
.burger {
  position: fixed;
  top: 50px;
  left: 50px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}

.burger.active .top {
  transform: translateY(10px) translateX(0) rotate(45deg);
}
.burger.active .middle {
  opacity: 0;
}
.burger.active .bottom {
  transform: translateY(-10px) translateX(0) rotate(-45deg);
}
.burger span {
  background: #a67d4a;
  border: none;
  height: 4px;
  width: 100%;
  position: absolute;
  top: 10px;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}

.burger span:nth-of-type(2) {
  top: 20px;
}
.burger span:nth-of-type(3) {
  top: 30px;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 1;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  z-index: 50;
}
.navigation:before {
  content: '';
  background: #111;
  left: -105%;
  top: 0;
  width: 100%;
  height: 100vh;
  position: absolute;
  transition: left 0.35s ease;
}

.navigation.open,
.navigation.close {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.navigation.open:before,
.navigation.close:before {
  left: 0;
}

.navigation.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
  animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.navigation.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}
.navigation.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}

.navigation nav {
  position: relative;
}

.navigation ul {
  list-style: none;
  display: inline-block;
  position: relative;
  margin: 10vh 0 0 0;
  padding: 0;
  height: 60vh;
}

.navigation ul li {
  display: block;
  position: relative;
  opacity: 0;
  height: 15vh;
  line-height: 20vh;
}

.navigation ul li a {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 6px;
}

.navigation ul li a:hover {
  color: #fff;
}

.simple_line {
  background: #252525;
  position: absolute;
  bottom: 0;
  left: calc(50% - 25px);
  width: 50px;
  height: 1px;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.clear:before,
.clear:after {
  content: ' ';
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  zoom: 1; /* ie 6/7 */
}

.col1 {
  padding: 0.5em;
  position: relative;
}

.col2 {
  position: relative;
  margin-bottom: 50px;
}

/* 05 ABOUT SETTINGS
--------------------------------------------------------------- */

.title {
  background-color: #70b6bc;
  color: #fff;
  display: block;
  font-size: 0.77778em;
  font-weight: 700;
  line-height: 1;
  padding: 3% 8%;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Montserrat;
}

.list-type {
  list-style: square;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  text-align-last: left;
}

#about {
  background: #fff;
  padding: 100px 50px 0 50px;
}

.button {
  margin: 50px 0 0;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  border: 2px solid #a67d4a;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 300ms linear;
}

.button:hover {
  background: #a67d4a;
  color: #fff;
}

h2 {
  font-size: 30px;
}

.mission {
  margin: 0 auto;
  margin-bottom: 0px;
}

.mission-content:last-child {
  margin-bottom: 0;
}

.mission-content {
  zoom: 1;
  margin-bottom: 6.5%;
  /*overflow: hidden;*/
  padding: 4% 0;
  position: relative;
}

.circle--background {
  background-color: #70b6bc;
  border-radius: 50%;
  left: 0;
  opacity: 0.1;
  padding-top: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  /*z-index: -1;*/
}

.mission-content h2,
.mission-content h4 {
  /* text-align: right; */
  width: 83%;
}

.mission-content h2 {
  line-height: 0.88;
  margin-bottom: -0.5%;
  padding-top: 4%;
  font-weight: bold;
  text-align: left;
}

.content--right h4 {
  /*margin-left: 17%;*/
  text-align: right;
  width: 83%;
}

.mission-content h4 {
  border-bottom: 6px solid #70b6bc;
  border-bottom-color: rgb(112, 182, 188);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 2%;
  padding-bottom: 1.5%;
}

.mission-content--right .mission-content__image {
  /*float: right;*/
  /*left: auto;*/
  margin-left: 0;
  margin-right: -27.5%;
  padding-left: 0;
  padding-right: 8.5%;
  right: 27.5%;
  position: relative;
}

.mission-content--right .mission-content__description {
  /*clear: right;
    float: right;
    left: auto;*/
  margin-left: 0;
  margin-right: -12.5%;
  padding-left: 0;
  padding-right: 8.5%;
  right: 12.5%;
}

.mission-content__description {
  /*  clear: left;
    float: left;*/
  left: 12.5%;
  margin-left: -12.5%;
  padding-left: 8.5%;
  padding-top: 3.2%;
  position: relative;
  width: 58%;
}
.mission-content__title {
  margin-bottom: 0;
  /*height: 180px;*/
  min-height: 130px;
  position: relative;
}

.mission-content__title a strong {
  font-weight: bold;
  font-size: 20px;
}

/*.mission-content__navigation.has-person {
    margin-top: 4%;
}*/

/*.mission-content--right .mission-content__navigation {
    padding-left: 6.5%;
    padding-right: 0;
}
*/
/*.mission-content__navigation {
    margin-top: -1.9%;
    padding-right: 6.5%;
    position: relative;
    width: 65%;
    z-index: 1;
}*/

.mission-list {
  padding: 7%;
  line-height: 2;
}

.mission-list li {
  margin-bottom: 15px;
  text-align: left;
  font-size: 16px;
}

.mission-list li h4 {
  -moz-text-align-last: left;
  text-align-last: left;
}

.mission-list .objectives {
  margin-left: 2em;
}

.events {
  padding-top: 4em;
}

.events h2 {
  font-size: 1.5em;
}

.events p {
  font-size: 1.8em;
  font-weight: bold;
}

.trustees li {
  margin-bottom: 10px;
}

.trustees {
  margin: 5px auto;
  text-align: left;
  list-style: initial;
  padding: 20px 50px 45px;
}

/* 06 PORTFOLIO SETTINGS
--------------------------------------------------------------- */

#portfolio {
  background: #f5f5f5;
  padding: 100px 50px 75px;
}

.works {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  /*margin-bottom: 3em;*/
}

.works article {
  position: relative;
  background: #fff;
  flex: 0 0 31.5%;
  -webkit-flex: 0 0 31.5%;
  margin: 0 0 25px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
}

.border {
  border: 5px solid #fff;
  overflow: hidden;
}

.works a:hover {
  color: #a67d4a;
}

.works img {
  display: block;
  transition: all 1000ms linear;
  overflow: hidden;
  box-shadow: #000 0 0 0;
}

.works img:hover {
  transform: scale(1.3);
  transition: all 5000ms linear;
}

.caption {
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: #a67d4a;
  font-size: 10px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 80vh;
}

/* Back text */
.featherlight .featherlight-close-icon:after {
  content: ' back';
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

/* ---------------------------------------
          [Gallery]
----------------------------------------- */
.gallery-title {
  margin-bottom: 2em;
}

.gallery {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 125px;
  grid-auto-flow: dense;
}

.gallery > div,
.gallery > article {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: #ffeead;
  overflow: hidden;
}

.gallery > div a,
.gallery > article a {
  width: 100%;
  height: 100%;
}

.gallery > div img,
.gallery > article img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery > div:hover img,
.gallery > article:hover img {
  transition: all 0.3s ease-in-out;
  transform: scale(1.2);
}

.horizontal {
  grid-column: span 2;
}

.vertical {
  grid-row: span 2;
}

.big {
  grid-column: span 2;
  grid-row: span 2;
}

.facts {
  text-align: left;
  list-style: initial;
}

.facts li {
  padding: 0.8em 0;
}

.row {
  /* IE10 */
  display: flex; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/* 07 CONTACT SETTINGS
--------------------------------------------------------------- */

#contact {
  background: #fff;
  padding: 100px 50px;
}

.info {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  margin: 0 0 50px 0;
}

.info div {
  flex: 0 0 31.5%;
  -webkit-flex: 0 0 31.5%;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
}

.info div:first-child,
.info div:last-child {
  border: 0;
}

.info .fa {
  font-size: 36px;
  margin: 0 0 10px 0;
}

.info h3 {
  color: #a67d4a;
  margin: 0 0 15px 0;
}

/* Social icons */
.social {
  max-width: 250px;
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  margin: 0 auto;
}

.social a {
  flex: 0 0 30px;
  -webkit-flex: 0 0 30px;
  border: 2px solid #a67d4a;
  height: 30px;
  line-height: 26px;
  font-size: 16px;
  color: #a67d4a;
  transition: all 300ms linear;
}

.social a:hover {
  background: #a67d4a;
  color: #fff;
}

/* 08 FOOTER SETTINGS
--------------------------------------------------------------- */

footer {
  background: #f5f5f5;
}

.container_footer {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 50px 50px 0;
  overflow: hidden;
}

footer p {
  line-height: 1;
  margin: 1.5em 0;
}

.left,
.right {
  width: 50%;
}

.left {
  float: left;
  text-align: left;
}

.left span {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.right {
  float: right;
  text-align: right;
  text-transform: uppercase;
}

.right a {
  color: #999;
}

.right a:hover {
  color: #a67d4a;
}

/* 09 RESPONSIVE SETTINGS
--------------------------------------------------------------- */

/* Width */
@media (max-width: 768px) {
  .burger {
    top: 25px;
    left: 25px;
    height: 35px;
    width: 35px;
  }

  .section_subtitle {
    margin: 0 0 30px 0;
  }
  #about,
  #contact {
    padding: 80px 25px;
  }

  #portfolio {
    padding: 80px 25px 65px;
  }

  .works article {
    flex: 0 0 48%;
    -webkit-flex: 0 0 48%;
    margin: 0 0 15px;
  }

  .featherlight .featherlight-close-icon {
    top: -20px !important;
  }
  .featherlight-iframe .featherlight-content {
    width: 65% !important;
  }

  .container_footer {
    padding: 60px 25px;
  }
}

@media (max-width: 480px) {
  .works article {
    flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
  }

  .info div {
    flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    padding: 20px 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #e1e1e1;
    border-top: 1px solid #e1e1e1;
  }

  .info div:first-child {
    padding-top: 0;
  }

  .info div:last-child {
    padding-bottom: 0;
  }

  .info {
    margin: 0 0 35px 0;
  }

  .social {
    max-width: 200px;
  }
}

@media (max-width: 360px) {
  .container_footer {
    padding: 30px 25px;
  }
  .left,
  .right {
    width: 100%;
    text-align: center;
  }
  .left {
    padding: 0 0 15px 0;
  }
}

/*------------------------------------------------------------------
[Mobile First Media Queries]
*/

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  .brand::before,
  .content__title::before,
  .header_title.logo::before {
    position: relative;
    display: block;
    margin: 1.5em auto;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  #welcome {
    background: url('../images/training.jpg') no-repeat center;
    background-size: cover;
  }

  .events h2 {
    font-size: 1.8em;
  }

  .events {
    padding-top: 2em;
  }

  .mission-content__title a strong {
    font-weight: bold;
    font-size: 28px;
  }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  .mission {
    min-width: 320px;
    /*margin-bottom: 65px;*/
  }

  .col1 {
    width: 60%;
    float: left;
  }

  .col2 {
    width: 30%;
    padding: 2em;
    float: right;
    position: relative;
  }
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .brand::before,
  .content__title::before,
  .header_title.logo::before {
    position: block;
    display: inline-block;
    margin: 0 auto;
  }
  .header_title.logo::before {
    position: absolute;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
}
