/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/**************************/
/*     General Styles     */
/**************************/
:root {
  --primary: #1e2531;
  --primary-light: #1e2531;
  --secondary: #ce2535;
  --tertiary: #ce2535;
  --light: #ffffff;
  --gradient: linear-gradient(to right, #ce2535, #ce2535);
}

hr.white {
  color: #ffffff;
}
/*
@font-face {
	font-family: "Paralucent";
	src: url("../webfonts/Paralucent_Light.otf");
	font-weight: 300;
  }*/
@font-face {
  font-family: "Paralucent";
  src: url("../webfonts/Paralucent_Medium.otf");
  font-weight: 400;
}
/* @font-face {
	font-family: "Paralucent";
	src: url("../webfonts/Paralucent_Text_Bold.otf");
	font-weight: 500;
  } */

@font-face {
  font-family: "Paralucent";
  src: url("../webfonts/Paralucent_Demi_Bold.otf");
  font-weight: 500;
}

@font-face {
  font-family: "Nuckle";
  src: url("../webfonts/Nuckle-Bold.woff");
  font-weight: 500;
}
@font-face {
  font-family: "Paralucent Text";
  src: url("../webfonts/Paralucent_Text_Book.otf");
  font-weight: 400;
}

@font-face {
  font-family: "Paralucent";
  src: url("../webfonts/Paralucent_Text_Book.otf");
  font-weight: 300;
}

body {
  font-family: "Paralucent", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Paralucent", sans-serif;
  transition: all 0.5s ease;
}

h1 {
  font-size: 50px;
  font-weight: 500;
}

button {
  font-family: sans-serif;
}

p,
ul,
h4 {
  margin: 0;
  padding: 0;
}

a {
  color: white;
  text-decoration: none;
}

li {
  list-style-type: none;
}

/* Section Background */
.home,
.about,
.mh-about,
.mh-contact,
.services,
.plans,
.work,
.contact-form,
.contact {
  /*height: 110vh;*/
  position: relative;
}

.services,
.contact,
.testimonial,
.footer {
  background-color: var(--secondary);
}

.mh-form-container {
  background-color: var(--secondary);
  min-height: 95vh;
}

.about,
.plans,
.company,
.newsletter,
.work,
.location {
  background-color: var(--primary-light);
}

.bottom {
  background-color: black;
}

/* Gradient Border And Background On Icons */
.home_text,
.home .fas,
.mh-about .fas,
.mh-contact .fas,
.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
  padding: 15px 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ce2535),
    to(#ce2535)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer a:hover {
  cursor: pointer;
  background: var(--primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer .fab:hover {
  cursor: pointer;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/**********************/
/*     Navigation     */
/**********************/
.navbar {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 0.875rem;
  background-color: var(--primary);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
  height: 120px;
}

.navbar .navbar-brand {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar .logo-image img {
  width: auto;
  height: 32px;
  overlay: white;
}

.navbar .logo-text {
  color: #fff;
  font-weight: 500;
  line-height: 1rem;
  font-size: 1.575rem;
  text-decoration: none;
}

.offcanvas-collapse {
  position: fixed;
  top: 2.75rem; /* adjusts the height between the top of the page and the offcanvas menu */
  bottom: 0;
  left: 100%;
  width: 100%;
  overflow-y: auto;
  visibility: hidden;
  padding-right: 1rem;
  padding-left: 1rem;
  background-color: var(--primary);
  transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
  visibility: visible;
  transform: translateX(-100%);
}

.navbar .navbar-nav {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
  border: none;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  background-color: var(--primary);
}

.navbar .dropdown-item {
  color: #eee;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 0.875rem;
  padding-top: 0.625rem;
  text-decoration: none;
  padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
  background-color: var(--primary);
}

.navbar .dropdown-divider {
  width: 100%;
  height: 1px;
  border: none;
  margin: 0.5rem auto 0.5rem auto;
  background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
  color: #eee;
  text-decoration: none;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  transition: all 0.2s ease;
}

.nav-link.active {
  border-top: var(--light) 2px solid;
  border-color: var(--secondary);
}
.navbar .fa-stack {
  width: 2em;
  font-size: 0.75rem;
  margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ce2535),
    to(#ce2535)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
  color: #ffffff;
  transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
  color: var(--primary);
}

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  font-size: 1.25rem;
  z-index: 1000;
}

.header-subtitle {
  line-height: 20px;
}

/****************/
/*     Home     */
/****************/
.home {
  background-image: url(../mh_asset/images/home.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.mh-about {
  background-image: url(../mh_asset/images/about-hero.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.mh-contact {
  background-image: url(../mh_asset/images/contact-hero.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}
.para {
  width: 50%;
}

.para-light {
  opacity: 0.7;
}

/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row div:first-child {
  background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
  background-color: white;
}

.information .container-fluid .row div:nth-child(2) {
  background-color: var(--primary-light);
}

/******************/
/*     Button     */
/******************/
.btn {
  color: white;
  border-radius: 0;
  border-width: 2px;
  padding: 10px 30px;
  border-radius: 10px;
  border-image-slice: 1;
  background-image: none;
  background: transparent;
  /* border-image-source: var(--gradient);
  box-shadow: 5px 5px 0px 0px var(--secondary); */
  background-color: var(--primary-light);
}

.btn:hover {
  color: white;
  background-color: var(--primary-light);
}

/* Email - Newsletter Button */
.btn-secondary {
  color: black;
  border-width: 2px;
  padding: 10px 30px;
  border-image-slice: 1;
  background-image: none;
  background: transparent;
  border-image-source: var(--gradient);
}

.btn-secondary:hover {
  color: black;
  padding: 10px 30px;
  background-image: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
  color: black;
  border-radius: 0;
  border-width: 2px;
  padding: 10px 30px;
  border-image-slice: 1;
  background-image: none;
  background: transparent;
  border-image-source: var(--gradient);
  box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
  color: black;
  box-shadow: none;
  border-radius: 0;
  padding: 10px 30px;
  transform: translate(5px, 5px);
}

/********************/
/*     Services     */
/********************/
.services .card {
  padding: 20px;
  border-radius: 0;
  border: 2px solid white;
}
.mh-icon {
  width: 48px;
}

.mh-height-card {
  height: 442px !important;
}
.services .card:hover {
  border: 10px solid;
  transform: scale(1.01);
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: var(--gradient);
  box-shadow: 5px 5px 0px 0px #ce2535;
}

/*****************/
/*     Plans     */
/*****************/
.plans .card {
  padding: 20px;
  border: 2px solid white;
}

.social-icons {
  border: #ffffff 1px solid;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  margin-right: 10px;
  padding: 10px;
  text-align: center;
  animation: fadeIn 2s;
}

.social-icons:hover {
  border: #ffffff 1px solid;
  background-color: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  margin-right: 10px;
  text-align: center;
  animation: fadeIn 2s;
}

/************************/
/*     Testimonials     */
/************************/
.slider-1 {
  padding-top: 8.25rem;
  padding-bottom: 8.5rem;
}

.slider-1 .section-title {
  text-align: center;
}

.slider-1 .h2-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-card {
  border: 10px solid;
  border-image-slice: 1;
  border-width: 3px;
  border-image-source: var(--gradient);
}

.slider-1 .slider-container {
  position: relative;
}

.slider-1 .swiper-container {
  width: 86%;
  position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
  color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
  /* even if you can't see it chrome you can see it on mobile device */
  outline: none;
}

.slider-1 .swiper-button-prev {
  left: -14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
  background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
  right: -14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
  background-size: 18px 28px;
}

.slider-1 .card {
  border: none;
  position: relative;
  background-color: transparent;
}

.slider-1 .card-image {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.slider-1 .card-body {
  padding: 0;
}

.slider-1 .testimonial-text {
  margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
  margin-bottom: 0;
  color: #252c38;
}

.slider-1 .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**********************/
/*     Newsletter     */
/**********************/
.form-control-input,
.form-control-textarea {
  width: 100%;
  appearance: none;
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  padding-left: 1.5rem;
  padding-top: 0.775rem;
  padding-bottom: 0.775rem;
}

/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
  z-index: 99;
  right: 20px;
  width: 52px;
  height: 52px;
  bottom: 20px;
  border: none;
  outline: none;
  display: none;
  position: fixed;
  cursor: pointer;
  border-radius: 50%;
  background-color: #323137;
}

#myBtn:hover {
  background-color: #0f0f11;
}

#myBtn img {
  width: 18px;
  margin-left: 0.125rem;
  margin-bottom: 0.25rem;
}

/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  background-color: var(--primary);
}

.ex-header h1 {
  color: #fff;
}

.ex-basic-1 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
  margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
  padding: 1.25rem 1.25rem 0.5rem 1.25rem;
  background-color: #f7f9fd;
}

.ex-cards-1 .card {
  border: none;
  background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
  width: 2em;
  font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
  width: 2em;
  color: #ffffff;
  font-weight: 700;
  line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
  margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
  margin-top: 0.125rem;
  margin-bottom: 0.5rem;
}

/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width: 1024px) {
  .services,
  .about,
  .work,
  .testimonial,
  .contact,
  .plans {
    height: 100%;
  }
  .footer-headline-wrapper {
    display: none;
  }
  .work {
    height: 80rem;
  }
  .scroll-down {
    display: none;
  }
}

@media (min-width: 992px) {
  .slider-1 .swiper-container {
    width: 92%;
  }

  .slider-1 .swiper-button-prev {
    left: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  .slider-1 .swiper-button-next {
    right: -16px;
    width: 22px;
    background-size: 22px 34px;
  }
  .footer-headline {
    font-size: 7em;
  }
  .footer-headline-wrapper {
    position: relative;
    width: 100%;
  /* overflow-x: hidden; */
    font-weight: 500;
    height: 10%;
    padding-top: 30px;
    background-color: var(--primary);
  }

  .footer-headline div {
    position: absolute;
    top: -10%;
    line-height: 100%;
  }
  .footer-headline .st {
    left: -30px;

    clear: both;
    position: relative;
  }

  .footer-headline .mo {
    right: -30px;
    text-align: right;
    clear: both;
    position: relative;
  }
  .color-box {
    position: absolute;
    height: 60vh;
    width: 90%;
    left: 0;
    bottom: 0;
    display: block;
    background-color: var(--secondary);
  }
  .footer {
    display: block;
  }

  /* Navigation */
  .navbar {
    box-shadow: none;
    transition: all 0.2s;
    padding-top: 1.75rem;
    background-color: transparent;
  }

  .navbar.top-nav-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: var(--primary);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
    height: 60px;
    transition: all 0.5s;
  }

  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    overflow-y: visible;
    visibility: visible;
  }

  .offcanvas-collapse.open {
    transform: none;
  }

  .navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar .nav-item .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .navbar .dropdown-menu {
    padding-top: 0.75rem;
    padding-bottom: 0.875rem;
    box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
  }

  .navbar .dropdown-divider {
    width: 90%;
  }

  .navbar .social-icons {
    margin-left: 0.5rem;
  }

  .navbar .fa-stack {
    margin-right: 0;
    margin-left: 0.25rem;
  }
}

@media only screen and (max-width: 540px) {
  h1 {
    font-size: 30px;
  }

  .para {
    width: 100%;
  }

  .swiper-container {
    width: 92%;
  }

  .swiper-button-prev {
    left: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  .swiper-button-next {
    right: -16px;
    width: 22px;
    background-size: 22px 34px;
  }
  .scroll-down {
    display: none;
  }
}

.scroll-down {
  width: 230px;
  height: 155px;
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--light);
  background-color: var(--secondary);
  text-align: center;
  transform: rotate(90);
}

.scroll-down .text {
  transform: rotate(90deg);
}

/* tabs */
/* Style the tab */
.tab {
  overflow: hidden;
  margin-bottom: 50px;
  /* border: 1px solid #ccc;
  background-color: #f1f1f1; */
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  /* border: none; */
  outline: none;
  cursor: pointer;
  padding: 6px 10px;
  transition: 0.3s;
  font-size: 12px;
  border: solid 1px #ffffff;
  color: #ffffff;
  margin: 0 0.1rem;
  border-radius: 100px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ffffff;
  color: #111111;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  /* border: 1px solid #ccc; */
  border-top: none;
}
/* tabs */

.mh-clients {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.mh-client {
  color: #111111 !important;
}

.portfolio-image {
  position: relative;
}
.portfolio-image-hover {
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.portfolio-image-hover i {
  color: white;
  font-size: 2rem;
  margin-top: 19rem;
  margin-left: 7rem;

  transition: all 0.4s ease;
}

.portfolio-image-hover i:nth-child(2) {
  transition-delay: 0.1s;
}
.portfolio-cards-content:hover .portfolio-image-hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.portfolio-cards-content:hover i {
  margin-top: unset;
}
.portfolio-content hr {
  width: 4rem;
}
.portfolio-content h3 {
  font-weight: 300;
}
.portfolio-content p {
  font-size: 0.9rem;
  max-width: 17rem;
  font-weight: 300;
}
.portfolio-cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 70rem;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}
.portfolio-cards-content {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
/* .portfolio-cards-content img {
  height: 16.5rem;
  object-fit: cover;
} */

.portfolio-cards-content h3 {
  font-weight: 300;
  padding-top: 1rem;
  font-size: 1.3rem;
}
.portfolio-cards-content p {
  font-size: 0.8rem;
  font-weight: 300;
}
.portfolio-image-div {
  background-color: red;
  position: absolute;
}

.mh-values-card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;

  padding-bottom: 2rem;
  width: 100%;
}

.mh-values-card-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 34rem !important;
  border-bottom: 1px solid #d9d9d9;

  padding-bottom: 2.32rem;
}

.swiper {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #394854;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  height: 500px !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  display: none !important;
}

.mh-testimonal-slide {
  height: 500px !important;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 1rem 2rem;
  background-image: url("../mh_asset/images/Vector\ \(4\).png");
  background-repeat: no-repeat;
  background-position: bottom right;
}

.mh-testimonal-slide p {
  text-align: left;
}
.mh-testimonal-title h3 {
  line-height: 1rem;
}
.mh-contact-form {
  background-image: url(../mh_asset/images/contact-us-girl.png);
  background-repeat: no-repeat;
  background-position: center right;
background-size: contain;
}

.contact-countries {
  width: 74vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1130px) {
  .contact-countries {
        width: 100vw;
    flex-wrap: wrap;
    height: auto !important;
  }
  .portfolio-cards-content {
    width: 100vw !important;
    height: 100vh;
  }

  .portfolio-image {
    width: 100vw !important;
    height: 100vh;
  }
  .portfolio-cards-content img {
    height: 100vh;
    width: 100vw !important;
    object-fit: cover;
  }
  .portfolio-cards-content2 {
    width: 50vw !important;
    height: 50vh;
  }

  .portfolio-image2 {
    width: 50vw !important;
    height: 50vh;
  }

  .portfolio-image2 img {
    width: 50vw !important;
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .mh-contact-form {
    width: 100vw !important;
    height: 60vh !important;
  }
}
@media (max-width: 460px) {
  .portfolio-cards-content {
    height: auto !important;
  }
 
  .portfolio-image {
    height: auto !important;
  }

  .portfolio-cards-content img {
    height: auto !important;
  }
  .portfolio-cards-content2 {
    width: 100vw !important;
    height: 50vh;
  }

  .portfolio-image2 {
    width: 100vw !important;
    height: 50vh;
  }

  .portfolio-image2 img {
    width: 100vw !important;
    height: 50vh;
  }
}
.portfolio {
  background-color: rgba(247, 247, 247, 1);
  height: auto;
  padding-bottom: 7rem;
}
.portfolio-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.portfolio-image {
  position: relative;
  width: 50vw;
  height: 100vh;
}
.portfolio-image-hover {
  position: absolute;
  top: 0;
  left: 3re;
  background-color: rgb(0 0 0 / 43%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
  flex-direction: column;
  cursor: pointer;
}

.portfolio-image-hover h2 {
  color: white;
  font-size: 2rem;
  margin-left: 2rem;
  margin-top: 40rem;
  transition: all 0.4s ease;
}



.country-details {
  margin-left: 2rem;
  color: white;
}
.contact-countries-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
flex-direction: column;
}

.portfolio-image-hover h2:nth-child(2) {
  transition-delay: 0.1s;
}
.portfolio-cards-content:hover .portfolio-image-hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.portfolio-cards-content:hover h2 {
  margin-top: unset;
}
.portfolio-content hr {
  width: 4rem;
}
.portfolio-content h3 {
  font-weight: 300;
}
.portfolio-content p {
  font-size: 0.9rem;
  max-width: 17rem;
  font-weight: 300;
}
.portfolio-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 70rem;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}
.portfolio-cards-content {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50vw;
  height: 100vh;
}
.portfolio-cards-content img {
  height: 100vh;
  width: 50vw;
  object-fit: cover;
  object-position: top;
}

.portfolio-cards-content h3 {
  font-weight: 300;
  padding-top: 1rem;
  font-size: 1.3rem;
}
.portfolio-cards-content2 p {
  font-size: 0.8rem;
  font-weight: 300;
}
.portfolio-image-div {
  background-color: red;
  position: absolute;
}

.portfolio-cards-content2 {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 25vw;
  height: 50vh;
}

.portfolio-image2 {
  position: relative;
  width: 25vw;
  height: 50vh;
}
.portfolio-image2 img {
width: 638px;
 height: 68vh;
}

.portfolio-image-hover2 {
  position: absolute;
  top: 0;
  left: 3re;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
  flex-direction: column;
  cursor: pointer;
}

.portfolio-image-hover2 h2 {
  color: white;
  font-size: 2rem;
  margin-left: 2rem;
  margin-top: 22rem;
  transition: all 0.4s ease;
}

.country-details2 {
  margin-left: 2rem;
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

/* 
.portfolio-cards-content2:hover .portfolio-image-hover2 {
  background-color: rgba(0, 0, 0, 0.5);
} 
*/

.portfolio-cards-content2:hover h2 {
  margin-top: unset;
}

.strike-through {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  transition: 0.5s;
}

.scroll-down:hover {
  padding-bottom: 10px;
  background-color: var(--primary);
  transition: 0.5s;
}

.scroll-down:hover .text {
  margin-top: 10px;

  transition: 0.5s;
}
