@font-face {
  font-family: Arabic-font ;
  src: url("../font/IBMPlexSansArabic-Bold.ttf");
}
/* Header */
.wrapper{
    position: fixed;
    font-family:"Noto Kufi Arabic";
    top: 0;
    background: #fff;
    width: 100%;
    z-index: 11;
    margin: 0;
    transition: all 0.3s ease 0s;
  }
  .header-fix {
    background: #fff !important;
    z-index: 9;
  }
  .wrapper nav{
    position: relative;
    display: flex;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
    justify-content: space-between;
  }
  nav .content{
    display: flex;
    align-items: center;
    z-index: 2;
  }
  nav .content .links{
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }
  nav .content .links::before{
    display: none;
    content: '';
    position: absolute;
    width: 190px;
    height: 110px;
    background-color: var(--second-color);
    top: -35px;
    left: 47%;
  }
  .content .logo
  {
      display: flex;
      align-items: center;
  }
  .content .logo a img{
    height: 55px;
      width: 175px;
  }
  .header-fix .content .logo a{
    color: var(--main-color) !important;
  }
  .logo-img
  {
      height: 108px;
      float: right;
  }
  .content .links li{
    list-style: none;
    line-height: 70px;
  }
  li#lang{
    border: 1px solid var(--main-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }
  li#lang a{
    opacity: 1;
  }
  .content .links li i{
    margin: 0 10px 0 0;
  }
  .content .links li a,
  .content .links li label{
    position: relative;
    color: #1D1B19 !important;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 2;
    opacity: .5;
  }
  .header-fix .content .links li a{
    color: var(--main-color) !important;
  }
  .content .links li a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    right: 50%;
    bottom: 7px;
    position: absolute;
    background: var(--main-color);
    transition: width 0.3s ease 0s, right 0.3s ease 0s;
    width: 0;
  }
  .header-fix .content .links li a:after{
    background-color: var(--main-color);
  }
  .content .links li a:hover{
    opacity: 1;
  }
  .content .links li a:hover:after{
    width: 70%;
    right: 15%;
  }
  li#lang a:hover:after{
    width: 0 !important;
  }
  .content .links li label{
    display: none;
  }

  .wrapper .search-icon,
  .wrapper .menu-icon{
    color: #11325b;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
    margin: 0;
  }
  .header-fix .search-icon,
  .header-fix .menu-icon{
    color: var(--main-color);
  }
  .wrapper .menu-icon{
    display: none;
  }
  .wrapper input[type="checkbox"]{
    display: none;
  }
  .content .links ul{
    position: absolute;
    background: #ffffffe0;
    padding: 0;
    top: 80px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
  .header-fix .content .links ul{
    background-color: #fff;
  }

  .content .links li:hover > ul{

    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
  }
  .content .links ul li a{
    display: block;
    text-align: center;
    width: 100%;
    line-height: 30px;
    border-radius: 0px!important;
  }
  .content .links ul ul{
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
  }
  .content .links ul li{
    position: relative;
  }
  .content .links ul li:hover ul{
    top: 0;
  }
  .content .links ul label{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .login-content .logo-img{
      display: none;
  }

  @media screen and (max-width: 1200px){
    .wrapper nav{
      width: 100%;
      max-width: 100%;
      padding:  0;
      height: 75px;
    }
    nav .content .links{
      margin-right: 0;
    }
    .content .links li a{
      padding: 26px 13px;
    }
    .wrapper .search-box{
      max-width: calc(100% - 100px);
    }
    .wrapper .search-box input{
      padding: 0 100px 0 15px;
    }
  }

  @media screen and (max-width: 1020px){
    .wrapper{
      background: #fff ;
    }
    .wrapper nav{
        background-color: transparent;
    }
    .content .logo{
        display: none;
    }
    .wrapper .menu-icon{
        display: flex;
        flex-direction: row-reverse;
        padding: 0 10px;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        }
        .wrapper .menu-icon img{
            width: 100px;
            position: relative;
            top: 10px;
          }

        .wrapper .menu-icon .burger{
            width: 25px;
        }
        nav .content .links::before{
            display: none;
        }
    .wrapper #show-menu:checked ~ .menu-icon i::before{
      content: "\f00d";
    }
    nav .content .links{
      display: block;
      position: fixed;
      background: #ffffffe0;
      height: 100%;
      width: 100%;
      top: 70px;
      right: -100%;
      margin-right: 0;
      padding: 0;
      max-width: 350px;
      overflow-y: auto;
      transition: all 0.3s ease;
    }
    nav #show-menu:checked ~ .content .links{
      background: url(/img/background.png);
      background-color: #fff;
      right: 0%;
      z-index: 3;
    }
    .content .links li{
      margin: 15px 20px;
    }
    li#lang{
        width: auto;
    }
    .content .links li a,
    .content .links li label{
      text-align: right;
      line-height: 40px;
      font-size: 16px;
      display: block;
      padding: 8px 18px;
      cursor: pointer;
    }
    .content .links li label{
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .content .links li a.desktop-link{
      display: none;
    }

    .content .links ul,
    .content .links ul ul{
      position: static;
      opacity: 1;
      visibility: visible;
      background: none;
      max-height: 0px;
      overflow: hidden;
    }
    .content .links #show-1:checked ~ ul,
    .content .links #show-2:checked ~ ul,
    .content .links #show-3:checked ~ ul,
    .content .links #show-4:checked ~ ul,
    .content .links #show-5:checked ~ ul{
      max-height: 100vh;
    }
    .content .links ul li{
      margin: 7px 20px;
    }
    .content .links ul li a{
      font-size: 18px;
      line-height: 30px;
      border-radius: var(--border-radius)!important;
    }
    .wrapper nav .login-desktop{
        display: none;
    }
    .login-content .logo-img{
        display: block;
    }
  }
  .content .login{
    background: transparent;
    border: 1px solid #11325b;
    color: #11325b;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px;
    text-decoration: none;
  }


  @media screen and (max-width: 400px){
    .wrapper nav{
      padding: 0 10px;
    }
    .content .logo a{
      font-size: 20px;
    }
    .wrapper .search-box{
      max-width: calc(100% - 70px);
    }
    .wrapper .search-box .go-icon{
      width: 30px;
      right: 0;
    }
    .wrapper .search-box input{
      padding-right: 30px;
    }
  }
