/* Variables */
:root {
  --main-color: #19c8fa;
  --opacity-color: rgb(15 116 143 / 70%);
  --section-padding: 100px;
  --transition-duration-4ms: 0.4s;
  --transition-duration-6ms: 0.6s;
}
/* END Variables */

/* Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
}
ul {
  list-style: none;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
/* Small Screens */
/* @media (min-width: 480px) {
  .container {
    width: 400px;
  }
} */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium Screens */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f2f2f2;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 10px;
}
* {
  scrollbar-width: auto;
  scrollbar-color: var(--opacity-color) #f6f6f6;
}
/* END Global Rules */

/* Components */
.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.main-heading {
  text-align: center;
}
.main-heading h2 {
  font-size: 40px;
  font-weight: normal;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
}
.main-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  background-color: #333;
  width: 150px;
  height: 2px;
  bottom: -30px;
  transform: translateX(-50%);
}
.main-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #333;
  bottom: -40px;
}
.main-heading p {
  line-height: 2;
  color: #b0acae;
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 100px;
}
/* END Components */

/* Header */
header {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 2;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 97px;
  position: relative;
}
header .container::after {
  content: "";
  position: absolute;
  background-color: #a2a2a2;
  width: calc(100% - 30px);
  height: 1px;
  bottom: 0;
  left: 15px;
}
header .logo img {
  height: 40px;
}
header .container nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-transform: uppercase;
}
header nav .toggle-menu {
  color: white;
  font-size: 22px;
  cursor: pointer;
}
@media (min-width: 768px) {
  header nav .toggle-menu {
    display: none;
  }
}
header nav ul {
  display: flex;
  transition: var(--transition-duration-4ms);
}
header nav ul.search-active {
  transform: translateX(-150px); /* Shift left when search is active */
}
header nav ul li a {
  padding: 40px 10px;
  display: block;
  color: white;
  font-size: 14px;
  transition: var(--transition-duration-4ms);
  position: relative;
  z-index: 2;
}
header nav ul li a.active,
header nav ul li a:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
header nav .search-icon {
  padding-left: 10px;
  width: 40px;
  height: 30px;
  position: relative;
  margin-left: 30px;
  border-left: 2px solid white;
  display: flex;
  align-items: center;
}
header nav .search-icon i {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: var(--transition-duration-4ms);
  cursor: pointer;
}
header nav .search-icon i:hover {
  color: var(--main-color);
}
header nav .search-icon .search-input {
  width: 0;
  height: 30px;
  opacity: 0;
  border: none;
  outline: none;
  background-color: var(--opacity-color);
  color: white;
  caret-color: var(--main-color);
  font-size: 14px;
  border-radius: 10px;
  transition: var(--transition-duration-4ms);
  margin-right: 10px;
  position: absolute;
  right: 100%;
}
header nav .search-icon .search-input.active {
  width: 150px;
  opacity: 1;
  padding: 5px 10px;
}
header nav .search-icon .search-suggestions {
  position: absolute;
  top: 100%;
  right: calc(100% + 10px);
  width: 150px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 3;
}
header nav .search-icon .search-suggestions.active {
  display: block;
}
header nav .search-icon .search-suggestions a {
  display: block;
  padding: 10px;
  color: #333;
  font-size: 14px;
  border-radius: 10px;
}
header nav .search-icon .search-suggestions a:hover {
  background: var(--main-color);
  color: white;
}
@media (max-width: 768px) {
  header nav ul {
    display: none; /* Hidden by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--opacity-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  header nav ul.menu-active {
    display: flex; /* Show when active */
    opacity: 1;
    transform: translateY(0);
  }
  header nav ul li a {
    padding: 15px;
  }
}
/* Hide search icon and prevent nav shift on tablet and mobile */
@media (max-width: 991px) {
  header nav .search-icon {
    display: none;
  }
  header nav ul.search-active {
    transform: none; /* Prevent navigation shift */
  }
  header nav {
    width: 100%;
  }
}
/* END Header */

