:root {
  --color-white: #fff;
  --color-black: #000;
  --dark-color:#111d32;
  --color-main: #16243d;
  --color-second: #33cccc;
  --color-light:#fab600;
  --light-blue: #c2dfff;
  --color-100: #015fc9;
  --color-200: #0ce0ff;
  --color-300: rgb(245, 245, 245);
  --color-400: #696e77;
  --color-500: #01905d;
  --color-600: rgb(237, 237, 241);
  --color-700: rgb(105, 105, 105);
  --color-800: rgb(231, 231, 231);
  --color-900: rgb(38, 37, 102);
  --color-1000: #e0e4e8;
  --color-1100: rgb(13, 13, 57);
  --color-1200: #f2f5f9;
  --color-1300: rgb(30, 31, 74);
  --color-1400: #dfe3e7;
  --color-1500: rgb(239, 243, 243);
  --color-1600: rgb(193, 214, 214);
  --color-1700: #f2f5f9;
  --color-1800: rgb(242, 242, 242);
  --color-1900: rgb(229, 229, 229);
  --color-2000: rgb(236, 249, 249);
  --color-2100: rgb(191, 191, 198);
  --color-2200: rgb(89, 89, 137);
  --color-2300: rgb(234, 243, 250);
  --color-2400: #0E86D4;
  --gradient-100: linear-gradient(269.37deg,#fc0000 5.03%,#eb8a17 56.67%);
  --gradient-200: linear-gradient(90deg, #ff4569 -100%, #fa8a06 100.1%);
  --main-bg:#112e4d;
  --light-color: #97a2b7;
}

.services-section .wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .services-section .wrap {
    gap: 20px;
  }
}
.services-section .wrap .search-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .services-section .wrap .search-wrapper {
    width: 100%;
  }
}
@media (max-width: 470px) {
  .services-section .wrap .search-wrapper {
    gap: 5px;
  }
}
.services-section .wrap .search-wrapper h3 {
  font-family: Poppins-SemiBold, Arial, Helvetica, sans-serif;
  color: var(--color-main);
  font-size: 16px;
  line-height: 24px;
}
.services-section .wrap .search-wrapper form {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media (max-width: 991px) {
  .services-section .wrap .search-wrapper form {
    flex: 1;
  }
}
@media (max-width: 470px) {
  .services-section .wrap .search-wrapper form {
    flex: unset;
    width: 100%;
  }
}
.services-section .wrap .search-wrapper form input {
  background: var(--color-1800);
  height: 40px;
  border-radius: 6px 0 0 6px;
  color: var(--color-400);
  font-family: Poppins-Regular, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 17px;
  outline: none;
  border: 0;
  padding: 11px 30px 11px 15px;
  min-width: 350px;
}
@media (max-width: 991px) {
  .services-section .wrap .search-wrapper form input {
    flex: 1;
    min-width: 0;
  }
}
.services-section .wrap .search-wrapper form .search {
  border-radius: 0 6px 6px 0;
  width: 40px !important;
  height: 40px !important;
}
.services-section .wrap .search-wrapper form .search svg {
  fill: var(--color-white);
}
.services-section .wrap .search-wrapper form .delete-search {
  position: absolute;
  top: 50%;
  right: 66px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-in-out;
  padding: 0;
}
.services-section .wrap .search-wrapper form .delete-search.open {
  opacity: 1;
  visibility: initial;
}
.services-section .wrap .search-wrapper form .delete-search:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 16px;
  height: 2px;
  background: red;
}
.services-section .wrap .search-wrapper form .delete-search:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 2px;
  height: 16px;
  background: red;
}
.services-section .wrap .show_all {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page-section .wrap .picture {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-page-section .wrap .picture img {
  max-width: 100%;
}
.service-page-section .wrap .show_all {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