/* General */
:root{
    --main-color:#afaaa7;
    --second-color:#d44f0c;
    --dark-color:#e74d00;
    --black:#4A4A4A;
    --white:#fff;
    --border:.1rem solid rgba(0,0,0,.1);
    --border-radius : 8px;
    --border-hover:.1rem solid var(--black);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition:all .2s linear;
    transition:width none;
    scroll-behavior: smooth;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width:1rem;
}

html::-webkit-scrollbar-track{
    background:transparent;
}

html::-webkit-scrollbar-thumb{
    background:var(--main-color);
}
body{
    overflow-x: hidden;
    background-position: center;
    background-size: contain;

}
a{
    text-decoration: none;
}

@media (max-width:991px){

    html{
        font-size: 55%;
    }

    section{
        padding:3rem 2rem;
    }

}
@media (max-width:768px){

    html{
        scroll-padding-top: 0;
    }


}
@media (max-width:450px){

    html{
        font-size: 50%;
    }

}
.swal2-html-container{
    font-size: 2rem !important;
}
/* loader */

/* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--main-color);
  }
  .success-partners .partners-logos{
    height: fit-content !important;

}

  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--main-color);
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }

  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } */

  #pop_up{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color:#ffffffe8;
    position: fixed;
    top: -150%;
    left: 0;
    right: 0;
    z-index: 999999;
    transition: .5s;
  }
  #pop_up form{
    position: relative;
    height: 600px;
    background-color: var(--second-color);
    color: var(--white);
    padding: 20px;
    width: 450px;
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 58%) 0 5px 20px;
  }
  #pop_up form h4{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5px;
  }
#close{
    position: absolute;
    top: 5px;
    right: 40PX;
    font-weight: 800;
    color: var(--second-color);
    font-size: 4.8rem;
    background-color: transparent;
    cursor: pointer;
  }
  #pop_up form label{
    display: block;
    font-size: 1.8rem;
    color: var(--white);
  }
  #pop_up form input,
  select#size{
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 5px;
  }
  #pop_up form input[type='color']{
    width: 40px;
    height: 40px;
    padding: 4px;
  }
  .popup-active{
    top: 0 !important;
    transition: .5s;
  }
  input[type='submit']{
    margin-top: 40px;
    color: var(--second-color);
    font-weight: 800;
    font-size: 1.6rem;
    cursor: pointer;
  }
  /*Scroll Top*/