/* Start Landing */
.landing {
  min-height: 100vh;
  background-color: #1f2021; /* Callback color if there is an error background image*/
  background-image: url("../images/landing-01.jpg"); /* Callback background if the js did not work */
  background-size: cover;
  position: relative;
  transition: background-image 0.5s ease;
}
.landing .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.6);
}
.landing .landing-container {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 50px;
  width: 50%;
  background-color: var(--opacity-color);
  color: white;
  display: flex;
  justify-content: flex-end;
  transition: background-color 0.5s ease;
}
.landing .landing-content {
  max-width: 500px;
  position: relative;
  z-index: 3;
  color: #fff;
}
@media (max-width: 767px) {
  .landing .landing-container {
    width: 100%;
  }
  .landing .landing-content {
    max-width: 100%;
  }
}
@media (max-width: 1220px) {
  .landing .landing-content {
    padding-left: 20px;
  }
}
.landing .landing-content h2 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: normal;
  line-height: 1.5;
}
.landing .landing-content p {
  line-height: 1.8;
}
.landing .change-background {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main-color);
  cursor: pointer;
}
@media (max-width: 767px) {
  .landing .change-background {
    display: none;
  }
}
.landing .fa-angle-left {
  left: 30px;
}
.landing .fa-angle-right {
  right: 30px;
}
.landing .bullets {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.landing .bullets li {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid white;
}
.landing .bullets li.active {
  border-color: var(--main-color);
  background-color: var(--main-color);
}
/* END Landing */

/* Services */
@media (min-width: 768px) {
  .services .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    grid-column-gap: 40px;
    grid-row-gap: 60px;
  }
}
.services-container .srv-box {
  display: flex;
}
.services-container .srv-box i {
  margin-right: 50px;
}
@media (max-width: 767px) {
  .services-container .srv-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
  }
  .services-container .srv-box i {
    margin: 0 0 30px;
  }
}
.services-container .srv-box .srv-text h3 {
  color: var(--main-color);
  margin-bottom: 20px;
}
.services-container .srv-box .srv-text p {
  line-height: 2;
  color: #b0acae;
}
/* END Services */

/* Design */
.design {
  width: 100%;
  height: 600px;
  background-image: url("../images/design-features.jpg");
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.design::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.6);
}
.design .design-image,
.design .design-text {
  position: relative;
  z-index: 2;
  flex: 1;
}
.design .design-image {
  text-align: center;
}
@media (max-width: 767px) {
  .design .design-image {
    display: none;
  }
  .design .design-text ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .design .design-text ul li {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .design .design-text ul li i {
    padding-bottom: 10px;
  }
}
.design .design-image img {
  position: relative;
  bottom: -150px;
}
.design .design-text {
  color: white;
  padding: 50px;
  background-color: var(--opacity-color);
}
.design .design-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
}
.design .design-text ul li {
  font-size: 20px;
  padding: 15px 0;
}
.design .design-text ul li i {
  font-size: 20px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .design {
    min-height: 100vh;
    padding: 40px 0;
  }
  .design .design-image {
    display: none;
  }
  .design .design-text {
    background-color: transparent;
    width: 100%;
  }
  .design .design-text h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .design .design-text ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 30px 20px;
    /* max-width: 400px; */
    margin: 0 auto;
  }
  .design .design-text ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .design .design-text ul li i {
    padding-right: 0;
    padding-bottom: 15px;
    font-size: 32px;
    color: #4fc3f7;
  }
}
/* Extra small devices */
@media (max-width: 480px) {
  .design .design-text ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .design .design-text h2 {
    font-size: 20px;
  }
}
/* END Design */

