/* Start Variable */
:root {
  --main-color: #ffffff;
  --second-color: #171f29;
  --third-color: #2d516b;
  --forth-color: #3e4b59;
  --fifth-color: #7b838d;
}
/* End Variable *//* Start Global Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--forth-color);
}
body.ar {
  font-family: 'Tajawal-Bold', sans-serif;
  font-family: 'Tajawal-Heavy', sans-serif;
  font-family: 'Tajawal-Light', sans-serif;
  font-family: 'Tajawal-Regular', sans-serif;
  font-family: 'Tajawal-Medium', sans-serif;
}
body.en {
  font-family: 'Gilroy-Bold', sans-serif;
  font-family: 'Gilroy-Heavy', sans-serif;
  font-family: 'Gilroy-Light', sans-serif;
  font-family: 'Gilroy-Medium', sans-serif;
  font-family: 'Gilroy-Regular', sans-serif;
}
ul {
    list-style: none;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

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

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

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  /* background: rgb(40, 40, 40); */
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--fifth-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* End Global Rules */
/* Start Header Section */

header {
  /* position: sticky; */
  position: fixed;
  top: 0;
  z-index: 1;
  /* background-color: transparent; */
  left: 50%;
  transform: translateX(-50%);
}
header .container {
  position: relative;
}
header .element {
  width: 50px;
  height: 20px;
  border-radius: 7px;
}
@media (max-width: 650px) {
  header .element {
    right: 80px;
    top: 18px;
  }
}
header .element .lan {
  background-color: #777;
  width: 25px;
  height: 25px;
  display: inline;
  font-size: 13px;
  text-align: center;
  text-transform: capitalize;
  padding-top: 3px;
}
header .element .lan.active {
  background-color: #555;
}
header nav {
  display: flex;
  justify-content: space-around;
  /* background-color: var(--second-color); */
/* background-color: whitesmoke; */
background-color: #f5f5f585;
  height: 65px;
  border-radius: 5px;
}
@media (max-width: 650px) {
  header nav {
    justify-content: space-between;  }
}
header nav .logo {
  /* width: 50px; */
  align-items: center;
}
@media (max-width: 770px) {
  header nav .logo {
    left: 25px;
    position: relative;
  }
}

header nav .logo p {
  color: white;
  font-weight: bold;
  letter-spacing: 1.1px;
  text-align: center;
}
header nav .box {
/* margin-top: 20px; */
/* display: block; */
display: flex;
  align-items: center;
}
@media (max-width: 770px) {
    header .container {
        width: 375;
    }
  header nav #ULen {
      display: none;
  }
  header nav i.fa-solid.fa-bars {
      display: block;
      /* margin: 10px; */
      padding: 22px 10px;
      font-size: 20px;
      /* padding-bottom: 20px; */
  }
  header nav .logo img {
    width: 60px;
    /* height: 45px; */
    /* margin-top: 7px; */
    margin-top: 10px;
  }
  header nav #ULsmen li {
    text-align: center;
  }
  header nav #ULsmen li {
    font-size: 15px;
    text-decoration: none;
    /* text-align: center; */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
  }
  header nav #ULsmen a {
    color: #000000c2;
    /* color: black; */
    /* font-weight: 600; */
  }
  header .element input,
  header .element select {
    font-size: 12px;
  }
  header nav #ULsmen.en {
    visibility: hidden;
    opacity: 0;
    list-style: none;
    width: 100%;
    height: 750px;
    position: absolute;
    left: -200%; /* Start position off-screen */
    top: 64px;
    padding: 12px 0px;
    z-index: 10;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: left 0.5s ease, opacity 0.5s ease;
    align-content: flex-start;
    background-color: var(--fifth-color);
}
  header nav #ULsmen.ar {
    visibility: hidden;
    opacity: 0;
    list-style: none;
    width: 100%;
    height: 750px;
    position: absolute;
    right: -200%; /* Start position off-screen */
    top: 64px;
    padding: 12px 0px;
    z-index: 10;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: right 0.5s ease, opacity 0.5s ease;
    align-content: flex-start;
    background-color: var(--fifth-color);
}

  header nav #ULsmen.en.appear {
    display: flex;
    visibility: visible;
    opacity: 1;
    left: -35%; /* End position on-screen */
  }
  header nav #ULsmen.ar.appear {
    display: flex;
    visibility: visible;
    opacity: 1;
    right: -35%; /* End position on-screen */
  }
}
@media (min-width: 770px) {
  header nav #ULen {
      display: block;
  }
  header nav i.fa-solid.fa-bars {
      display: none;
  }
  header nav .logo img {
    width: 70px;
    height: 50px;
    margin-top: 7px;
  }
  header nav #ULsmen {
    display: none;
  }
}
/*
header nav #ULsmen {
display: none;
left: -65%;
}

header nav #ULsmen.appear {
    list-style: none;
    display: flex;
    width: 65%;
    height: 750px;
    position: absolute;
    left: 0;
    top: 64px;
    background-color: darkgray;
    padding: 12px 0px;
    z-index: 10;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: all 0.5s ease;
}
@keyframes all {
    from {left: -65%;}
    to {left: 0;}
  } */
  /* header nav #ULsmen {
    display: none;
    list-style: none;
    width: 100%;
    height: 750px;
    position: absolute;
    left: -200%;
    top: 64px;
    padding: 12px 0px;
    z-index: 10;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: left 0.5s ease;
    align-content: flex-start;
    background-color: var(--fifth-color);

}

header nav #ULsmen.appear {
    display: flex;
    left: -35%;
}

@keyframes slideIn {
    from {
        left: -200%;
    }
    to {
        left: -35%;
    }
} */


