body {
  font-family: 'Montserrat', sans-serif;
}

/* Basic */

a {
  color: #3cf;
  text-decoration: none;
}

a:hover {
  color: #fc3;
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

p {
  font-size: 13px;
  line-height: 22px;
}

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: rgba(250, 250, 250, 0.1);
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translate(-50%);
}

.section-heading h2 {
  margin-top: 100px;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid rgba(250, 250, 250, 0.1);
}

/* Buttons */

.main-button a {
  background-color: #f5a425;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 12px 20px;
  display: inline-block;
  outline: none;
  transition: 0.2s;
  border-radius: 2px;
}
.main-button a:hover {
  opacity: 0.9;
  transition: 0.2s;
}

a.menu-link {
  display: none;
}

@media screen and (max-width: 950px) {
  a.menu-link {
    float: right;
    display: block;
    font-size: 36px;
    color: #fff;
    padding-right: 30px;
    padding-top: 15px;
  }
  nav[role='navigation'] {
    clear: both;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .js nav[role='navigation'] {
    overflow: hidden;
    max-height: 0;
  }
  nav[role='navigation'].active {
    min-height: 100vh;
  }
  nav[role='navigation'] ul {
    top: 35px;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(250, 250, 250, 0.25);
    background-color: rgba(22, 34, 57, 0.99);
  }
  nav[role='navigation'] li a {
    display: block;
    padding: 15px 0px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.25);
    text-align: center;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.5;
  }
  nav[role='navigation'] li:hover a,
  nav[role='navigation'] li.active a {
    color: #f5a425;
  }

  @media screen and (min-width: 951px) {
    .js nav[role='navigation'] {
      max-height: none;
    }

    nav[role='navigation'] li {
      display: inline-block;
      margin: 0 0.25em;
    }
    nav[role='navigation'] li a {
      border: 0;
    }
  }
}

/* Header */

@media screen and (max-width: 1050px) {
  .main-menu li {
    margin-left: 5px !important;
  }
}

.main-header {
  background-color: rgba(22, 34, 57, 0.95);
  min-height: 80px;
  position: fixed;
  z-index: 12;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media screen and (max-width: 950px) {
  .main-header {
    display: block;
  }
  .main-header .logo {
    float: left;
    display: block;
  }
}

.main-header .logo a {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}
.main-header .logo a em {
  font-style: normal;
  color: #f5a425;
}

.main-menu {
  text-align: right;
}

.main-menu li {
  display: inline-block;
  line-height: 45px;
  margin-left: 15px;
  position: relative;
}

.main-menu li:first-child {
  margin-left: 0px;
}

.main-menu li a {
  padding: 10px 15px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #fff;
  border: 2px solid transparent;
  transition: all 0.5s;
}

.main-menu li.has-submenu a:after {
  content: '\f107';
  font-family: 'FontAwesome';
  margin-left: 5px;
}

.main-menu li.has-submenu ul li a:after {
  display: none;
}

.main-menu li .sub-menu {
  position: absolute;
  width: 160px;
  background-color: #18233a;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: all 0.5s;
}

.main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.main-menu li .sub-menu li {
  display: block;
  line-height: 20px;
  margin-left: 0px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #121b2f;
}

.main-menu li .sub-menu li:first-child {
  padding-top: 15px;
}

.main-menu li .sub-menu li:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.main-menu li .sub-menu li a {
  font-size: 12px;
  font-weight: 400;
  padding: 0px 15px;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.5s;
}

.main-menu li .sub-menu li a:hover {
  color: #f5a425;
  border: none;
}

.main-nav li:hover a,
.main-nav li.active a {
  border: 2px solid #f5a425;
}

@media (max-width: 950px) {
  .main-nav {
    top: -34px;
    position: relative;
  }

  .main-nav li:hover a,
  .main-nav li.active a {
    border: 2px solid transparent;
    border-bottom: 1px solid rgba(250, 250, 250, 0.25);
  }
}

/* Slider */

.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  background-color: rgba(22, 34, 57, 0.85);
  top: 0;
  left: 0;
  bottom: 7px;
  width: 100%;
}

.main-banner .caption {
  text-align: center;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 64px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 800;
}

@media screen and (max-width: 1180px) {
  .main-banner .caption h6 {
    font-weight: 400;
  }

  .main-banner .caption h2 {
    font-size: 58px;
  }
}
@media screen and (max-width: 767px) {
  .main-banner .caption h6 {
    font-weight: 400;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }
}

