/* [Master Stylesheet] */
/* ----------------------------------------------------------
    :: Template 
    :: Author: Turbo
    :: Author URL:www.boo-code.com 
    :: Version: 1.0
    :: Created: 10 2023
    :: Last Updated: 10 2023
    ---------------------------------------------------------- */
/* -------------------------------------------------
    ============ PLACE YOUR CUSTOM CSS HERE ============
    ------------------------------------------------- */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: unset;
}

body {
  font-family: "Cairo", serif;
}

.title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.title-box .main-title {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #CA0D09;
  text-align: center;
}

.title-box .main-title::before,
.title-box .main-title::after {
  content: "";
  position: absolute;
  top: 55%;
  width: 90px;
  height: 8px;
  background-color: #F2A441;
  transform: translateY(-55%);
}

.title-box .main-title::before {
  left: -130px;
  border-radius: 10px 0 0 10px;
}

.title-box .main-title::after {
  right: -130px;
  border-radius: 0 10px 10px 0;
}

header {
  background-image: url("../images/header/header-bg.png");
  background-size: cover;
  background-position: center -15px;
  background-repeat: no-repeat;
  padding: 1.5rem 0;
  min-height: 150px;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

header ul {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 0;
}

header ul.right {
  justify-content: flex-end;
  margin-inline-end: 7rem;
}

header ul.left {
  justify-content: flex-start;
  margin-inline-start: 7rem;
}

header ul li a {
  color: #202020;
  font-size: 1.1rem;
  font-weight: 600;
  background: #F6F4F4;
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  transition: all 0.3s ease-in-out;
}

header ul li a:hover {
  color: #CA0D09;
}

header ul li a.active {
  color: #fff;
  background: #CA0D09;
}

header ul li .header-dropdown-toggle {
  background: #F6F4F4;
  border-radius: 2rem;
  padding: 0.71rem 2rem;
  border: none;
  box-shadow: none;
  color: #202020;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
}

header ul li .header-dropdown-toggle:hover {
  color: #CA0D09;
}

header ul li .header-dropdown-toggle.active {
  color: #fff;
  background: #CA0D09;
}

.section-hero .slide .item-content {
  padding-top: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
}

.section-hero .slide .item-content img {
  width: 100%;
  max-width: 300px;
}

.section-hero .slide .item-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
}

.section-hero .slide .item-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
}

.section-hero .slide .item-content a {
  display: inline-block;
  background: #CA0D09;
  color: #fff;
  border: 2px solid #CA0D09;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin-top: 6rem;
  width: 300px;
}



.section-hero .slide .item-content a:hover {
  background: #fff;
  border-color: #fff;
  color: #CA0D09;
}

.section-about {
  padding: 4rem 0;
}

.section-about h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #F2A441;
  margin-bottom: 1.5rem;
}

.section-about p {
  color: #202020;
  font-size: 1.5rem;
  line-height: 1.8;
  width: 75%;
}

.section-about .about-box {
  display: flex;
  align-items: start;
  gap: 2rem;
}

.section-about .about-box .img-box {
  box-shadow: 0px 0px 8.9px 0px rgba(0, 0, 0, 0.1607843137);
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.section-about .about-box .img-box img {
  width: 100%;
  max-width: 45px;
}

.section-about .about-box .description h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #CA0D09;
  margin-bottom: 1rem;
}

.section-about .about-box .description p {
  color: #202020;
  font-size: 1.2rem;
  line-height: 1.8;
}

.section-services {
  padding: 4rem 0;
  background: #FAFAFA url("../images/services/bg.png") no-repeat center center;
  background-size: cover;
}

.section-services .big-img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

.section-services .services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-services .services-list h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #F2A441;
  margin-bottom: 1rem;
  position: relative;
  padding-inline-start: 1rem;
}

.section-services .services-list h3::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  background: #F2A441;
  transform: translateY(-50%);
}

.section-services .services-list h3.red-title {
  color: #CA0D09;
}

.section-services .services-list h3.red-title::before {
  background: #CA0D09;
}

.section-services .services-list p {
  color: #202020;
  font-size: 1.2rem;
  line-height: 1.8;
  width: 75%;
}

.section-products {
  padding: 4rem 0;
}

.section-products .title-box {
  margin-bottom: 2rem;
}

.section-products .description {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  width: 75%;
  margin: 0 auto;
}

.section-products .products-list {
  margin-top: 2rem;
}

