@import url(./bootstrap.min.css);
@import url(./bootstrap.min.css.map);
@import url(./all.min.css);
@import url(./owl.carousel.min.css);
@import url(./animate.css);
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;400;500;600;700;800&display=swap');

:root {
  --main_bgColor: #ffffff;
  --btnColor: #a12b37;
  --textColor: #040f21;
  --Secondary-color: #000000;  
  --bgColor: #f7f7f7;
  --pragrafColor: #8e8d8d;
  --body_bgColor: #2da7cc;
  --main_borderColor: 1px solid rgba(0, 0, 0, .125);
}

::-webkit-scrollbar {
  width: 10px;

}

::-webkit-scrollbar-track {
  background-color: transparent;
  box-shadow: 0 20px 40px rgb(0 0 0 / 25%);
}

::-webkit-scrollbar-thumb {
  background-color: var(--Secondary-color);
  border-radius: 5px;
  transition: all ease-in-out .3s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--textColor);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
  }
a{
    text-decoration: none;
}
li{
    list-style: none;
    color: var(--Secondary-color);
}
ul{
    padding: 0;
}
img ,video{
    width: 100%;
    height: 100%;
}
p{
  line-height: 1.8;
  color: black;
}
section {
  overflow: hidden !important;
}
.home_u{

  text-align: center;
}
.home_u p{
  font-size: 3em;
  font-weight: bold;

  color:#000;
}
.home_u img{
width: 100px;
}
/* navbar */
.navbar {
  height: 55px;
  width: 90%;
  background-color: transparent;
  background-color: var(--body_bgColor);
  padding: 0 5%;  
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 122121212;
  margin-right: 5%;
}

.navbar  .nav-header {
  width: 20%;

}

.navbar  .nav-header  .nav-logo {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;

  color: #fff;
}

.navbar .nav-logo img {
  width: 25%  !important;
}

.navbar .nav-btn {
  display: none;
}

.navbar  .nav-links {
  margin-right: auto;
  font-size: 18px;
  font-weight: bold;

}

.navbar  .nav-links  a , .navbar .nav-links li{
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #efefef;
  transition: all ease-in .3s;
  cursor: pointer;
}

.navbar  .nav-links  a:hover ,
.navbar .nav-links li:hover{
    color: var(--btnColor);
}

.navbar  #nav-check {
  display: none;
}


.services_menu {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out .3s !important;
  display: flex;
  flex-direction: column;
  left: 20px;
  width: 300px !important;
}

.services_nav_tranz .services_menu {
  opacity: 1;
  visibility: visible;
  animation-name: tranz;
  animation-duration: .5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.services_nav_tranz svg {
  transform: rotate(90deg);
  margin-right: 10px;
}

.services_menu li {
  background-color: var(--bgColor);
  box-shadow: 0 20px 40px rgb(0 0 0 / 25%);

  padding: 0 20px;
  width: 100%;
}

.services_menu li a {
  color: #000 !important;
}

.services_menu li a:hover {
  color: var(--btnColor) !important;
}

.fix {
  background-color: var(--body_bgColor);
  position: fixed !important;
  top: 0;
  right: 0;
  z-index: 656665;
  left: 0;
  height: 60px !important;
  transition: all .5s linear;
  animation-name: tranz;
  animation-duration: .5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  padding: 0 5%;

}

@keyframes tranz {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0px);
  }
}


@media (max-width:600px) {
  .S1_home {
    height: auto!important;
    padding-top: 17%!important;
}

  .navbar > .nav-btn {
    display: inline-block;
    position: absolute;
    left: 10px;
    top: calc(50% - 25px);
  }
  .navbar>.nav-header>.nav-title{
    margin-right: auto;
  }
  .navbar > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .navbar > .nav-btn > label:hover,.navbar  #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .navbar > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  .navbar > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #333;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }
  .navbar > .nav-links > a {
    display: block;
    width: 100%;
  }
  .navbar > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .navbar > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}