/* Portfolio */
.portfolio-nav {
  display: flex;
  justify-content: center;
}
.portfolio-nav li {
  padding: 10px 30px;
  cursor: pointer;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .portfolio-nav li {
    padding: 10px;
  }
}
.portfolio-nav li:hover {
  background-color: var(--main-color);
  color: white;
}
.portfolio-nav li.active {
  background-color: var(--main-color);
  color: white;
}
/* Gallary */
.gallary {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.gallary-box {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .gallary-box {
    flex-basis: 50%;
  }
}
@media (min-width: 1200px) {
  .gallary-box {
    flex-basis: 25%;
  }
}
.gallary-box img {
  max-width: 100%;
  transition: var(--transition-duration-6ms);
}
.gallary .box-caption {
  position: absolute;
  left: 0;
  background-color: rgb(0 0 0 / 40%);
  width: 100%;
  height: 100px;
  padding: 20px;
  bottom: -100%;
  transition: var(--transition-duration-6ms);
  color: white;
  align-content: center;
  text-align: center;
}
.gallary-box:hover img {
  transform: scale(1.05) rotate(-3deg);
}
.gallary-box:hover .box-caption {
  bottom: 0;
}
.box-caption h4 {
  font-weight: normal;
}
.photo-dept {
  color: var(--main-color);
  margin-top: 10px;
}
.gallary-btn {
  background-color: var(--main-color);
  color: white;
  padding: 15px 50px;
  margin: 30px auto;
  width: fit-content;
  font-size: 20px;
  text-transform: uppercase;
}
/* END Gallary */

/* Video */
.video-container {
  position: relative;
}
.video-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.2);
}
.video-container video {
  width: 100%;
}
.video-container .video-text {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 50px;
  text-align: center;
  background-color: var(--opacity-color);
  color: white;
}
@media (max-width: 768px) {
  .video-container .video-text {
    background-color: rgb(15 116 143 / 30%);
  }
}
.video-text h2 {
  margin-bottom: 30px;
  font-weight: normal;
  text-transform: uppercase;
}
.video-text p {
  margin-bottom: 30px;
  font-weight: normal;
}
.video-text button {
  padding: 15px 20px;
  background-color: black;
  color: white;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
}
/* END Video */

/* About */
.about {
  overflow: hidden;
  text-align: center;
}
.about img {
  position: relative;
  bottom: -120px;
  margin-top: -120px;
  max-width: 100%;
}
@media (min-width: 767px) {
  .about img {
    position: relative;
    bottom: -120px;
    margin-top: -120px;
    max-width: 100%;
  }
}
/* END About */