.section-products .products-list .product-box {
  margin: 0.8rem 0;
  transition: all 0.3s ease-in-out;
}

.section-products .products-list .product-box:hover {
  transform: scale(1.05);
}

.section-brands {
  padding: 4rem 0;
  background: #FAFAFA;
}

.section-brands .title-box {
  margin-bottom: 2rem;
}

.section-brands .description {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  width: 75%;
  margin: 0 auto;
}

.brand-slider {
  padding: 20px 0;
}

.brand-slider .item {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 10px;
  /* Increase card size */
  min-height: 150px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-image {
  /* Control image size within card */
  max-width: 80%;
  height: auto;
  object-fit: contain;
}

/* Owl Carousel specific settings */
.owl-carousel {
  padding: 0 20px;
}

.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.section-brands .brand-slider {
  margin-top: 2rem;
}

.section-brands .brand-slider .item {
  box-shadow: 0px 0px 8.9px 0px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.section-brands .brand-slider .item img {
  width: 100%;
  max-width: 150px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto;
}

.section-brands .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 2rem;
}

.section-brands .owl-theme .owl-dots .owl-dot.active span,
.section-brands .owl-theme .owl-dots .owl-dot:hover span {
  background: #CA0D09;
}

.section-why-us {
  padding: 6rem 0;
}

.section-why-us img {
  width: 75%;
  max-width: 927px;
  display: block;
  margin: 0 auto;
}

.section-contact {
  padding: 4rem 0;
  background: #FAFAFA;
  overflow-x: hidden;
}

.section-contact .title-box {
  margin-bottom: 2rem;
}

.section-contact .description {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  width: 75%;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.section-contact .social-box {
  background: #FFCB1A;
  padding: 4rem 0;
  color: #fff;
  border-radius: 20px 0 0 20px;
  margin-inline-end: 2rem;
}

.section-contact .social-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.section-contact .contact-box-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-contact .contact-box-list .contact-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-contact .contact-box-list .contact-box img {
  width: 100%;
  max-width: 50px;
}

.section-contact .contact-box-list .contact-box a {
  color: #202020;
  font-size: 1.2rem;
  line-height: 1.8;
}

.social-list {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  justify-content: center;
}

.social-list li a img {
  width: 100%;
  max-width: 50px;
  transition: all 0.3s ease-in-out;
}

.social-list li a img:hover {
  transform: scale(1.1);
}

footer {
  padding-top: 4rem;
  background: #26244a;
  color: #fff;
}

footer .footer-logo {
  width: 100%;
  max-width: 100px;
  margin-bottom: 1.5rem;
}

footer .description {
  font-size: 1.2rem;
  line-height: 1.8;
  width: 75%;
  margin-bottom: 1.5rem;
}

footer h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.8;
}

footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer .footer-links li a {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
  transition: all 0.3s ease-in-out;
}

footer .footer-links li a:hover {
  color: #F2A441;
}

footer .bottom-footer {
  background: rgba(0, 0, 0, 0.1882352941);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

footer .bottom-footer p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.product-details .banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-top: 8rem;
  margin-bottom: 4rem;
}

.product-details .banner .banner-title-box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.5rem;
}

.product-details .banner .banner-title-box .icon-img {
  width: 100%;
  max-width: 70px;
  display: block;
}

.product-details .banner .banner-title-box h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.product-details .product-img {
  border-radius: 18px;
  box-shadow: 0px 0px 8.9px 0px rgba(0, 0, 0, 0.1607843137);
}

.product-details .big-img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
}

.product-details h2 {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 800;
  color: #F2A441;
  margin-bottom: 1rem;
}

.product-details ul li {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #202020;
  margin-bottom: 1rem;
}

.product-details .products-images {
  margin-top: 8rem;
  padding-bottom: 4rem;
}

.product-details .products-images img {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  box-shadow: 0px 0px 8.9px 0px rgba(0, 0, 0, 0.1607843137);
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

.map iframe {
  width: 100%;
  height: 518px;
  border: none;
  position: relative;
  z-index: 2;
  box-shadow: 0px 0px 8.9px 0px rgba(0, 0, 0, 0.1607843137);
  border-radius: 18px;
  margin-bottom: 4rem;
}

.why-our-products {
  padding: 4rem 0;
  background: #FAFAFA;
}

.why-our-products img {
  width: 75%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
}

.who-we-are {
  padding: 2rem 0;
}

.who-we-are .who-we-are-logo {
  width: 100%;
  max-width: 250px;
  display: block;
  margin: 0 auto;
}

.who-we-are h4 {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #202020;
  margin-top: 1rem;
}

.who-we-are .second-row {
  margin-top: 5rem;
}

.who-we-are .second-row img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  margin-top: 1rem;
}