/* @keyframes slideInEn {
    from {
        left: -200%;
        opacity: 0;
    }
    to {
        left: -35%;
        opacity: 1;
    }
} */

header .headbox {
    display: flex;
    align-items: center;
}
header nav  ul li {
  display: inline;
  padding: 8px 16px;
  margin-right: 15px;
  font-size: 17px;
  text-decoration: none;
}
header nav ul a {
    margin: 8px 0px;
  text-decoration: none;
  /* color: white; */
  color: black;
  width: 100%;
  text-align: center;
  height: 10%;
  /* background-color: gainsboro; */
  /* background-color: #dcdcdc2b; */
  /* background-color: none; */
  position: relative;
}
@media (min-width: 650px) {
    header nav ul a {
  background-color: none;
}
  }
@media (max-width: 650px) {
    header nav ul a {
  background-color: #dcdcdc2b;
}
  }

header nav #ULsmen a:hover {
  /* color: rgb(7, 188, 211); */
  color: rgb(255, 255, 255);
}
header nav #ULen a:hover {
  /* color: rgb(7, 188, 211); */
  /* color: darkgray; */
  color: white;
}
header .box-sm {
  display: none;
}
@media (max-width: 650px) {
  header nav .box-sm {
      display: block;
  }
}
header .box-sm i {
font-size: 30px;
left: -100%;
position: relative;
margin-top: 12px;
color: white;
}
header .box-sm i.rotate {
  transform: rotate(-90deg);
}
header .box-sm i.rotateb {
  transform: rotate(-90deg);
  transition-duration: 1.2s;
}
header .box-sm ul {
  position: absolute;
  display: none;
  border-radius: 10px;
  right: 42px;
  z-index: 1;
}
header .box-sm ul.act.appear {
  display: block;
}
header .box-sm #ULsmar {
  text-align: right;
}
header .box-sm ul li {
color: black;
border-bottom: 1px solid #777;
width: 125px;
height: 35px;
background-color: darkgray;
padding: 6px 7px 4px;
}
header .box-sm ul li:hover {
  padding-left: 12px;
  border-left: solid black 3px;
}
header .box-sm ul a {
  text-decoration: none;
}
/* End Header Section */
/* ///////////////////////////////////////////////////// */
/* Start Main Section */
.main {
  position: relative;
  /* height: 675px; */
  height: 740px;
  /*height: 550px;*/
  background-color: var(--forth-color);
  overflow: hidden;
}
.main .container.m {
/* padding-top: 60px; */
/*background-image: url(../photos/special/iStock-458111065.jpg);*/
background-repeat: no-repeat;
background-size: cover;
height: 600px;
/* background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 5%)),
                  url(../photos/special/iStock-458111065.jpg); */
}
@media (max-width: 768px) {
    .main {

background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 5%)),
url(../photos/special/iStock-458111065_small.jpg);
background-size: cover;
background-repeat: no-repeat;
    }
  .container.m {
      /* width: calc(750px + 250px); */
      /* background-position-x: -170px;
      background-position-y: -65px; */
      /* background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 5%)),
                  url(../photos/special/iStock-458111065_small.jpg); */
  }
}
@media (min-width: 768px) {
    .main {
        background-position-x: center;
        background-position-y: center;
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 5%)), url(../photos/special/iStock-458111065.jpg);
        background-size: cover;
        background-repeat: no-repeat;
      }
  .container.m {
      /* width: calc(750px + 250px); */
      /* background-position-x: -18px;
      background-position-y: -60px;
      background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 5%)),
                  url(../photos/special/iStock-458111065.jpg); */
  }
}