/* Stats */
.stats {
  text-align: center;
  background-image: url("../images/stats.png");
  background-size: cover;
  position: relative;
  padding: 100px;
}
.stats::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
}
.stats .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.stats .container .stat-box {
  color: white;
  text-align: center;
  padding: 50px;
  background-color: var(--opacity-color);
}
@media (max-width: 767px) {
  .stats {
    padding: 50px;
  }
  .stats .container .stat-box {
    flex-basis: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media (min-width: 768px) {
  .stats .container .stat-box {
    flex-basis: 50%;
  }
}
@media (min-width: 992px) {
  .stats .container .stat-box {
    flex-basis: 25%;
  }
}
.stats .container .stat-box .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  background-color: black;
  font-size: 25px;
}
.stats .container .stat-box .stat-number {
  font-size: 50px;
  font-weight: bold;
  margin: 0 0 20px;
}
.stats .container .stat-box .stat-label {
  font-size: 20px;
}

/* END Stats */

/* Skills  */
.our-skills .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .our-skills .container > div {
    flex-basis: 45%;
  }
}
.our-skills .container > div > h3 {
  margin: 0 0 30px;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
}
.our-skills .container > div > p {
  color: #777;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 60px;
}
/* Testimonials */
.our-skills .testimonials {
  position: relative;
  overflow: hidden;
}
.our-skills .testimonials .slides {
  width: 100%;
  height: 100%;
}
.our-skills .testimonials .content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0; /* Start hidden */
  transition: opacity 0.8s ease-in-out; /* Add fade transition */
}
.our-skills .testimonials .content.active {
  display: flex;
  opacity: 1; /* Show active slide */
}
.our-skills .testimonials .content > div {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.our-skills .testimonials .content img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 50px;
}
@media (max-width: 767px) {
  .our-skills .testimonials .content > div {
    flex-direction: column;
    text-align: center;
  }
  .our-skills .testimonials .content > div img {
    margin: 0 auto 20px;
  }
}
.testimonials .content .text {
  border-bottom: 2px solid #ccc;
  line-height: 1.8;
}
.testimonials .content .text p {
  color: #777;
  text-align: right;
  font-size: 14px;
  margin-bottom: 10px;
}
.testimonials .content .text > h3 {
  text-align: right;
}
.text span {
  display: block;
  text-align: right;
  color: #777777;
}
.testimonials .bullets {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}
.testimonials .bullets li {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--main-color);
  margin-right: 10px;
  cursor: pointer;
}
.testimonials .bullets li.active {
  background-color: var(--main-color);
}
/* Skills */
.our-skills .skills .prog-holder {
  margin-bottom: 40px;
}
.our-skills .skills .prog-holder h4 {
  margin-bottom: 15px;
  font-weight: normal;
  text-transform: uppercase;
}
.our-skills .skills .prog-holder .prog {
  background-color: #dedadc;
  height: 30px;
}
.our-skills .skills .prog-holder span {
  display: block;
  background-color: var(--main-color);
  height: 100%;
  position: relative;
}
.our-skills .skills .prog-holder span::before {
  content: attr(data-progress);
  position: absolute;
  background-color: black;
  color: white;
  top: -40px;
  right: -18px;
  padding: 4px 0;
  width: 40px;
  text-align: center;
  border-radius: 4px;
}
.our-skills .skills .prog-holder span::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 8px;
  border-color: black transparent transparent;
  right: -7px;
  top: -14px;
}
/* END Testimonials and Skills  */

/* Quote */
.quote {
  background-image: url("../images/quote.jpg");
  background-size: cover;
  position: relative;
  text-align: center;
  color: white;
}
.quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 80%);
}
.quote .container {
  position: relative;
}
.quote .container q {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}
/* END Quote */