.who-we-are-features {
  overflow-x: hidden;
  padding: 4rem 0;
}

.who-we-are-features .features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.who-we-are-features .features-list h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #F2A441;
  margin-bottom: 1rem;
  position: relative;
  padding-inline-start: 1rem;
}

.who-we-are-features .features-list h3::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  background: #F2A441;
  transform: translateY(-50%);
}

.who-we-are-features .features-list h3.red-title {
  color: #CA0D09;
}

.who-we-are-features .features-list h3.red-title::before {
  background: #CA0D09;
}

.who-we-are-features .features-list p {
  color: #202020;
  font-size: 1.2rem;
  line-height: 1.8;
  width: 75%;
}


/* eidt-project-mohammed */
.heartbeatSlow {
  animation-name: heartbeatSlow;
  animation-iteration-count: infinite;
  animation-duration: .9s;
  animation-timing-function: ease-in-out;

}

@keyframes heartbeatSlow {

  35%,
  65% {
    transform: scale(1.3)
  }
}


.heartbeatSlow-B {
  animation-name: heartbeatSlow;
  animation-duration: .9s;
  animation-timing-function: ease-in-out;

}

@keyframes heartbeatSlow {

  35%,
  65% {
    transform: scale(1.3)
  }
}

.card-box-button {
  display: inline-block;
  background: #CA0D09;
  color: #fff;
  border: 2px solid #CA0D09;
  padding: 0.75rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  width: 200px;
}

.our-branches-bg {
  background-color: #f8f9fa;
}

.our-branches {
  padding-right: 90px;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.our-branches-itmes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  gap: 19rem;
}



.description-color {
  color: #202020;
}