/* home */
.S1_home{

  width: 100%;
  height: 115vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
      padding-top: 5%;

}
.S1_home::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.S1_home h1 ,.S1_home p ,.S1_home a{
  z-index: 5;
  color: var(--btnColor);
}
.S1_home h1{
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 800;
}
.S1_home p{
  margin-bottom: 20px;
}
.S1_home a{
  color: var(--body_bgColor);
  background-color: var(--btnColor);
  padding: 10px 30px ;
  border-radius: 5px;

}
.S1_home img{
  padding:10px;
  height: 230px;
}
/* S2_home */
.S2_home{
  padding: 70px 10%;
  background-color: var(--bgColor);
}
.intro{
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  
}
.intro h3{
  color: var(--textColor);
  margin-bottom: 20px;
}
.intro p{
  padding-bottom: 20px;
  color: var(--pragrafColor);
}
.intro::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(50% - 100px);
  width: 200px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--Secondary-color);
}
.S2_home .box{
  /* text-align: center;  */
}
.S2_home .box svg{
  color: var(--body_bgColor);
  font-size: 100px;
  font-weight: bold;

}
.S2_home .box h4{
  margin: 20px 0;
}
/* S3_home */
.S3_home{
  padding: 70px 10%;
  position: relative;
}
.S3_home_2{
  padding: 70px 0%;
}
.products .box{
  padding: 5px;
  text-align: center;
  background-color: var(--bgColor);
}

.products .box img{
  border-radius: 5px;
  height: 2%;
}
.products .box a{
  display: block;
  color: var(--textColor);
  font-size: 18px;
  font-weight: bold;

  margin: 20px 0;
  transition: all ease-in .3s;
}
.products .box a:hover{
  color: var(--btnColor);
}
.products .box span{
  font-size: 18px;
  font-weight: bold;


}
.products .box del{
  font-size: 16px;
  font-weight: bold;

  margin: 0 10px;
  color: var(--btnColor);
}
 .add-to-cart{
  display: block;
  border: none;
  background-color: #000000;
  border-radius: 5px;
  padding: 10px 0;
  width: 100%;
  margin-top: 20px;
  color: var(--body_bgColor) !important;
  font-size: 16px !important;
  font-weight: bold;

  text-align: center;
}
 .add-to-cart:hover{
    color: var(--body_bgColor);
 }
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled{
  display: block;
}
.owl-nav{
  position: absolute;
  bottom: 172px;
  left: calc(50% - 35px);
  z-index: 5;
}
.owl-nav .owl-prev , .owl-nav .owl-next {
  padding:  5px 7px;
  background-color: var(--body_bgColor);
  color: var(--bgColor);
  border-radius: 10%;
}
.owl-nav .owl-next{
  margin-right: 20px;
}
/* S4_home */
.S4_home{
  padding: 70px 0;
}
.S4_home::after{
  content: '';
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f9fab3;
}
.S4_home .box{
  padding: 25px;
}
.S4_home .box h3{
  color: var(--textColor);
  font-size: 32px;
  font-weight: bold;

}
.S4_home .box p{
  color: var(--textColor);
  margin: 20px 0;
  margin-bottom: 50px;
}
.S4_home .box a{
  padding: 10px 30px;
  border-radius: 5px;
  color: var(--main_bgColor);
  background-color: var(--body_bgColor);

}
.S4_home .box img{
  border-radius: 10px;
  width: 100%;
}
/* S5_home */
.S5_home{
  padding: 70px 0;
  background-color: var(--bgColor);
}
.S5_home .item img{
  border: 2px solid var(--btnColor);
  border-radius: 5px;
}
/* footer */
.footer{
  padding: 70px 0;
  text-align: center;
  background-color: var(--body_bgColor );
}
.top_foot img{
  width: 200px;
  margin-bottom: 50px;
}
.footer p{
  color:#efefef;
}
.footer form textarea{
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--btnColor);
  border-radius: 5px;
}
.footer form button{
  width: 100%;
  height: 40px;
  background-color: var(--btnColor);
  margin-top: 20px;
  color: var(--body_bgColor);
  border: none;
  border-radius: 5px;
  transition: all ease-in .3s;
}
.footer form button:hover{
  background-color: transparent;
  border: 1px solid var(--btnColor);
}
.footer form input::placeholder , .footer form textarea::placeholder{
  color: var(--body_bgColor);
  padding-right: 20px;
}
.footer form textarea::placeholder{
  padding: 20px;
}
.footer table td{
  font-size: 16px;
  font-weight: bold;

  text-align: left;
  width: 100%;

}