@media (min-width: 992px) {
  /* .container.m {
      width: calc(970px + 200px);
      background-position-x: 0;
      background-position-y: -65px;
  } */
}

@media (min-width: 1200px) {
  /* .container.m {
      width: calc(1170px + 350px);
      background-position-y: -112px;
  } */
}


/* .main img {

}
@media (min-width: 768px) {
  .main img {
      width: 720px;
  }
}

@media (min-width: 992px) {
  .main img {
      width: 940px;
  }
}

@media (min-width: 1200px) {
  .main img {
      width: 1140px;
  }
} */
.main .text {
text-align: center;
position: absolute;
/* display: flex; */
/* top: 150px; */
left: 50%;
/* transform: translateX(-50%); */
width: fit-content;
top:47%;
transform: translate(-50%,-50%);
}
/* @media (max-width: 991px) {
  .main .text {
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .main .text {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
} */
.main .text h3 {
  display: none;
  font-weight: bold;
  font-size: 24px;
  color: var(--main-color);
  /* text-shadow: 2px 5px black; */
  text-shadow: 3px 5px 2px black;
}
.main .text p {
  display: none;
  font-size: 20px;
color: black;
/* background-color: rgb(240 248 255 / 50%); */
background-color: rgb(240 248 255 / 83%);
width: 800px;
  /* height: 200px; */
  margin: 20px auto 0;
  /* padding: 10px; */
  padding: 10px 15px 35px;
  border-radius: 3px;
  line-height: 1.4;

}
.main .text h3.appear,
.main .text p.appear {
  display: block;
}
@media (max-width: 500px) {
  .main .text p {
      width: 350px;
      /* font-size: 18px; */
      font-size: 16px;
      padding: 5px;
  }
  .main .text h3 {
    font-size: 22px;
  }

}
@media (min-width: 500px) {
  .main .text p {
      width: 500px;
  }
  .main .text h3 {
    font-size: 23px;
  }

}
@media (min-width: 768px) {
  .main .text p {
      width: 650px;
  }
  .main .text h3 {
    font-size: 25px;
  }
}

@media (min-width: 992px) {
  .main .text p {
      width: 750px;
  }
  .main .text h3 {
    font-size: 27px;
  }
}

@media (min-width: 1200px) {
  .main .text p {
      width: 900px;
  }
}
/* End Main Section */
/* ///////////////////////////////////////////////////// */
/* Start About Section */
.about {
  position: relative;
  height: 740px;
  background-color: var(--third-color);
}
@media (max-width: 750px) {
  .about {
    /* height: 950px; */
    height: 700px;
    position: relative;
    background-image: url(../photos/about_small.jpg);
  }
}
@media (min-width: 750px) {
    .about .container.en {
        background-image: url(../photos/about2_ar.jpg);
        background-position-x: right;
    }
    .about .container.ar {
        direction: rtl;
        background-image: url(../photos/about2_en.jpg);
        background-position-x: left;
    }
}
.about .container {
    height: 440px;
    /* padding: 20px; */
    padding: 45px 20px;
  display: flex;
  justify-content: left;
  top: 165px;
  /* padding: 20px 12px; */
  position: relative;
  background-repeat: no-repeat;
  /* background-color: rgb(108 108 108); */
  /* background-image: url(../photos/about_ar.jpg); */
}
@media (max-width: 750px) {
  .about .container {
        position: absolute;
        /* top: 50%!important; */
        top: 42%!important;
        transform: translateY(-50%);
      flex-wrap: wrap;
      top: 60px;
  }
}
.about .box1 {
  display: none;
}
.about .aboutbox1ar {
  text-align: right;
}
.about .box1.appear {
  display: block;
  padding: 0 14px;
}