.card-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* Responsive */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .title-box .main-title {
    font-size: 1.5rem;
  }

  .title-box .main-title::before,
  .title-box .main-title::after {
    width: 40px;
  }

  .title-box .main-title::before {
    left: -50px;
  }

  .title-box .main-title::after {
    right: -50px;
  }

  .section-about h2 {
    font-size: 1.5rem;
  }

  .section-about p {
    width: 100%;
  }

  .section-hero .slide .carousel-item h1 {
    font-size: 1.5rem;
  }

  .section-hero .slide .carousel-item p {
    font-size: 1.2rem;
  }

  .section-hero .slide .carousel-item img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 2rem;
  }

  .section-hero .slide .carousel-item button {
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    width: 200px;
  }

  .section-products .description,
  .section-brands .description {
    width: 100%;
  }

  .section-why-us {
    padding: 3rem 0;
  }

  .section-contact .description {
    width: 100%;
    margin-bottom: 2rem;
  }

  .section-contact .social-box {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .section-contact .contact-box-list {
    gap: 1rem;
    padding: 0 1rem;
  }

  .social-list li a img {
    max-width: 40px;
  }

  .section-contact .contact-box-list .contact-box img {
    max-width: 40px;
  }

  .section-contact .social-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  footer {
    padding-top: 2rem;
  }

  footer .footer-logo {
    max-width: 80px;
  }

  footer .description {
    font-size: 1rem;
    width: 100%;
  }

  footer h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  footer .footer-links li a {
    font-size: 1rem;
  }

  footer .bottom-footer {
    margin-top: 2rem;
  }

  .section-brands .title-box {
    margin-bottom: 1rem;
  }

  .section-hero .slide .carousel-item {
    padding-top: 0;
  }

  .logo {
    width: 100%;
    max-width: 50px;
  }

  .navbar .navbar-nav {
    padding: 1rem 0;
    gap: 1rem;
  }

  .navbar .navbar-nav li a {
    color: #202020;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
  }

  .navbar .navbar-nav li a:hover {
    color: #CA0D09;
  }

  .navbar .navbar-nav li a.active {
    color: #fff;
    background: #CA0D09;
  }

  .navbar .navbar-nav li .header-dropdown-toggle {
    background: transparent;
    width: 100%;
    border-radius: 2rem;
    padding: 0.71rem 2rem;
    border: none;
    box-shadow: none;
    color: #202020;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: start;
    transition: all 0.3s ease-in-out;
  }

  .navbar .navbar-nav li .header-dropdown-toggle:hover {
    color: #CA0D09;
  }

  .navbar .navbar-nav li .header-dropdown-toggle.active {
    color: #fff;
    background: #CA0D09;
  }

  .title-box {
    margin-bottom: 2rem;
  }

  .section-contact .contact-box-list .contact-box a {
    font-size: 1rem;
  }

  .product-details .products-images img {
    height: 200px;
  }

  .product-details .products-images {
    margin-top: 3rem;
  }

  .product-details h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .product-details .banner {
    padding: 4rem 0;
    min-height: 240px;
    padding-top: 6rem;
  }

  .product-details .banner .banner-title-box h1 {
    font-size: 1.5rem;
  }

  .product-details .banner .banner-title-box .icon-img {
    max-width: 50px;
  }

  .our-branches-itmes {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 0rem;
  }

  .our-branches {
    padding-right: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
}

/* galaxy S5 */
/* iphone x, 6/7/8 */
/* iphone 6/7/8 plus */
/* ipad */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .section-hero .slide .carousel-item h1 {
    font-size: 2rem;
  }

  .section-hero .slide .carousel-item p {
    font-size: 1.2rem;
  }

  .section-hero .slide .carousel-item img {
    max-width: 200px;
  }

  .section-hero .slide .carousel-item button {
    margin-top: 4rem;
  }

  .section-about h2 {
    font-size: 1.5rem;
  }

  .section-about p {
    width: 100%;
  }

  .section-about .about-box {
    gap: 1rem;
  }

  .section-about .about-box .description p {
    font-size: 1rem;
  }

  .section-contact .social-box {
    padding: 2rem 0;
    padding: 1rem;
  }

  .section-contact .social-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .section-contact .description {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .section-why-us {
    padding: 3rem 0;
  }

  .section-contact .contact-box-list .contact-box img {
    max-width: 40px;
  }

  .social-list li a img {
    max-width: 40px;
  }

  .title-box .main-title {
    font-size: 2rem;
  }

  header ul.right {
    margin-inline-end: 4rem;
  }

  header ul.left {
    margin-inline-start: 4rem;
  }

  header ul {
    gap: 1.5rem;
  }

  header ul li a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  header ul li .header-dropdown-toggle {
    padding: 0.71rem 1rem;
    font-size: 1rem;
  }

  .product-details .products-images img {
    height: 180px;
  }

  .product-details .products-images {
    margin-top: 4rem;
  }

  .section-why-us img {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: 0 auto;
  }

  .why-our-products img {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: 0 auto;
  }

  .our-branches-itmes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 5rem;
  }

  .our-branches {
    padding-right: 90px;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

}

@media (min-width: 992px) and (max-width: 1200px) {
  .section-hero .slide .carousel-item h1 {
    font-size: 2.5rem;
  }

  .section-hero .slide .carousel-item p {
    font-size: 1.5rem;
  }

  .section-hero .slide .carousel-item img {
    max-width: 250px;
  }

  .section-hero .slide .carousel-item button {
    margin-top: 4rem;
  }

  .section-about h2 {
    font-size: 1.8rem;
  }

  .section-about p {
    width: 100%;
  }

  .section-about .about-box {
    gap: 1rem;
  }

  .section-about .about-box .description p {
    font-size: 1.2rem;
  }

  .section-contact .social-box {
    padding: 2rem 0;
    padding: 1rem;
  }

  .section-contact .social-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .section-contact .description {
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .section-why-us {
    padding: 3rem 0;
  }

  .section-contact .contact-box-list .contact-box img {
    max-width: 50px;
  }

  .social-list li a img {
    max-width: 50px;
  }

  .title-box .main-title {
    font-size: 2.5rem;
  }

  header ul.right {
    margin-inline-end: 5rem;
  }

  header ul.left {
    margin-inline-start: 5rem;
  }

  header ul {
    gap: 2rem;
  }

  header ul li a {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
  }

  header ul li .header-dropdown-toggle {
    padding: 0.71rem 1.5rem;
    font-size: 1.2rem;
  }

  .product-details .products-images img {
    height: 200px;
  }

  .product-details .products-images {
    margin-top: 5rem;
  }

  .section-why-us img {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: 0 auto;
  }

  .our-branches-itmes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 10rem;
  }

  .our-branches {
    padding-right: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

}

/*  large screen  */
/* 17 inch */
/*# sourceMappingURL=style.css.map */