.footer table .row_peg{
  color: var(--btnColor);
  font-size: 18px;
  font-weight: bold;
  text-align: right;
}
.top_foot ul{
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.top_foot ul li{
  margin: 0 10px;
}
.top_foot ul li svg{
  color: var(--body_bgColor);
  font-size: 30px;
    font-weight: bold;

}
.top_foot ul li a{
  color: var(--body_bgColor);
  font-size: 18px;
    font-weight: bold;

}
.last_foot {
  border-top: var(--main_borderColor);
  padding-top: 20px;
}
.last_foot ul{
  justify-content: space-between;
  display: flex;
}
.last_foot li{
  color: var(--body_bgColor);
}
.last_foot a{
  color: var(--textColor);
}

/* ////////////////// */
/* intro_links */
.intro_links{
  padding: 70px 0;
  text-align: center;
  background-color: #e2dfdf;
}
.intro_links h1{
  font-size: 42px;
    font-weight: bold;

  color: var(--Secondary-color);
}
.intro_links p{
  color: var(--Secondary-color);
  margin: 20px;
}
.intro_links ul{
  display: flex;
  justify-content: center;
  margin-top: 30px;
  color: var(--body_bgColor);
}
.intro_links li a{
  color: var(--body_bgColor);
  margin: 0 10px ;
  transition: all ease-in .3s;
}
.intro_links li a:hover{
  color: var(--btnColor);
}
/* blog */
.S1_blog {
  padding: 70px 0;

}

.S1_blog svg {
  margin: 0px 10px;
}

.S1_blog a {
  color: var(--btnColor);
  transition: all ease-in-out .3s;
}

.S1_blog a:hover {
  color: var(--Secondary-color);
}

.S1_blog .box {
  padding: 25px;
}

.S1_blog .box span {
  color: var(--Secondary-color);
}

.S1_blog h3 {
  margin: 10px 0;
  font-size: 28px;
    font-weight: bold;

}

.S1_blog .box p {
  margin-top: 10px;
}

.S1_blog input {
  margin-bottom: 30px;
  padding: 25px;
  width: 100%;
  background-color: var(--bgColor);
  height: 40px;
  border-radius: 5px;
}

.S1_blog ul li {
  margin: 20px 0 !important;
}
.S1_blog .imges{
  overflow: hidden;

}
.S1_blog .imges img{
  transition: all ease-in .2s;
}
.S1_blog .imges img:hover{
  transform: scale(1.1) rotate(5deg);
}
/* single_blog */
.single_blog{
  padding: 70px 0;
}

.single_blog  img {
  width: 80%;
  height:400px;
  border-radius: 5px;
}
.single_blog .right_box h3{
  margin: 20px 0;
  color: var(--Secondary-color);
}
.single_blog .right_box span{
  color: var(--pragrafColor);
  display: block;
  margin-bottom: 50px;
}
.single_blog .right_box svg{
  margin: 0 10px;
  color: var(--Secondary-color);
}
.single_blog .right_box p{
  margin: 20px 0  ;
}
.single_blog .right_box .texT_container{
  padding: 25px;
  background-color: var(--bgColor);
  position: relative;
  margin: 20px 0;
}
.single_blog .right_box .texT_container::after{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: var(--Secondary-color);
  border-radius: 5px;
}
.single_blog .right_box .texT_container .texT_contant{
  font-size: 24px;
    font-weight: bold;

  color: var(--btnColor);
}
.single_blog .right_box .box{
  padding: 25px;
}
.single_blog .right_box .box a{
  color: var(--textColor);
  display: block;
  margin-bottom: 20px;
}
.single_blog .right_box .box span{
  margin-bottom: 10px;
}
.single_blog .Lift_box h3{
  color: var(--textColor);
}
.single_blog .Lift_box .box{
  display: flex;
  margin: 20px 0;
  justify-content: space-between;
}
.single_blog .Lift_box .box img{
  width: 80px;
  height: 80px;
  border-radius: 5px;
}
.single_blog .Lift_box .box a{
  color: var(--btnColor);
  font-size: 18px;
    font-weight: bold;

  display: block;
  margin-bottom: 10px;
}
.single_blog .Lift_box .box span{
  color: var(--pragrafColor);
}
.single_blog .Lift_box .box svg{
  margin: 0 10px;
}



/* Pagination */
.Pagination {
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Pagination h4 {
  padding: 5px;
  border-radius: 5px;
  border: var(--main_borderColor);
  margin: 0 10px;
  font-size: 20px;
    font-weight: bold;

  transition: all ease-in .3s;
}

.Pagination h4:hover {
  background-color: var(--btnColor);
  color: var(--main_bgColor);
}

.Pagination .active {
  background-color: var(--btnColor);
  color: var(--main_bgColor);
}
/* S1_about */
.S1_about{
  padding: 70px 0;
}
.S1_about .box{
  padding: 25px;
}
.S1_about .box img{
  border-radius: 5px;
}
.S1_about .box h3{
  color: var(--textColor);
  margin-bottom: 30px;
}
.S1_about .box p{
  margin: 20px 0;
}
/* S2_about */
.S2_about{
  padding: 70px 0;
}
.S2_about .box{
  text-align: center;
}
.S2_about .box h4{
  margin: 20px 0;
  color: var(--textColor);
}
.S2_about .box svg{
  font-size: 50px;
    font-weight: bold;

  color: var(--Secondary-color);
}

/* S1_products */
.S1_products {
  padding: 70px 0;
  background-color: var(--bgColor);
}
.S1_products .box{
  margin: 20px 0;
}
/* filters */
.filters_container {
  border: var(--main_borderColor);
  padding: 25px;
  border-radius: 5px;
}

 .filters {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
}

.filters h4 {
  font-size: 24px;
    font-weight: bold;

  color: #000;
}

.filters label {
  color: #000;
}

.filters .filter_dy_catt,
.filters .sorting {
  margin: 0 20px;
}

.filters input {
  background-color: #000 !important;
  margin: 10px 0;
  margin-left: 20px;
  margin-bottom: 10px
}

.filters input[type='radio']:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: var(--Secondary-color);
  content: '';
  display: inline-block;
  visibility: visible;
  transition: all ease-in-out .3s;
  border: 2px solid white;
}

.filters input[type='radio']:checked:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: 0px;
  left: 1px;
  position: relative;
  background-color: var(--btnColor);
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

/* single product */
.S1_Single_product {
  padding: 70px 0;
}

.S1_Single_product .box {
  text-align: right;
}

.S1_Single_product .box h5 {
  margin: 20px 0;
}
.S1_Single_product .box del{
  color: var(--btnColor);
}
.S1_Single_product .box p {
  margin-top: 20px;
}
.S1_Single_product .box a{
  color: var(--btnColor);
}

.sort_Products {
  width: 400px;
}

.sort_Products select {
  font-size: 16px !important;
  margin-left: 10px;
}

.sort_Products select:focus {
  box-shadow: none;
}

.sort_Products select option:hover,
.sort_Products select option:focus,
.sort_Products select option:active,
.sort_Products select option:checked {
  background: linear-gradient(#5A2569, #5A2569) !important;
}

.sort_Products option:checked {
  background-color: var(--bgColor) !important;
}

.search_bar {
  text-align: center;
  margin-bottom: 20px;
}

.search_bar input {
  width: 50%;
  height: 40px;
  border: var(--main_borderColor);
  border-radius: 5px;
  padding: 0 25px;
  background-color: var(--main_bgColor);
}

.search_bar button {
  border: var(--main_borderColor);
  border-radius: 5px;
  background-color: var(--btnColor);
  color: var(--main_bgColor);
  height: 40px;
  padding: 0 20px;
}


/* comments */
.comments {
  padding: 70px 0;
}

.comments ul {
  display: flex;

}

.comments .box {
  width: 50%;
}

.comments ul img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  padding: 0;
  border: 1px solid var(--Secondary-color);
}

.comments ul li {
  margin-left: 20px;
}

.comments ul li span {
  color: var(--Secondary-color);
}

.comments ul li h4 {
  margin: 5px 0;
  padding: 0;
}

.comments ul li p {
  color: var(--color);
}

.comments .form {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.comments .form input {
  border: none;
  margin: 10px 0;
  background-color: var(--bgColor);
  border-radius: 5px;
  height: 40px;
  border: var(--main_borderColor);
  padding: 10px;
}

.comments .form textarea {
  border: none;
  margin: 10px 0;
  background-color: var(--bgColor);
  border-radius: 5px;
  border: var(--main_borderColor);
  padding: 10px;
}

.comments .form button {
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  color: var(--textColor);
  background-color: var(--btnColor);
  margin-top: 20px;
}
/* contact */
.S2_contact {
  padding: 70px 0;
}

.S2_contact .form {
  padding: 25px;
  background-color: var(--bgColor);
  margin: auto;
  border-radius: 5px;

}

.S2_contact .form input {
  width: 100%;
  border: var(--main_borderColor);
  height: 40px;
  border-radius: 5px !important;
  color: var(--P-color);
}

.S2_contact .form label {
  color: var(--P-color);
  margin-bottom: 10px;
  margin-top: 20px !important;
}

.S2_contact .form textarea {
  width: 100%;
  border: var(--main_borderColor);
  border-radius: 5px;
}

.S2_contact .form button {
  padding: 10px 30px;
  background-color: var(--Secondary-color);
  border: none;
  border-radius: 5px;
  color: var(--main_bgColor);
  margin-top: 20px !important;
}

.S2_contact .Contact_numpers ul {
  display: flex;

}

.S2_contact .Contact_numpers ul li {
  margin: 20px 5px;

}

.S2_contact .Contact_numpers ul li a {
  margin: 0 10px;
  color: var(--Secondary-text-color);
  font-size: 25px;
    font-weight: bold;

}

.S2_contact svg {
  color: var(--Secondary-color);
  font-size: 20px;
    font-weight: bold;

}

.S2_contact .media {
  margin-top: 20px;
}

.S2_contact .media svg {
  font-size: 30px;
    font-weight: bold;

}





 /* media */
 @media screen and (min-width:1px) and (max-width:767px){
  h1 {
      font-size: 22px !important;
    }
  
    h3 {
      font-size: 20px !important;
  
    }
  
    p {
      font-size: 14px !important;
    }

  .Pagination h4 {
    padding: 5px;
  }
.comments .box{
  width: 100%;
}
.intro_links ul{
  flex-direction: column;
}
.box{
  margin: 20px 0;
}
.top_foot .links {
  flex-direction: column;
}
.top_foot .links li{
  margin: 10px 0;
}
.S2_contact  svg{
  margin-left: 20px;
}
.S2_contact .media svg{
  font-size: 30px;
  margin-left: 0px;
}
.S2_contact .Contact_numpers ul li{
  margin: 20px 0;
}
.sort_Products{
  flex-direction: column;
  width: 100%;
}
.search_bar input{
  width: 80%;
}
 }




 .scroll_up {
   position: fixed;
   bottom: 50px;
   left: 50px;
   background-color: var(--body_bgColor);
   padding: 10px 14px;
   border-radius: 10%;
   color: #fff;
   display: none;
   z-index: 46555656;
   cursor: pointer;
   transition: all .5s ease-in-out;
 }

 .scroll_transition {
   transform: translateY(100px);
   display: block;

 }

 .show_scroll {
   transition: all .5s ease-in-out;
   transform: translateY(0);
   box-shadow: #8f8f8f 1px 1px 9px;

 }
 .sssaa .owl-nav{
  transform: translateY(-100px);
 }
 
/* S5_home */
.S5_home {
  padding: 70px 0;
}

.S5_home .box {
  text-align: center;
  padding: 20px;
  background-color: var(--box_bgColor);
  border-radius: 5px;
  height: 360px;
  max-height: 360px;
}

.S5_home .box img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--btnColor);
  margin: auto;

}