.pmore1 {
  line-height: 1!important;
font-size: 16px;
}
.about .box1 p.pmore1.disactive,
.about .box1 p.pmore2.disactive {
  display: none;
}
.about .box1 p.pmore1.active
.about .box1 p.pmore2.active {
  display: block;
}
.about .box1 .more1.active {
  display: none;
}

@media (max-width: 750px) {

    .about .box1 .more1 {
    width: 60px;
    height: 30px;
    color: gray;
    background-color: burlywood;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 20px;
    text-decoration: none;
    display: inline;
    cursor: pointer;
    font-size: 12px;
    }
}
@media (min-width: 750px) {
    .about .box1 .more1 {
        width: 60px;
        height: 30px;
        color: gray;
        background-color: burlywood;
        text-transform: uppercase;
        text-align: center;
        padding: 8px 25px;
        text-decoration: none;
        display: inline;
        cursor: pointer;
      }
}

.about .box2 img {
    display: none;
  width: 320px;
  height: 300px;
  margin-top: 30px;
  border-radius: 4px;
}
@media (max-width: 750px) {
  .about .box2 img {
    width: 250px;
    height: 230px;
  }
}
@media (max-width: 500px) {
  .about .box1 h4.ar {
    direction: rtl;
    }
  .about .box1 h1.ar {
    direction: rtl;
    }
  .about .box1 p {
    direction: rtl;
    /* font-size: 12px; */
    font-size: 14px;
    /* margin-bottom: 12px; */
    margin-bottom: 4px;
    }
  .about .box1 p.en {
    direction: ltr;
    /* font-size: 11px; */
    font-size: 12px;
    /* margin-bottom: 10px; */
    margin-bottom: 4px;
    }
    .about .box1 ul {
        direction: ltr;
        /* font-size: 11px; */
        font-size: 12px;
        margin-bottom: 5px!important;
      }
    .about .box1 ul.ar {
        direction: rtl;
        /* font-size: 12px; */
        font-size: 14px;
        margin-bottom: 10px!important;
      }
    .about .box1 ul.ar li{
        direction: rtl;
        padding: 3px 0px;
      }
}
@media (min-width: 500px) {
    .about .box1 p{
        line-height: 1.3;
        /* margin-bottom: 30px; */
        /* margin-bottom: 20px; */
        font-size: 16px;
      }
    .about .box1 p.ar{
        line-height: 1.3;
        /* margin-bottom: 30px; */
        /* margin-bottom: 20px; */
        font-size: 18px;
      }
    .about .box1 ul {
        font-size: 15px;
        margin-bottom: 10px!important;
      }
    .about .box1 ul.ar {
        font-size: 17px;
      }
}
@media (min-width: 750px) {
    .about .box1 h1.en{
        font-size: 40px;
        /* margin-top: 20px; */
        margin-top: 5px;
        margin-bottom: 15px;
        /* color: white; */
      }
    .about .box1 h1{
        font-size: 40px;
        margin-top: 20px;
        /* margin-top: 5px; */
        margin-bottom: 15px;
        /* color: white; */
      }
      .about .box1 h4{
        /* font-size: 17px; */
        color: black;
        font-size: 19px;
      }
      .about .box1 h4.ar{
        /* font-size: 17px; */
        color: black;
        font-size: 20px;
      }
}
@media (max-width: 750px) {
  .about .box2 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .about .box1 h1{
    font-size: 33px;
    /* color: white; */
  }
  .about .box1 h1.en {
    font-size: 33px;
    /* color: white; */
    /* margin: 20 0 10!important; */
    margin: 8 0 10!important;
  }
  .about .box1 h4{
    /* font-size: 17px; */
    color: black;
    font-size: 17px;
  }
  .about .box1 h4.en {
    /* font-size: 17px; */
    color: black;
    font-size: 14px;
  }
}
/* End About Section */
/* ///////////////////////////////////////////////////// */
/* Start Form Section */