#whatsup_icon{
    position: fixed;
    bottom: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3ddd5e;
    color: #fff;
    cursor: pointer;
    z-index: 4;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    transition: 1s;
}
#whatsup_icon:hover{
    background-color: #24ae3f;
}

@media (max-width:500px) {
    #pop_up form{
        height: 550px;
        width: 330px;
    }

}
/* Mail Style */


*{
    direction: rtl;
    font-family: 'Arabic-font';
   }
.hero{
margin-top: 85px;
}
.hero .image-content img{
    width: 100%;
    height: 500px;
 }
 .hero .text-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
 }
 .hero .text-content h1{
    width: 190%;
    line-height: 1.3;
    z-index: 2;
    font-size: 5rem;
    font-weight: 800;
 }
 .hero .text-content h1 span.with-bg{
    background-color: rgba(221, 221, 221, 0.556);
    border-radius: 5px;
 }
.icons-section{
    padding: 75px 0;
}
.icons-section .boxes{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.icons-section .boxes .box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.icons-section .boxes .box img{
    width: 50px;
    margin-left: 20px;
}
.icons-section .box h5{
    font-size: 1.4rem;
    font-weight: 700;
}
.icons-section .boxes .box span{
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 700;
}
/* Vision */
.vision{
    padding: 50px 0;
    position: relative;
}
.vision .text-content h2{
    margin-bottom: 25px;
    font-size: 3.2rem;
}
.vision .text-content p{
    text-align: justify;
    opacity: .5;
    width: 65%;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 20px;
}
.vision .slider i.fa.fa-chevron-left{
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
    color: var(--white);
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: -18px;
    top: 40%;
}
.vision .owl-carousel .owl-item img{
  height: 230px;
}
/* Message */
.message{
    padding: 50px 0;
    position: relative;
}
.message h2{
    text-align: center;
    font-size: 3.2rem;
}
.message p{
    font-size: 1.5rem;
    width: 42%;
    line-height: 1.5;
    margin: 0 auto 25px;
    text-align: center;
    font-weight: 800;
    opacity: .5;
}
.message .message-carousel{
    width: 80%;
    margin: 0 auto;
}
/* Message 2 */
.message-2{
    padding: 50px 0;
    position: relative;
}
.message-2 .text-content h2{
    margin-bottom: 25px;
    font-size: 3.2rem;
    font-weight: 900;
}
.message-2 .text-content p{
    text-align: justify;
    opacity: .5;
    width: 65%;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.5;
}
.message-2 .slider i.fa.fa-chevron-right{
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
    color: var(--white);
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: -18px;
    top: 40%;
}
.message-2 .owl-carousel .owl-item img{
  width: 100%;
  height: 320px;
  border-radius: 8px;
  margin: 0 auto;
}
/* Goals */
.goals{
    padding: 50px 0;
    position: relative;
}
.goals .image-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.goals .image-content img{
  height: 340px;
    width: 100%;
    border-radius: 8px;
}
.goals .mobile{
    display: none;
}

.goals .text-content h2{
    font-size: 3.2rem;
}

.goals .text-content ul{
    list-style: none;
}
.goals .text-content li{
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
}
.goals .text-content li img{
    width: 13px;
    margin-top: 10px;
    margin-left: 3px;
}
.goals .text-content li p{
    text-align: justify;
    font-size: 1.5rem;
    font-weight: 800;
    opacity: .5;
}
/* Success Partners */

.success-partners{
    position: relative;

}
.success-partners h2{
    text-align: center;
    font-weight: 300;
    font-size: 3.2rem;
}
.success-partners .images{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.success-partners .images img{
    width: 80%;
    margin: 0 auto;
}
.success-partners .images .big-image{
    width: 50%;
}
.success-partners .owl-stage{
    display: flex;
    align-items: center;
}
.success-partners .single-image{
    display: flex;
    justify-content: center;
    margin-top: 75px;
    margin-bottom: 20px;
}
.success-partners .single-image img{
    width: 40%;
}
/* Services */
.services{
    position: relative;
    padding: 50px 0;
}
.services h2{
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 25px;
}
.services .services-images{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.services .services-images img{
    width: 24%;
    border-radius: 8px;
}
.angry-grid {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 0.5fr 1fr;
    grid-gap: 1em;
    height: 360px;
 }
 .angry-grid div:hover{
    transition: .5s;
    background-size : 104% 104% !important;
 }
 #item-0 {
    background: url(/img/services-1.png);
    background-size: 100% 100%;
    grid-row-start: 1;
    grid-column-start: 5;
    grid-row-end: 4;
    grid-column-end: 8;
 }
 #item-0 {
    background: url(/img/services-1.png);
    background-size: 100% 100%;
    grid-row-start: 1;
    grid-column-start: 5;
    grid-row-end: 4;
    grid-column-end: 8;
 }
 #item-1 {
    background: url(/img/services-2.png);
    background-size: 100% 100%;
    grid-row-start: 1;
    grid-column-start: 4;
    grid-row-end: 3;
    grid-column-end: 5;
 }
 #item-2 {
    background: url(/img/services-3.png);
    background-size: 100% 100%;
    grid-row-start: 3;
    grid-column-start: 4;
    grid-row-end: 4;
    grid-column-end: 5;
 }
 #item-3 {
    background: url(/img/services-4.png);
    background-size: 100% 100%;
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 4;
 }
 #item-4 {
    background: url(/img/services-5.png);
    background-size: 100% 100%;
    grid-row-start: 3;
    grid-column-start: 2;
    grid-row-end: 4;
    grid-column-end: 4;
 }
 #item-5 {
    background: url(/img/services-6.png);
    background-size: 100% 100%;
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-column-end: 2;
 }
 #item-6 {
    background: url(/img/services-7.png);
    background-size: 100% 100%;
    grid-row-start: 2;
    grid-column-start: 1;
    grid-row-end: 4;
    grid-column-end: 2;
 }