/* Pricing */
.pricing .plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
@media (max-width: 1199px) {
  .pricing .plans {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .pricing .plans {
    grid-template-columns: 1fr;
  }
}
.pricing .plans .plan {
  background-color: #fcfcfc;
  text-align: center;
}
.pricing .plans .plan .head {
  padding: 40px 20px;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
.pricing .plans .plan .head h3 {
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing .plans .plan .head span {
  font-size: 60px;
  font-weight: bold;
}
.pricing .plans .plan .head span::before {
  content: "$";
  position: relative;
  font-size: 30px;
  top: -40px;
  margin-right: 15px;
  font-weight: normal;
}
.pricing .plans .plan .head span::after {
  content: "/MO";
  position: relative;
  font-size: 30px;
  right: -10px;
}
.pricing .plans .plan ul {
  border-bottom: 1px solid var(--main-color);
}
.pricing .plans .plan ul li {
  padding: 20px 0;
  position: relative;
}
.pricing .plans .plan ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 1px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--main-color);
}
.pricing .plans .plan .foot {
  margin: 40px 0;
}
.pricing .plans .plan .foot a {
  width: fit-content;
  border: 1px solid var(--main-color);
  padding: 15px 30px;
  margin: 0 auto;
  color: black;
}
.pricing .contact-text {
  text-align: center;
  font-size: 25px;
  margin: 40px 0;
}
.pricing .contact-link {
  background-color: var(--main-color);
  color: white;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 30px;
  font-size: 20px;
}
/* END Pricing */

/* Subscribe */
.subscribe {
  background-image: url("../images/subscribe.jpg");
  background-size: cover;
  position: relative;
  color: white;
}
.subscribe::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}
.subscribe .container {
  position: relative;
  display: flex;
  align-content: center;
}
@media (max-width: 991px) {
  .subscribe .container {
    flex-direction: column;
  }
}
.subscribe .container form {
  display: flex;
  position: relative;
  width: 670px;
  max-width: 100%;
}
.subscribe .container form ::placeholder {
  color: white;
  text-transform: uppercase;
}
.subscribe .container form label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.subscribe .container form input[type="email"] {
  border: 1px solid white;
  border-right: none;
  background: none;
  color: white;
  padding: 20px 20px 20px 60px;
  caret-color: var(--main-color);
  width: calc(100% - 130px);
}
.subscribe .container form input[type="submit"] {
  width: 130px;
  background-color: var(--main-color);
  color: white;
  border: 1px solid white;
  border-left: none;
  text-transform: uppercase;
  cursor: pointer;
}
.subscribe .container form input[type="email"]:focus,
.subscribe .container form input[type="submit"]:focus {
  outline: none;
}
.subscribe .container p {
  line-height: 2;
  margin-left: 30px;
}
@media (max-width: 991px) {
  .subscribe .container form {
    width: 100%;
  }
  .subscribe .container p {
    margin: 30px 0 0;
    text-align: center;
  }
}
/* END Subscribe  */
/* Contact */
.contact .content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact .content {
    flex-direction: column;
  }
}
.contact .content form {
  flex-basis: 70%;
}
.contact .content form .main-input {
  width: 100%;
  padding: 25px;
  display: block;
  border: 1px solid #ccc;
  margin-bottom: 30px;
}
.contact .content form textarea.main-input {
  height: 200px;
  resize: none;
}
.contact .content form .main-input:focus {
  outline: none;
}
.contact .content form input[type="submit"] {
  border: none;
  background-color: var(--main-color);
  color: white;
  padding: 15px 30px;
  cursor: pointer;
  display: flex;
  margin-left: auto;
}
@media (max-width: 767px) {
  .contact .content form input[type="submit"] {
    margin: 0 auto;
  }
}
.contact .content .contact-info {
  flex-basis: 25%;
}
@media (max-width: 767px) {
  .contact .content .contact-info {
    order: -1;
    text-align: center;
  }
}
.contact .content .contact-info h4 {
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 18px;
}
.contact .content .contact-info .phone {
  display: block;
  color: #777;
  margin-bottom: 10px;
}
.contact .content .contact-info h4:nth-of-type(2) {
  margin-top: 105px;
}
@media (max-width: 767px) {
  .contact .content .contact-info h4:nth-of-type(2) {
    margin-top: 30px;
  }
}
.contact .content .contact-info address {
  color: #777;
  line-height: 2;
}
@media (max-width: 767px) {
  .contact .content .contact-info address {
    margin-bottom: 40px;
  }
}
/* END Contact  */

/* Footer  */
.footer {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url("../images/subscribe.jpg");
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
}
.footer .container {
  position: relative;
}
.footer img {
  margin-bottom: 20px;
}
.footer p:not(.copyright) {
  text-transform: uppercase;
  padding: 20px;
  border-bottom: 1px solid white;
  font-size: 20px;
  width: fit-content;
  margin: 20px auto;
}
.footer .social-icons a {
  display: inline;
  color: white;
  padding: 10px 15px;
  transition: color var(--transition-duration-6ms);
}
.footer .social-icons a:hover {
  color: var(--main-color);
}
.footer .copyright {
  margin-top: 80px;
}
.footer .copyright a {
  display: inline;
  font-weight: bold;
  color: var(--main-color);
}
.footer .copyright:last-child i {
  color: red;
}
.footer .copyright:last-child {
  margin-top: 10px;
  font-size: 10px;
}
/* END Footer  */