.S5_home .box h3 {
  color: var(--textColor);
  margin: 20px 0;
}

.S5_home .box ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.S5_home .box ul svg {
  margin: 0 5px;
  color: gold;
}
.aaaaddadada{
  width: 100% !important ;
}

/* S1_blog */

.blog img {
  border-radius: 5px;
}

.blog .box {
  text-align: right;
  margin: 20px 0; 
}

.blog .box p {
  margin-top: 20px;
}

.blog .box span {
  color: var(--btnColor);
}

.blog .box span svg {
  margin: 0 5px;
}

.blog .box a {
  color: var(--textColor);
  transition: all ease-in .3s;
}



.blog .box h4 {
  margin-bottom: 30px;
}

.blog .box a:hover {
  color: var(--btnColor);
}

table {
  border-collapse: collapse;
  border: 2px solid var(--body_bgColor);
font-family: 'Lateef', serif;
font-weight: bold;
  font-size: 1rem;
  letter-spacing: .5px;
}

caption {
  caption-side: bottom;
  padding: 10px;
  font-weight: bold;
}

thead,
tfoot {
  background-color: var(--body_bgColor);
}

th,
td {
  border: 1px solid rgb(160 160 160);
  padding: 8px 10px;
  
}

td:last-of-type {
  text-align: center;
}