.services .services-p {
    width: 90%;
    opacity: .5;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.5;
    margin: 20px 0;
 }
 .services .content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
 }
.services ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 90%;
    margin: 0 auto 0 0;
}
.services ul li{
    margin: 0 0 10px 0;
    width: 50%;
    display: flex;
    align-items: center;
}
.services ul li img{
    transform: scale(-1);
    width: 15px;
    margin-left: 4px;
}
.services ul li p{
    font-size: 1.5rem;
    font-weight: 800;
    opacity: .5;
}
/* Contact */
.contact-form{
    padding: 75px 0;
}
.contact-form h2{
    font-size: 3.2rem;
}

.contact-form p{
    font-size: 1.5rem;
    font-weight: 800;
    opacity: .5;
}
.contact-form .map{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form .map iframe{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.contact-form form{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.contact-form form input{
    border: 1px solid var(--main-color);
    padding: 10px;
    border-radius: 5px;
    width: 49%;
    margin: 15px 0;
}
.contact-form form input[type='submit']{
    width: auto;
    cursor: pointer;
    background: var(--main-color);
    color: var(--white);
    border-radius: 4px;
    padding: 8px 40px;
    font-size: 1.4rem;
    font-weight: 500;
}
.contact-form form textarea{
    margin: 15px 0;
    border: 1px solid var(--main-color);
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    height: 100px;
}
.team{
    padding: 75px 0;
}
.team h2{
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 25px;
}
.team .owl-carousel .owl-item img{
    border-radius: 8px;
    width: 180px;
    height: 180px;
}
/* Responsive */
@media (min-width:1200px){
    .message-2 .text-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (max-width:1200px){

}
/* ************* */
@media (max-width:991px){

}
/* ************* */
@media (max-width:768px){
  .hero .image-content img{
    height: 220px;
  }
    .hero .text-content h1{
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
        font-size: 2.2rem;
        z-index: 1;
    }
    .angry-grid {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 0.5fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        height: 600px;
    }
    .icons-section,
    .vision,
    .message,
    .goals,
    .services,
    .contact-form{
        padding: 30px 0;
    }
    .icons-section .boxes .box img{
        width: 35px;
    }
    .icons-section .boxes .box{
        width: 50%;
        margin: 15px 0;
    }
    .vision .text-content h2,
    .goals .text-content h2{
        text-align: center;
    }
    .vision .text-content h2{
        margin-bottom: 25px;
    }
    .vision .text-content p,
    .message p{
        width: 100%;
        text-align: center;
    }
    .vision .text-content p:not(:last-child){
        margin: 0;
    }
    .vision .slider i.fa.fa-chevron-left{
        width: 30px;
        height: 30px;
        left: -12px;
    }
    .vision-carousel{
        margin-top: 25px;
    }
    .vision .owl-carousel .owl-item img{
      height: auto;
    }
    .goals .image-content{
        display: none;
    }

    .goals .mobile{
        border-radius: 8px;
        margin: 25px 0;
        display: block;
        width: 100%;
        height: 240px;
    }
    .goals .text-content li img{
        width: 9px;
        margin-top: 7px;
    }
    .message .message-carousel{
        width: 100%;
    }
    .contact-form .row{
        display: flex;
        flex-direction: column-reverse;
    }

    #item-0 {
        grid-row-start: 1;
        grid-column-start: 1;
        grid-row-end: 4;
        grid-column-end: 6;
     }
     #item-1 {
        grid-row-start: 4;
        grid-column-start: 4;
        grid-row-end: 7;
        grid-column-end: 6;
     }
     #item-2 {
        grid-row-start: 4;
        grid-column-start: 1;
        grid-row-end: 7;
        grid-column-end: 4;
     }
     #item-3 {
        grid-row-start: 7;
        grid-column-start: 3;
        grid-row-end: 9;
        grid-column-end: 6;

     }
     #item-4 {
        grid-row-start: 7;
        grid-column-start: 1;
        grid-row-end: 9;
        grid-column-end: 3;
     }
     #item-5 {
        grid-row-start: 9;
        grid-column-start: 4;
        grid-row-end: 11;
        grid-column-end: 6;
     }
     #item-6 {
        grid-row-start: 9;
        grid-column-start: 1;
        grid-row-end: 11;
        grid-column-end: 4;
     }
     .services ul{
        width: 100%;
     }
     .services ul li{
        width: 100%;
     }
     .success-partners .images{
        flex-wrap: wrap;
    }
    .success-partners .images img{
        height: 175px;
        width: 80%;
        margin: 8% auto;
    }
    .success-partners .single-image img{
        width: 100%;
    }
    .services .services-images img{
        height: 125px;
        width: 49%;
        height: 120px;
        margin-top: 2%;
        border-radius: 8px;
    }
    .message-2 .owl-carousel .owl-item img{
        margin-top: 25px;
        width: 100%;
        height: 320px;
    }
    .message-2 .text-content h2{
        text-align: center;
    }
    .message-2 .text-content p{
        width: 100%;
        text-align: center;
    }
    .services .content{
        align-items: flex-start;
    }
    .team .owl-carousel .owl-item img{
      width: 115px;
      height: 115px;
    }
    .contact-form .map iframe{
      height: 300px;
    }
}
/* ************* */
@media (max-width:500px){

}
/* Scroll Top */
#whatsup_icon{
    left: 10px;
}

