/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
 * ==================
 * Start Here
 * ==================
 */
*,*::before,*::after{
    padding: 0;
    margin: 0;
    box-sizing: inherit;
}
html {
    font-size: 62.5%; /* 10px of 16px */
    box-sizing: border-box;
    height: 100%;
}

body {
    color: white;
    background-color: #111111;
    position: relative;
    height: 100%;
    line-height: 1.5;
    font-size: 1.6rem; /* 16px */
    font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
.section{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 7rem;
}
.section:last-of-type{
    margin-bottom: 0;
}
.section__title{
    font-weight: 800;
    font-size: 5rem;
    position: relative;
}
.section__title::before{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 125%;
    transform: translateX(-50%);
    border-bottom: 3px dashed #00FF94;
}

/*
 * ==================
 * Navbar Component
 * ==================
 */
.nav {
    padding-top: 1rem;
    padding-bottom: 1px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(5px);
    /* margin-top: -1rem; */
}
.nav__list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 0;
    overflow-y: scroll;
}
.nav__list-item {
    text-align: center;
    margin-bottom: 5rem;
}
.nav__list-link {
    color: #688277;
    position: relative;
    font-weight: 800;
    text-decoration: none;
    outline: none;
    font-size: 2rem;
}
.nav__list-link::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 99rem;
    background-color: #59FFB9;
    position: absolute;
    bottom: -12px;
    left: 0;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform .15s ease-in-out;
}
.nav__list-link:focus,
.nav__list-link:hover {
    color: #59FFB9;
}
.nav__list-link:focus::before,
.nav__list-link:hover::before {
    transform: scaleX(1);
}
.nav__list-link.active {
    color: #59FFB9;
}
.nav__list-link.active:focus {
    color: #93ffd0;
}
.nav__list-link.active:focus::before {
    background-color: #93ffd0;
}
.nav__list-link.active::before {
    transform: scaleX(1);
}
.nav__hamburger-btn{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    overflow: hidden;
}
.nav__hamburger-top,
.nav__hamburger-center,
.nav__hamburger-bottom{
    display: block;
    width: 95%;
    height: 3px;
    border-radius: 99rem;
    background-color: white;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}
.nav__hamburger-top{
    top: 25%;
}
.nav__hamburger-center{
    top: 50%;
}
.nav__hamburger-bottom{
    top: 75%;
}


/*
 * ==================
 * Hero Header
 * ==================
 */