/* End Form Section */
/* ///////////////////////////////////////////////////// */
/* Start Services Section */
.service {
  position: relative;
  height: 740px;
  background-color: var(--third-color);
}
@media (max-width: 750px) {
  .service {
    /* height: 900px; */
    height: 700px;
  }
}
.service .container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.service h1 {
  display: none;
  text-align: center;
  color: white;
  padding: 0.67em 0;
  margin: 0;
}
.service h1.appear {
  display: block;
}
.service h4 {
  display: none;
  text-align: center;
  margin-bottom: 80px;
  color: whitesmoke;
}
.service h4.appear {
  display: block;
}
@media (max-width: 750px) {
  .service h4 {
    margin-bottom: 25px;
    font-size: 16px;
  }
}
@media (min-width: 750px) {
  .service h4 {
    margin-bottom: 15px;
    font-size: 19px;
  }
}
@media (min-width: 991px) {
  .service h4 {
    margin-bottom: 80px;
  }
}
.service .box-container {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr )) ;
  grid-gap: 20px;
  position: relative;
}
.service .box-container.serviceboxcontaineren.appear,
.service .box-container.serviceboxcontainerar.appear {
  display: grid;
}
@media (min-width: 1200px) {
  .service .box-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr )) ;
  }
}
.service .box-container .box{
  width: 270px;
  height: 280px;
  /* background-color: rgb(108 108 108); */
  background-color: whitesmoke;
  padding: 15px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  border-radius: 2px;
}



@media (min-width: 750px) {
    .service .box-container .box i{
        font-size: 50px;
        color: var(--forth-color);
        margin: 50px 50px 30px;
      }
      .service .box-container .box h5 {
        margin: 10px;
        font-size: 20px;
      }
      .service .box-container .box p {
        /* font-size: 16px; */
        font-size: 15px;
        color: rgb(108 108 108);
      }
    .service .box-container .box i.en{
        font-size: 50px;
        color: var(--forth-color);
        margin: 33px 50px 23px;
      }
    .service .box-container .box img{
        width:110px;
      }
      .service .box-container .box h5.en {
        margin: 4px;
        font-size: 18px;
      }
      .service .box-container .box p.en {
        /* font-size: 16px; */
        font-size: 13px;
        color: rgb(108 108 108);
      }
}
@media (max-width: 750px) {
    .service .box-container .box {
        position: relative;
        /* height: 140px;
        width: 140px; */
        /* height: 160px; */
        height: 170px;
        width: 245px;
        padding: 2px;
      }
  .service .box-container {
    display: none;
    /* grid-template-columns: repeat(auto-fill, minmax(140px, 1fr )) ; */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr )) ;
    grid-gap: 15px;
    position: relative;
  }
  .service .box-container .box i {
    /* margin: 25px 35px 15px; */
    font-size: 30px;
    color: var(--forth-color);
    margin: 0;
    padding: 15px 15px 10px;
  }
  .service .box-container .box i.en{
    /* font-size: 19px; */
    font-size: 30px;
    color: var(--forth-color);
    margin: 0;
    padding: 15px 15px 5px;
  }
  .service .box-container .box img {
    width: 75px;
  }
  .service .box-container .box h5 {
    margin: 5px 0 8px;
    font-size: 15px;
  }
  .service .box-container .box p {
    /* font-size: 16px; */
    font-size: 12px;
    color: rgb(108 108 108);
  }
  .service .box-container .box h5.en {
    margin: 5px 0 8px;
    font-size: 13px;
    font-weight: bold;
  }
  .service .box-container .box p.en {
    /* font-size: 16px; */
    font-size: 11px;
    color: rgb(108 108 108);
    padding: 0 2px;
  }

  /* .service .box-container .box h5.en {
    margin: 4px 0 4px;
    font-size: 13px;
  }
  .service .box-container .box p.en {
    /* font-size: 16px;
    font-size: 9px;
    color: rgb(108 108 108);

  } */
}




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

}
@media (min-width: 550px) {

} */
/* End Form Services */
/* ///////////////////////////////////////////////////// */
/* Start Footer Section */
footer {
  position: relative;
  height: 150px;
  /* background-color: #d4d4d4; */
  background-color: var(--second-color);
  color: gray;
}
@media (max-width: 650px) {
  footer {
    /* height: 365px; */
    height: 397px;
  }
}
@media (min-width: 650px) {
  footer {
    height: 150px;
  }
}
footer .container {
display: none;
}
footer .container.appear {
display: block;
}
footer .large{
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 650px) {
  footer .large {
    display: none;
  }
}
@media (min-width: 650px) {
  footer .large {
    display: flex;
  }
}
footer .box {
position: relative;
height: 150px;
display: flex;
align-items: center;
}
footer .box:first-child {
width: 400px;
justify-content: space-between;
font-size: 13px;
font-weight: bold;
}
@media (max-width: 991px) {
  footer .box:first-child {
    width: 350px;
  }
}
footer .box .logo {
  position: relative;
}
footer .box .logo img.logo {
/* width: 110px;
height: 100px; */
height: 85px;
margin-top: 9px;
margin-right: 35px;
}
footer .box .cont {
  position: relative;
}
footer .box .cont br {
border: 2px #777 solid;
transform: rotateZ(90deg) translateY(-50%);
content: close-quote;
  position: absolute;
  width: 100px;
  top: 50%;
  left: -65px;
}