/* Footer */
footer {
    padding: 20px 0 50px;
 }
 @media (min-width:768px){

   footer .col-md-4{
    display: flex;
    align-items: flex-start;
 }
 footer .logo{
    justify-content: center;
    align-items: center;
}
 }

    footer > .row > .col-md-4:nth-of-type(2) {
      position: relative; }
      footer > .row > .col-md-4:nth-of-type(2)::after {
        content: "";
        display: block;
        height: 100%;
        width: 1px;
        left: 60px;
        background-color: var(--main-color);
        position: absolute;
     }
    footer img {
      width: 170px; }
    footer h4 {
      font-size: 2rem;
      font-weight: 700;
      color: black; }
      footer .social-media{
        display: flex;
        align-items: center;
        margin-top: 15px;
      }
      footer .social-media i{
        color: black;
        font-size: 20px;
        margin-left: 25px;
      }
      footer .social-media a:hover i{
        color: var(--main-color);
        transform: scale(1.1);
      }
    footer ul {
      padding: 0;
      list-style: none;
    }
      footer ul li {
        font-size: 1.5rem;
        font-weight: 500;
        color: black ;
        display: flex;
        align-items: baseline;
    }
    footer ul li p{
        opacity: .5;
    }
        footer ul li img{
            margin-left: 5px;
            width: 12px;
        }
        @media (max-width:768px){
            footer > .row > .col-md-4:nth-of-type(2)::after{
                content: "";
                display: block;
                height: 2px;
                width: 35%;
                position: absolute;
                inset-inline-start: 15px;
                inset-block-start: 185px;
            }
            footer img{
                width: 200px;
            }
            footer h4{
                margin-top: 30px;
            }
        }
