body {
  width: 100vw;
  background: #ffffff;
}

header {
  width: 100vw;
  height: 100vh;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

header.active {
  background-image: url("../../assets/images/menu-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

header.active .header-box-one .logo {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

header.active .header-box-two {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.header-box-one {
  width: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-box-one .logo {
  width: 50%;
  -webkit-transform: translateY(-1000%);
  -ms-transform: translateY(-1000%);
  transform: translateY(-1000%);
}

.header-box-one .logo img {
  width: 145px;
  min-width: 145px;
  max-width: 145px;
}

.header-box-one .menu-icon {
  width: 50%;
  text-align: right;
  margin-top: 8px;
}

.header-box-one .menu-icon i {
  cursor: pointer;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
}

.header-box-two {
  width: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.header-box-two ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header-box-two ul li {
  width: 100%;
  list-style: none;
  margin-bottom: 20px;
}

.header-box-two ul li a {
  width: 100%;
  font-family: PlayfairDisplay;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.home-start {
  width: 100vw;
  min-height: 500px;
  background-image: url("../../assets/images/sections/home/start-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.home-start-wrapper {
  width: 100%;
  padding: 30px;
}

.home-start-wrapper h1 {
  font-family: OpenSans;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  margin: 71px 0 0 0;
}

.home-start-wrapper h2 {
  font-family: PlayfairDisplay;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
  margin: 5px 0 0 0;
}

.home-start-quick-links {
  display: none;
}

.fake-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.fake-header.hide {
  -webkit-transform: translateY(-130%);
  -ms-transform: translateY(-130%);
  transform: translateY(-130%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.fake-header .logo {
  width: 50%;
}

.fake-header .logo img {
  width: 145px;
  min-width: 145px;
  max-width: 145px;
}

.fake-header .menu {
  display: none;
}

#fake-menu {
  width: 100%;
  text-align: right;
  margin-top: 8px;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 98;
}

#fake-menu i {
  cursor: pointer;
  font-size: 32px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#fake-menu.mactive i {
  color: #000000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-about-us {
  width: 100vw;
  background-image: url("../../assets/images/sections/home/about-us-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.home-about-us-image {
  display: none;
}

.home-about-us-wrapper {
  width: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: rgba(7, 19, 33, 0.5);
}

.home-about-us-wrapper h2 {
  font-family: OpenSans;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.home-about-us-wrapper h3 {
  font-family: PlayfairDisplay;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.home-about-us-wrapper p {
  font-family: OpenSans;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
}

.home-about-us-wrapper p strong {
  font-weight: 600;
}

.home-our-services {
  width: 100vw;
  min-height: 821px;
  background-image: url("../../assets/images/sections/home/services-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.home-our-services-wrapper {
  width: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.home-our-services-wrapper h2 {
  font-family: OpenSans;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.home-our-services-wrapper h3 {
  font-family: PlayfairDisplay;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.home-our-services-wrapper p {
  font-family: OpenSans;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
}

.home-our-services-specialties {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 50px;
}

.home-our-services-specialties ul {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.home-our-services-specialties ul li {
  list-style: none;
  width: 100%;
  height: 58px;
  min-height: 58px;
  max-height: 58px;
  padding-left: 10px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
}

.home-our-services-specialties ul li a {
  font-family: OpenSans;
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}

footer {
  width: 100%;
  background: none;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

footer ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 5px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

footer ul li {
  width: 100%;
  list-style: none;
  margin-bottom: 5px;
}

footer ul li:last-child {
  margin-bottom: 0;
}

footer ul li a {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

footer p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

@media (min-width: 768px) and (max-width: 1439px) {
  .header-box-one {
    padding: 60px;
  }
  .header-box-one .logo img {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 82px;
    min-height: 82px;
    max-height: 82px;
  }
  .header-box-one .menu-icon i {
    font-size: 42px;
    margin-top: 22px;
  }
  .header-box-two {
    width: 50%;
    margin: 0 auto;
  }
  .header-box-two ul {
    width: 50%;
    margin: 0 auto;
  }
  #fake-menu {
    top: 60px;
    right: 60px;
    margin-top: 22px;
  }
  #fake-menu i {
    font-size: 42px;
  }
  .home-start-wrapper {
    padding: 60px;
  }
  .home-start-wrapper .logo img {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 82px;
    min-height: 82px;
    max-height: 82px;
  }
  .home-start-wrapper h2 {
    width: 500px;
    font-size: 40px;
    margin-top: 10px;
    padding-bottom: 15px;
    border-bottom: 4px solid rgba(255, 255, 255, 0.35);
  }
  .home-start-quick-links {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 40px;
  }
  .home-start-quick-links ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .home-start-quick-links ul li {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home-start-quick-links ul li i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: auto 10px auto 0;
  }
  .home-start-quick-links ul li p {
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    color: rgba(255, 255, 255, 0.75);
    margin: auto 0;
  }
  .home-about-us {
    min-height: 640px;
    max-height: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .home-about-us-image {
    width: 265px;
    min-width: 265px;
    display: block;
  }
  .home-about-us-wrapper {
    padding: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home-about-us-wrapper h2 {
    font-size: 16px;
    font-weight: 600;
  }
  .home-about-us-wrapper h3 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 50px;
  }
  .home-about-us-wrapper p {
    font-size: 16px;
  }
  .home-our-services {
    min-height: 600px;
  }
  .home-our-services-wrapper {
    padding: 60px;
  }
  .home-our-services-wrapper h2 {
    font-size: 16px;
    font-weight: 600;
  }
  .home-our-services-wrapper h3 {
    font-size: 40px;
    font-weight: 400;
  }
  .home-our-services-wrapper p {
    width: 50%;
  }
  .home-our-services-specialties {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .home-our-services-specialties ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .home-our-services-specialties ul li {
    width: 22%;
  }
  .home-our-services-specialties ul li a {
    width: 100%;
    font-size: 14px;
  }
  footer {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 0 30px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
  }
  footer ul {
    width: 70%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 0;
    border-top: none;
    margin-bottom: 0;
  }
  footer ul li {
    width: auto;
    margin-left: 15px;
  }
  footer ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f111";
    font-size: 4px;
    font-weight: 900;
    color: #ffffff;
    margin-right: 15px;
    vertical-align: middle;
  }
  footer ul li:first-child {
    list-style: none;
  }
  footer ul li:first-child:before {
    content: "";
  }
  footer ul li a {
    font-size: 11px;
  }
  footer p {
    width: 30%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 11px;
    margin: auto 0;
  }
}

@media (min-width: 1440px) {
  body {
    width: 100%;
  }
  header {
    width: 100%;
  }
  .header-box-one {
    padding: 90px;
  }
  .header-box-one .logo img {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 82px;
    min-height: 82px;
    max-height: 82px;
  }
  .header-box-one .menu-icon i {
    font-size: 42px;
    margin-top: 0;
  }
  .header-box-two {
    width: 50%;
    margin: 0 auto;
  }
  .header-box-two ul {
    width: 50%;
    margin: 0 auto;
  }
  .header-box-two ul li a {
    font-size: 40px;
  }
  #fake-menu {
    width: auto;
    top: 90px;
    right: 90px;
    margin-top: 0;
    display: none;
  }
  #fake-menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #fake-menu i {
    font-size: 42px;
  }
  .home-start {
    width: 100%;
    min-height: 100vh;
  }
  .home-start-wrapper {
    padding: 90px;
  }
  .home-start-wrapper h1 {
    margin: 252px 0 0 0;
  }
  .home-start-wrapper h2 {
    width: 630px;
    font-size: 40px;
    margin-top: 10px;
    padding-bottom: 15px;
    border-bottom: 4px solid rgba(255, 255, 255, 0.35);
  }
  .fake-header {
    height: 90px;
    min-height: 90px;
    max-height: 90px;
  }
  .fake-header .logo {
    width: 30%;
  }
  .fake-header .logo img {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 82px;
    min-height: 82px;
    max-height: 82px;
    margin: auto 0;
  }
  .fake-header .menu {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto 0;
  }
  .fake-header .menu ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .fake-header .menu ul li {
    width: auto;
    list-style: none;
  }
  .fake-header .menu ul li.active a {
    opacity: 1;
  }
  .fake-header .menu ul li a {
    font-family: OpenSans;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.5;
    text-align: right;
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 30px;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
  .fake-header .menu ul li a:hover, .fake-header .menu ul li a:active {
    opacity: 1;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
  .home-start-quick-links {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 130px;
  }
  .home-start-quick-links ul {
    width: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .home-start-quick-links ul li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 15px;
  }
  .home-start-quick-links ul li i {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 10px 0 0;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .home-start-quick-links ul li p {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0;
  }
  .home-about-us {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .home-about-us-image {
    width: 383px;
    min-width: 383px;
    height: 100vh;
    display: block;
  }
  .home-about-us-wrapper {
    width: 100%;
    padding: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home-about-us-wrapper h2 {
    font-family: OpenSans;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
  }
  .home-about-us-wrapper h3 {
    font-family: PlayfairDisplay;
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
  }
  .home-about-us-wrapper p {
    width: 508px;
    font-family: OpenSans;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
  }
  .home-our-services {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .home-our-services-wrapper {
    width: 100%;
    height: 100%;
    padding: 90px 90px 0 90px;
  }
  .home-our-services-wrapper h2 {
    font-size: 16px;
    font-weight: 600;
  }
  .home-our-services-wrapper h3 {
    font-size: 40px;
    font-weight: 400;
  }
  .home-our-services-wrapper p {
    width: 508px;
  }
  .home-our-services-specialties {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 24%;
  }
  .home-our-services-specialties ul {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .home-our-services-specialties ul li {
    width: 22%;
  }
  .home-our-services-specialties ul li a {
    width: 100%;
    font-size: 14px;
  }
  footer {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0 30px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
  }
  footer ul {
    width: 70%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 0;
    border-top: none;
    margin-bottom: 0;
  }
  footer ul li {
    width: auto;
    margin-left: 15px;
  }
  footer ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f111";
    font-size: 4px;
    font-weight: 900;
    color: #ffffff;
    margin-right: 15px;
    vertical-align: middle;
  }
  footer ul li:first-child {
    list-style: none;
  }
  footer ul li:first-child:before {
    content: "";
  }
  footer ul li a {
    font-size: 16px;
  }
  footer p {
    width: 30%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 16px;
    margin: auto 0;
  }
}