/* Features */

section.features .col-4 {
  padding-left: 0px;
  padding-right: 0px;
}

.features-post {
  position: relative;
  margin-bottom: 0px;
}

.features-thumb {
  overflow: hidden;
  position: relative;
}

.features-thumb img {
  width: 100%;
}

.features-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0c1228;
  color: #fff;
  padding: 40px;
}

.features-content:hover {
  background-color: #f5a425;
  opacity: 0.85;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

.features-content h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0px;
}

.features-content h4 i {
  margin-right: 15px;
  font-size: 24px;
}

.features-content p {
  margin-bottom: 0px;
}

.features-content a {
  margin-top: 15px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid #fff;
}

.features-content p.hidden-sm {
  display: none;
}

.second-features,
.third-features {
  border-left: 1px solid rgba(250, 250, 250, 0.1);
}

.content-hide {
  margin-top: 15px;
  display: none;
}

.content-hide p {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .features-content {
    padding: 15px;
  }
  .features-content h4 i {
    display: block;
    margin-bottom: 10px;
  }
  .features-content h4 {
    font-size: 14px;
  }
  .features-content p {
    display: none;
  }
  .features-content p.hidden-sm {
    display: block;
  }
  .features-content a {
    letter-spacing: 0px;
    font-size: 13px;
    font-weight: 700;
  }
}

/* Coming Soon */

section.coming-soon {
  background-image: url(../images/help-form-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding: 120px 0px;
}

section.coming-soon .continer .counter div {
  display: inline-block;
}
section.coming-soon .continer h4 {
  margin-top: 100px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 50px;
}
section.coming-soon .continer h4 em {
  font-style: normal;
  color: #f5a425;
}

@media screen and (max-width: 767px) {
  section.coming-soon .continer h4 {
    text-align: center;
  }
}

section.coming-soon .continer .counter .days,
section.coming-soon .continer .counter .hours,
section.coming-soon .continer .counter .minutes,
section.coming-soon .continer .counter .seconds {
  width: 22%;
  height: 140px;
  float: left;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
}
@media screen and (max-width: 992px) {
  section.coming-soon .continer .counter .days,
  section.coming-soon .continer .counter .hours,
  section.coming-soon .continer .counter .minutes,
  section.coming-soon .continer .counter .seconds {
    font-size: 26px;
  }

  section.coming-soon .continer .counter .days .value,
  section.coming-soon .continer .counter .hours .value,
  section.coming-soon .continer .counter .minutes .value,
  section.coming-soon .continer .counter .seconds .value {
    margin-top: 40px !important;
  }

  section.coming-soon .continer .counter span {
    font-size: 14px !important;
  }
}
section.coming-soon .continer .counter .days,
section.coming-soon .continer .counter .hours,
section.coming-soon .continer .counter .minutes {
  margin-right: 4%;
}
section.coming-soon .continer .counter .days .value,
section.coming-soon .continer .counter .hours .value,
section.coming-soon .continer .counter .minutes .value,
section.coming-soon .continer .counter .seconds .value {
  margin-top: 15px;
  display: block;
  width: 100%;
}

section.coming-soon .continer .counter span {
  font-size: 18px;
  text-transform: uppercase;
  color: #f5a425;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 0px;
  display: block;
}

section.coming-soon .right-content {
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  section.coming-soon .right-content {
    margin-top: 60px;
    margin-left: 0px;
  }
}

section.coming-soon .top-content {
  margin-bottom: -8px;
}

section.coming-soon .top-content h6 {
  font-size: 14px;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.2);
  padding: 40px;
  text-align: center;
  line-height: 24px;
}

section.coming-soon .top-content h6 em {
  font-style: normal;
  font-weight: 700;
}

section.coming-soon form {
  background-color: rgba(250, 250, 250, 0.1);
  padding: 60px 40px;
  width: 100%;
  text-align: center;
}