.hero-header{
    position: relative;
    overflow: hidden;
}
.header__container{
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.header__bg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background: linear-gradient(to top, #111, #1110);
    z-index: -1;
}
.header__left{
    width: 100%;
    max-width: 900px;
}
.header__right{
    position: absolute;
    right: 0;
    z-index: -1;
    display: none;
}
.header__right img{
    width: 60%;
}
.header__sup-text{
    display: inline-flex;
    font-weight: 600;
    font-size: 1.2rem;
}
.header__title{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 5rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
}
.header__title-1,
.header__title-2{
    display: block;
    position: relative;
}
.header__title-1::before,
.header__title-1::after,
.header__title-2::before,
.header__title-2::after{
    content: attr(data-role);
    position: absolute;
    left: 2px;
    top: 0;
    color: white;
    background: #111111; /* To create an illusion that the text is moving */
    overflow:hidden;
    clip: rect(0,900px,0,0); /* Only show some part of the clipped-text */
}

.header__title-1::before,
.header__title-2::before{
    text-shadow: -5px 0 #59FFB9;
    animation: distort-1 2s infinite linear alternate-reverse;
}

.header__title-1::after,
.header__title-2::after{
    text-shadow: -5px 0 #7218FA;
    animation: distort-2 2s infinite linear alternate-reverse;
}

.header__msg{
    font-weight: 300;
    font-size: 1.6rem;
    margin-top: 1rem;
    line-height: 1.8;
    /* margin-bottom: -3rem; */
}

/* for responsive by chatGPT */
/* For small screens */
@media screen and (max-width: 768px) {
    .header__container {
      height: 50rem; /* Adjust height based on content */
      flex-direction: auto; /* Stack elements vertically */
      text-align: auto; /* Center-align text */
    }
  
    .header__left {
      width: 100%;
      max-width: none; /* Allow text to take full width */
      margin-bottom: 2rem; /* Add some spacing between sections */
    }
  
    .header__right {
      display: block; /* Show illustration */
      position: static; /* Reset positioning */
      margin-bottom: 2rem; /* Add spacing */
    }
  
    .header__title {
      font-size: 3.5rem; /* Decrease font size for smaller screens */
    }
  }
  
  /* For larger screens */
  @media screen and (min-width: 769px) {
    .header__container {
      height: 100vh; /* Restore full height for larger screens */
      flex-direction: row; /* Revert to horizontal layout */
      justify-content: space-between; /* Space elements apart */
      align-items: center; /* Center vertically */
    }
  
    .header__left {
      width: 60%; /* Adjust width to leave space for illustration */
      max-width: 100%; /* Ensure it takes full available width */
      margin-right: 2rem; /* Add some spacing between sections */
    }
  
    .header__right {
      display: block; /* Show illustration */
      position: absolute; /* Position to the right */
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  
    .header__title {
      font-size: 5rem; /* Restore original font size */
    }
  }
/* end of responsive by chatGPT   */


/*
 * ==================
 * Services
 * ==================
 */
.service-cards{
    display: flex;
    flex-direction: column;
    margin-top: auto;
}
.service-card__box{
    margin-bottom: 1rem;
    border: 2px solid #00372b;
    padding: 1rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}
.service-card__illustration{
    display: flex;
    width: 250px;
}
.service-card__illustration img{
    width: 100%;
    pointer-events: none;
}
.service-card__title{
    font-weight: 800;
    font-size: 2rem;
    color: #00FF94;
    margin-top: 1rem;
}
.service-card__msg{
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.6;
}
.service-card__bg{
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #00FF94;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(30px);
    transform: translate(-50%, -50%);
}


/* services responsive by chatGPT */

/* For small screens */
@media screen and (max-width: 768px) {
    .service-cards {
      margin-top: 3rem; /* Adjust top margin */
      display: flex;
      justify-content: center;
    }
  
    .service-card__box {
      margin-bottom: 0.5rem; /* Decrease bottom margin */
      padding: 0.5rem; /* Adjust padding */
    }
  
    .service-card__illustration {
      width: 200px; /* Decrease illustration width */
    }
  
    .service-card__title {
      font-size: 1.8rem; /* Decrease font size */
    }
  }
  
  /* For medium screens */
  @media screen and (min-width: 769px) and (max-width: 1024px) {
    .service-cards {
      flex-direction: row; /* Change to horizontal layout */
      flex-wrap: wrap; /* Allow cards to wrap */
      justify-content: center; /* Center cards */
    }
  
    .service-card__box {
      margin-right: 2rem; /* Add right margin between cards */
    }
  
    .service-card__illustration {
      width: 180px; /* Decrease illustration width */
    }
  
    .service-card__title {
      font-size: 1.6rem; /* Decrease font size */
    }
  }
  
  /* For large screens */
  @media screen and (min-width: 1025px) {
    .service-cards {
      margin-top: 1rem; /* Restore top margin */
      flex-direction: row; /* Keep horizontal layout */
      justify-content: space-between; /* Space cards evenly */
      
    }
  
    .service-card__box {
      margin-right: 3rem; /* Increase right margin between cards */
    }
  
    .service-card__illustration {
      width: 220px; /* Increase illustration width */
    }
  
    .service-card__title {
      font-size: 2rem; /* Restore font size */
    }
  }
  

/* end responsive by chatGPT */

/*
 * ==================
 * Works
 * ==================
 */
.works{
    margin-top: 10rem;
    display: flex;
    /* flex-wrap: wrap; */
}
.work{
    width: 100%;
    padding: 2%;
}
.work__box{
    border-radius: 7px;
    padding: 1.5rem;
    background-color: #26222d;
}
.work__img-box{
    width: 100%;
    display: flex;
    border-radius: 7px;
    overflow: hidden;
}
.work__img-box img{
    width: 100%;
}
.work__title{
    margin-top: 1rem;
    font-weight: 700;
}
.work__badges{
    display: flex;
    margin-top: 2rem;
    overflow: hidden;
}
.work__badge{
    background-color: #59ffb91c;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem;
    margin-right: 1rem;
}

/* start of responsive by chatGPT */

/* For small screens */
@media screen and (max-width: 768px) {
    .works {
      margin-top: 5rem; /* Adjust top margin */
      flex-direction: column; /* Stack items vertically */
    }
  
    .work {
      width: 18rem; /* Make each work item take full width */
      margin-bottom: 5rem; /* Add bottom margin between items */
    }
  }
  
  /* For medium screens */
  @media screen and (min-width: 769px) and (max-width: 1024px) {
    .works {
      margin-top: 8rem; /* Adjust top margin */
      flex-wrap: wrap; /* Allow items to wrap */
      justify-content: center; /* Center items */
    }
  
    .work {
      width: 45%; /* Adjust width of each work item */
      margin: 2.5%; /* Add margin between items */
    }
  }
  
  /* For large screens */
  @media screen and (min-width: 1025px) {
    .works {
      margin-top: 10rem; /* Restore top margin */
      justify-content: space-between; /* Space items evenly */
    }
  
    .work {
      width: 30%; /* Adjust width of each work item */
      margin-bottom: 0; /* Remove bottom margin */
    }
  }
  

/* end of responsive by chatGPT */

.contact_img {
    display: flex;
    width: 100%;
    margin-top: 10rem;
    justify-content: space-between;
    padding-bottom: 5rem;
}

.contact__illustration{
    display: none;
}

.contact__illustration{
    position: relative;
}
.contact__illustration img{
    pointer-events: none;
    width: 100%;
}
.contact__illustration::before{
    content: '';
    position: absolute;
    width: 95%;
    height: 95%;
    border-radius: 50%;
    background-color: #64fcd9;
    display: block;
    z-index: -1;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* start of responsive by chatGPt */

@media only screen and (max-width: 768px) {
    .contact_img {
      margin-top: 5rem; /* Adjust margin for better spacing */
      flex-direction: column; /* Stack items vertically */
      align-items: center; /* Center items horizontally */
    }
    
    .contact__illustration {
      display: block; /* Make the illustration visible */
      width: 80%; /* Adjust width as needed */
      margin-bottom: 2rem; /* Adjust margin for better spacing */
    }
    
    /* .contact__illustration::before {
      display: none;
    } */
  }
  /* Hide the background circle in mobile view */
  

/* end of responsive by chatGPT */

/*
 * ==================
 * Footer
 * ==================
 */
.footer{
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    backdrop-filter: blur(75px);
    text-align: center;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
}
.footer__link{
    color: #64fcd9;
}

/*
 * ========================
 * Small Screen -- 576px
 * ========================
 */
@media only screen and (min-width: 36em) {
    .container {
        max-width: 540px;
    }

    /* Header */
    .header__right{
        display: block;
        opacity: 0.3;
    }
    .header__title{
        flex-direction: row;
    }
    .header__title-1{
        margin-right: 1.5rem;
    }

    /* Navbar */
    .nav__list{
        height: unset;
        flex-direction: row;
        justify-content: flex-end;
        overflow-y: unset;
    }
    .nav__list-item{
        margin-bottom: 1rem;
        margin-right: 2rem;
    }
    .nav__list-item:last-of-type{
        margin-right: 0;
    }
    .nav__list-link{
        font-size: 1.3rem;
    }
    .nav__hamburger-btn{
        display: none;
    }

    /* Works */
    .work{
        width: 50%;
    }
}

/*
 * ========================
 * Medium Screen -- 768px
 * ========================
 */
@media only screen and (min-width: 48em) {
    .container {
        max-width: 760px;
    }
    .service-cards{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    .service-card__box{
        width: 28%;
        max-width: 350px;
    }
    .service-card__illustration{
        width: 100%;
        max-width: 150px;
        height: 150px;
    }
}

/*
 * ========================
 * Large Screen -- 992px
 * ========================
 */
@media only screen and (min-width: 62em) {
    .container {
        max-width: 960px;
    }
    .section__title{
        font-size: 8rem;
    }
    .work{
        width: 33.33333333333333%;
    }
    .contact__form{
        width: 40%;
        margin-left: unset;
    }
    .contact__illustration{
        width: 60%;
        display: flex;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*
 * ======================================
 * Large Screen Extended -- 1000px
 * ======================================
 */
@media only screen and (min-width: 62.5em) {
    .header__right{
        width: 500px;
        opacity: 1;
        top: 45%;
    }
}

/*
 * ========================
 * XLarge Screen -- 1200px
 * ========================
 */
@media only screen and (min-width: 75em) {
    .container {
        max-width: 1140px;
    }
    .header__title{
        font-size: 8rem;
    }
    .section{
        margin-bottom: -5rem;
    }
}

/*
 * ========================
 * XXLarge Screen -- 1400px
 * ========================
 */
@media only screen and (min-width: 87.5em) {
    .container {
        max-width: 1320px;
    }
}


/*
 *
 * Animations
 *
 */
@keyframes distort-1{
    0% {
        clip: rect(57px, 9999px, 46px, 0);
    }
    5% {
        clip: rect(15px, 9999px, 56px, 0);
    }
    10% {
        clip: rect(6px, 9999px, 70px, 0);
    }
    15% {
        clip: rect(40px, 9999px, 80px, 0);
    }
    20% {
        clip: rect(32px, 9999px, 44px, 0);
    }
    25% {
        clip: rect(65px, 9999px, 85px, 0);
    }
    30% {
        clip: rect(27px, 9999px, 78px, 0);
    }
    35% {
        clip: rect(59px, 9999px, 93px, 0);
    }
    40% {
        clip: rect(44px, 9999px, 77px, 0);
    }
    45% {
        clip: rect(74px, 9999px, 10px, 0);
    }
    50% {
        clip: rect(73px, 9999px, 42px, 0);
    }
    55% {
        clip: rect(32px, 9999px, 58px, 0);
    }
    60% {
        clip: rect(21px, 9999px, 54px, 0);
    }
    65% {
        clip: rect(71px, 9999px, 11px, 0);
    }
    70% {
        clip: rect(85px, 9999px, 25px, 0);
    }
    75% {
        clip: rect(83px, 9999px, 77px, 0);
    }
    80% {
        clip: rect(62px, 9999px, 52px, 0);
    }
    85% {
        clip: rect(68px, 9999px, 84px, 0);
    }
    90% {
        clip: rect(37px, 9999px, 20px, 0);
    }
    95% {
        clip: rect(10px, 9999px, 15px, 0);
    }
    100% {
        clip: rect(83px, 9999px, 28px, 0);
    }
}
@keyframes distort-2 {
    0% {
        clip: rect(20px, 9999px, 96px, 0);
    }
    5% {
        clip: rect(62px, 9999px, 2px, 0);
    }
    10% {
        clip: rect(63px, 9999px, 39px, 0);
    }
    15% {
        clip: rect(92px, 9999px, 75px, 0);
    }
    20% {
        clip: rect(54px, 9999px, 2px, 0);
    }
    25% {
        clip: rect(22px, 9999px, 96px, 0);
    }
    30% {
        clip: rect(39px, 9999px, 98px, 0);
    }
    35% {
        clip: rect(49px, 9999px, 37px, 0);
    }
    40% {
        clip: rect(90px, 9999px, 17px, 0);
    }
    45% {
        clip: rect(36px, 9999px, 57px, 0);
    }
    50% {
        clip: rect(92px, 9999px, 78px, 0);
    }
    55% {
        clip: rect(97px, 9999px, 65px, 0);
    }
    60% {
        clip: rect(69px, 9999px, 30px, 0);
    }
    65% {
        clip: rect(92px, 9999px, 13px, 0);
    }
    70% {
        clip: rect(74px, 9999px, 76px, 0);
    }
    75% {
        clip: rect(2px, 9999px, 45px, 0);
    }
    80% {
        clip: rect(30px, 9999px, 21px, 0);
    }
    85% {
        clip: rect(58px, 9999px, 34px, 0);
    }
    90% {
        clip: rect(79px, 9999px, 27px, 0);
    }
    95% {
        clip: rect(32px, 9999px, 1px, 0);
    }
    100% {
        clip: rect(87px, 9999px, 63px, 0);
    }
}

/* Apply hover effect to anchor tags */
a:hover {
    color: #00FF94; /* Change text color on hover */
    text-decoration: underline; /* Underline text on hover */
  }
  
  /* Apply hover effect to anchor tags with a specific class */
  a.custom:hover {
    color: #00FF94; /* Change text color on hover */
    font-weight: bold;
    font-size: large;
     /* Apply bold font on hover */
  }


  /* google map */
  /* Responsive Styles */
  .map-container {
    position: relative;
    overflow: hidden;
    padding-top: 30%; /* Aspect ratio 16:9 (divide 9 by 16 = 0.5625) */
    margin-bottom: 3rem; /* Add some spacing between map and other elements */
    border: 2px solid goldenrod; /* Add golden border */
    border-radius: 10px; /* Add border radius for better appearance */
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* end of google map */

  /* Style for the container */
  .social-icons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    font-size: 3rem;
  }

  /* Style for each icon */
  .social-icons-container article {
    margin: 1rem; /* Add spacing between icons */
  }

  /* Responsive styling */
  @media screen and (max-width: 768px) {
    .social-icons-container {
      /* flex-direction: block; */
      /* Stack icons vertically on smaller screens */
      /* align-items: center; */
      /* Center align icons */
      display:flex ;
      font-size: 3rem;
    }
  }

/* add detail */
  .contact-info {
    text-align: center;
    color: #59ffb9;
  }
  .contact-info h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
  }
  .contact-info p {
    margin-top: 1rem;
  }

  /* Media query for smaller screens */
  @media screen and (max-width: 600px) {
    .contact-info h3 {
      font-size: 16px;
    }
  }

  /* for artwork */

  .image-container {
    margin-bottom: 20px;
    /* margin-top: auto; */
  }
  .image-container img {
    max-width: 18rem;
    height: auto;
    margin-right: 9rem;
  }
  .center_img{
    display: flex;
    justify-content: center;  
    margin-top: 5rem;  
  }
  
  @media screen and (max-width: 768px) {
    .center_img{
        display:inline-block;
        justify-content:center;
        /* margin-left: 11rem; */
    }
  }

  /* for cloud logo */

  .logo {
    margin-bottom: 20px;
    margin-top: auto;
    margin-right: auto;
  }
  
  .logo img {
    max-width: 25rem;
    height: auto;
    margin-right: auto;
  }


  /* for imag bottom margin */
  .container_2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    margin-bottom: 10rem;
  }


  /* for kafas logo */

  .kafas_logo {
    margin-bottom: 0px;
    margin-top: auto;
  }
  .kafas_logo img {
    max-width: 5rem;
    height: auto;
    margin-right: 9rem;
  }


  /* .golden-line {
    border-bottom: 5px dotted gold;
    width: 100%;
    margin-bottom: 9rem;
} */

.container-line {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
}

.golden-line {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 5px dotted #00FF94; /* Adjust thickness and color as needed */
    width: 80%; /* Adjust width as needed */
    margin-bottom: 9rem;
}

.header__msgs{
    width: 140rem;
}

@media screen and (max-width: 768px) {
    .header__msgs{
       width: auto;
    }
  }

  .nav-image{
    margin-inline-end: 94rem;
  }
  /* @media screen and (max-width: 768px) {
    .{
        
    }
  } */


  .kafas_logo_home {
    margin-inline-start: -68rem;
    display: flex;
    justify-content: center;
    margin-bottom: -9rem;
  }
  .kafas_logo_home img {
    max-width: 18rem;
    /* height: auto; */
    margin-bottom: -9rem;
  }

  @media screen and (max-width: 768px) {
    .kafas_logo_home{
        margin-inline-start: 0rem;
        margin-bottom: 1rem;
    }
  }
  .kafas_logo_home img {
    margin-bottom: -7rem;
    margin-left: 1rem;
  }
  

  @media screen and (max-width: 768px) {
    .col-md-3{
        margin-left: 9rem;
    }
  }


  .group-container {
    margin-bottom: 1rem;
    /* margin-top: auto; */
  }
  .group-container img {
    max-width: 10rem;
    height: auto;
    margin-right: 9rem;
  }
  .group_img{
    display: flex;
    justify-content: center;  
    margin-top: 1rem;  
  }
  
  @media screen and (max-width: 768px) {
    .group_img{
        display:inline-block;
        justify-content:center;
    }
  }

  .group_container {
    display: block;
    margin-top: -1rem;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}


.bottom-line {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 5px dotted #00FF94; /* Adjust thickness and color as needed */
    width: 30%; /* Adjust width as needed */
    margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
    .bottom-line{
        width: 90%;
    }
  }


.distance {
    margin: 3rem;
}