footer .box .cont ul li{
    color: gray;
  display: inline;
  margin-left: 10px;
}
footer .box .cont ul li a{
    color: gray;
text-decoration: none;
}
footer .box .cont ul li:first-child{
  margin-left: 0px !important;
}


footer .box .cont_i a.a i {
  color: #777;
  font-size: 18px;
  margin-left: 15px;
}
footer .box .cont_i i:first-child {
  margin-left: 26px;
}
footer .box p {
    color: #777;
  font-size: 13px;
  font-weight: bold;
  margin-top: 8px;
}
footer .box p a {
    color: #777;
  font-size: 13px;
  font-weight: bold;
  margin-top: 8px;
  text-decoration: none;
}
footer .box a.b {
  position: absolute;
  left: 100%;
  bottom: 75%;
}
footer .box a.b i {
  font-size: 25px;
  color: #777;
}
/* /////////////////////*/
footer .small {
  display: none;
  margin-left: 30px;
}
@media (max-width: 650px) {
  footer .small {
    display: block;
  }
}
@media (min-width: 650px) {
  footer .small {
    display: none;
  }
}
footer .small img{
  width: 100px;
  /* height: 100px; */
  /* margin-top: 14px; */
  margin-top: 12%;
}

footer .small ul li {
  /* margin-top: 14px;
  font-size: 18px; */
  margin-top: 14px;
  font-size: 16px;
  font-weight: bold;
}
footer .small p.f{
  margin-top: 14px;
  font-size: 15px;
}

footer .small .cont_i i {
  /* font-size: 21px; */
  font-size: 19px;
  margin-left: 10px;
  margin-top: 14px;
  color: #777;
}
footer .small .cont_i i:first-child {
  margin-left: 15px;
}
footer .small .cont_i p {
  font-size: 15px;
  font-weight: bold;
  margin-top: 11px;
}
footer .small .cont_i p a {
    color: #777;
    font-size: 15px;
    font-weight: bold;
    margin-top: 11px;
    text-decoration: none;
}
footer .small  ul li a{
    color: gray;
text-decoration: none;
}
footer .small a.b {
  position: absolute;
  left: 85%;
  bottom: 85%;
}
footer .small a.b i {
  font-size: 25px;
  color: #777;
}
footer .containerar .small {
  text-align: right;
}
footer .containerar .small a.b {
  left: 0;
  right: 85%;
}


a.gotoadmin {
    color: gray;
    text-decoration: none;
}
/* End Footer Section */
/* ///////////////////////////////////////////////////// */