section.coming-soon form input {
  width: 100%;
  height: 40px;
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 0px;
  border: none;
  outline: none;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

section.coming-soon form input:focus {
  outline: none;
  border: none;
  box-shadow: none;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
}

section.coming-soon form::placeholder {
  color: #fff;
}
section.coming-soon form input::placeholder {
  color: #fff;
}
section.coming-soon form input::placeholder {
  color: #fff;
}

section.coming-soon form button {
  margin-top: 10px;
  background-color: #f5a425;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 12px 20px;
  display: inline-block;
  outline: none;
  box-shadow: none;
  border: none;
  transition: 0.2s;
  border-radius: 2px;
}
section.coming-soon form button:hover {
  opacity: 0.9;
  transition: 0.2s;
}

/* Video */

section.video {
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding: 120px 0px;
}

section.video .left-content {
  color: #fff;
}

section.video .left-content span {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

section.video .left-content h4 {
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 20px;
}
section.video .left-content h4 em {
  font-style: normal;
  color: #f5a425;
}

section.video .left-content .main-button {
  margin-top: 30px;
}

.video-item {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0px auto 0;
}

@media screen and (max-width: 767px) {
  section.video .left-content {
    margin-bottom: 45px;
  }

  section.video .first-item .first-content h4,
  section.video .second-item .second-content h4 {
    text-align: center;
  }
}

.video-item figure {
  position: relative;
  width: 100%;
  font-size: 0;
}
.video-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-item figure a:before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 15px;
  width: 60px;
  height: 60px;
  margin-top: -32.5px;
  margin-left: -32.5px;
  border-radius: 50%;
  background-color: #f5a425;
  z-index: 10;
}
.video-item figure a:after {
  content: '';
  position: absolute;
  bottom: 27.5px;
  right: 20px;
  margin-top: -12.5px;
  margin-left: -7px;
  border: solid 13px transparent;
  border-left: solid 20px;
  border-left-color: #fff;
  z-index: 10;
}
.video-item figure a:hover:before {
  background-color: #f5a425;
}

.video-item .video-caption {
  position: absolute;
  z-index: 10;
  background-color: rgba(250, 250, 250, 0.75);
  height: 80px;
  width: 100%;
  padding: 27px 30px;
  bottom: 0;
}

.video-item .video-caption h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Contact */

section.contact {
  background-image: url(../images/contact-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding-bottom: 120px;
}

section.contact form {
  background-color: rgba(250, 250, 250, 0.1);
  padding: 30px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  section.contact form {
    margin-bottom: 30px;
  }
}

section.contact form input {
  width: 100%;
  height: 40px;
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 0px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

section.contact form textarea {
  width: 100%;
  height: 220px;
  max-height: 280px;
  min-height: 220px;
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 0px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

section.contact form input:focus,
section.contact form textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
}

section.contact form::placeholder {
  color: #fff;
}
section.contact form input::placeholder {
  color: #fff;
}
section.contact form input::placeholder {
  color: #fff;
}

section.contact form::placeholder {
  color: #fff;
}
section.contact form textarea::placeholder {
  color: #fff;
}
section.contact form textarea::placeholder {
  color: #fff;
}

section.contact form button {
  background-color: #f5a425;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 12px 20px;
  display: inline-block;
  outline: none;
  box-shadow: none;
  border: none;
  transition: 0.2s;
  border-radius: 2px;
}
section.contact form button:hover {
  opacity: 0.9;
  transition: 0.2s;
}

/* Footer */

footer {
  background-color: #152036;
  text-align: center;
}

footer p {
  margin-bottom: 0px;
  padding: 25px 0px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

footer p a,
footer p a:hover {
  color: #f5a425;
}

@media screen and (max-width: 992px) {
  .features {
    background-color: #0c1228;
  }
  .features-content {
    position: relative;
  }
  .features-post {
    border-left: 0;
  }
}

@media screen and (max-width: 950px) {
  .main-menu {
    padding-right: 0 !important;
  }

  .main-menu li {
    display: block;
    line-height: 1;
    margin-left: 0 !important;
  }

  .main-menu li .sub-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .main-menu li .sub-menu li:last-child {
    border-bottom: 1px solid rgba(250, 250, 250, 0.25);
  }
}

@media screen and (max-width: 950px) and (max-height: 400px) {
  nav[role='navigation'].active {
    max-height: calc(80px + 100vh);
    overflow-y: auto;
  }
}

@media screen and (max-width: 767px) {
  footer p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25px;
  }
}

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

section.about {
  background-image: url(../images/contact-bg.webp);
  background-position-y: 2px;
  background-color: #172238;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
}

section.about .left-content {
  color: #fff;
}

section.about .left-content p {
  text-align: justify;
}

section.about .left-content span {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

section.about .left-content h4 {
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 20px;
}
section.about .left-content h4 em {
  font-style: normal;
  color: #f5a425;
}

section.about .left-content .main-button {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  section.about .left-content {
    margin-bottom: 45px;
  }

  section.about .first-item .first-content h4,
  section.about .second-item .second-content h4 {
    text-align: center;
  }
}

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

section.coming-soon .top-content h4 {
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 50px;
  text-align: center;
}
section.coming-soon .top-content h4 em {
  font-style: normal;
  color: #f5a425;
}

/* -------Help Form-------- */

.radio-inputs {
  width: 100%;
  height: 40px;
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 0px;
  border: none;
  outline: none;
  color: #fff;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
  font-size: 1rem;
  display: flex;
}

section.coming-soon form label {
  width: 100%;
  text-align: left;
  line-height: 40px;
}
section.coming-soon form input[type='radio'],
section.coming-soon form input[type='checkbox'] {
  width: 15px;
  height: 15px;
  display: inline-block;
}

.checkbox-inputs {
  width: 100%;
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 0px;
  border: none;
  outline: none;
  color: #fff;
  margin: 0 0 20px 0;
  padding-top: 10px;
  letter-spacing: 0.5px;
  font-size: 1rem;
  text-align: left;
}

.checkbox-inputs h6 {
  padding-left: 10px;
  font-weight: bold;
  color: #f5a425;
}

.checkbox-inputs__item {
  display: flex;
  flex-wrap: wrap;
}

.checkbox-inputs label {
  margin: 0;
}

section.coming-soon form textarea,
section.coming-soon form textarea:focus {
  width: 100%;
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 0px;
  border: none;
  outline: none;
  overflow: hidden;
  box-shadow: none;
  color: #fff;
  margin: 0 0 20px 0;
  padding-top: 10px;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

section.coming-soon form textarea::placeholder {
  color: #fff;
}

@media (max-width: 530px) {
  .radio-inputs {
    height: 100px;
    display: flex;
    flex-direction: column;
  }
}

/*--------donate-----------*/

section.donate {
  background-image: url(../images/contact-bg.webp);
  background-color: #172238;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 100px;
  min-height: 90vh;
}

section.donate .left-content {
  color: #fff;
}

section.donate .left-content span {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

section.donate .left-content h4 {
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 20px;
}
section.donate .left-content h4 em {
  font-style: normal;
  color: #f5a425;
}

section.donate .left-content .main-button {
  margin-top: 30px;
}
section.donate .left-content p {
  text-align: left;
}

.donate h5 {
  font-weight: bold;
}

.donate p {
  font-size: 16px;
  padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
  section.donate .left-content {
    margin-bottom: 45px;
  }

  section.donate .first-item .first-content h4,
  section.donate .second-item .second-content h4 {
    text-align: center;
  }
}

/*------------------*/
.flag-img {
  height: 13px;
  margin-right: 6px;
  vertical-align: unset;
}

.sub-menu li:hover .flag-img {
  opacity: 0.7;
  transition: 0.5s;
}

/*-----------*/
.our-projects {
  background-image: url(../images/contact-bg.webp);
  background-position-y: 2px;
  background-color: #172238;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
}

/*-----end------*/

/*-----------*/
.volunteer {
  background-image: url(../images/help-form-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding: 120px 0px;
  color: #fff;
}
.volunteer img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 20px;
  opacity: 0.6;
}
.volunteer img:hover {
  opacity: 1;
}

.volunteer h4 {
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 20px;
}
.volunteer h4 em {
  font-style: normal;
  color: #f5a425;
}

.volunteer p {
  font-size: 16px;
  text-align: justify;
}

em {
  font-style: normal;
  color: #f5a425;
}

.footer__body {
  color: #fff;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: rgba(250, 250, 250, 0.2);
  align-items: center;
  padding: 5px 10px;
}

.footer__left img {
  margin: 15px;
}

.footer__right {
  text-align: left;
}

.footer__right a {
  display: inline-block;
  padding-right: 10px;
  text-decoration: underline;
}

@media (max-width: 650px) {
  .footer__body {
    flex-direction: column;
  }
  .footer__left {
    margin-bottom: 10px;
  }
}

.contact__social {
  font-size: 30px;
}

.contact__social a {
  display: inline-block;
  margin-right: 15px;
  color: white;
}

.contact__social a:hover {
  color: #f5a425;
}

button:disabled {
  filter: grayscale(100%);
}

@media (min-width: 768px) {
  .col-md-6 {
    align-self: center;
  }
}