tbody > tr:nth-of-type(even) {
  background-color: rgb(237 238 242);
}

tfoot th {
  text-align: right;
}

tfoot td {
  font-weight: bold;
font-family: 'Lateef', serif;
font-weight: bold;

}
ul li {
  color: var(--Secondary-color);
  margin: 5px;
}
.newimg{
  height: 300px!important;


}

/*REMOVE THIS*/
.credits{
position:fixed;
right:-1px;
bottom:42%;
background-color:#0fad24;
padding:0.5rem;
font-size:12px;
z-index:999;
width: 90px;
text-align: center;
transition: all 1s;
border-top-left-radius: 7px;
border-bottom-left-radius: 7px;
color:rgba(255,255,255,0.7);
}
.credits:hover{
position:fixed;
right:0;
bottom:42%;
background-color:#0fad24;
padding:0.5rem;
width: 180px;

z-index:999;
color:rgba(255,255,255,0.7);
}

.credit{
position:fixed;
right:-1px;
bottom:50%;
width: 90px;
text-align: center;
background-color:#194fe4;
padding:0.5rem;
font-size:12px;
z-index:999;
border-top-left-radius: 7px;
border-bottom-left-radius: 7px;
color:rgba(255,255,255,0.7);
transition: all 1s;
}
.credit:hover{
position:fixed;
right:0;
bottom:50%;
width: 180px;

background-color:#194fe4;
padding:0.5rem;
z-index:999;
color:rgba(255,255,255,0.7);
}

.credits a{
color:rgba(255,255,255,0.7);
}


.credits .btn0{
background-color:rgb(17, 165, 12);
color:#000;
padding:5px;
border-radius:5px;
border:0;
display:block;
margin:1vh auto;
width:100px;
text-align:Center;
}

.credits .btn0:hover{
color:black;
background-color:#b8bca7;
}
.credit a{
color:rgba(255,255,255,0.7);
}

.credit a:hover{
color:white;
}

.credit .btn0{
background-color:white;
color:#000;
padding:5px;
border-radius:5px;
border:0;
display:block;
margin:1vh auto;
width:100px;
text-align:Center;
}

.credit .btn0:hover{
color:black;
background-color:#b8bca7;
}


.col-lg-6{
        display: flex
;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}