:root {
  --med-primary-color: #002261;
  --med-secondary-color: #2EA3F3;
  --med-white-color: #ffffff;
  --med-black-color: #000000;
  --med-text-primary: #333333;
  --med-text-secondary: #666666;
  --med-border-color: #dddddd;
  --med-logo-width: 180px;
}

body, * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 160%;
}
body::before, body::after, *::before, *::after {
  box-sizing: inherit;
}

a {
  text-decoration: none !important;
}

li {
  list-style: none;
}

.primary-btn {
  background: var(--med-secondary-color);
  color: var(--med-white-color);
  border: none;
  border-radius: 30px;
  padding: 12px 50px 12px 25px;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.primary-btn:hover {
  background: var(--med-primary-color);
}
.primary-btn:hover::before {
  transform: translateX(5px);
}
.primary-btn::before {
  content: "";
  position: absolute;
  right: 25px;
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E %3Cpath d='M6 17L11 12L6 7M13 17L18 12L13 7' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E %3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E %3Cpath d='M6 17L11 12L6 7M13 17L18 12L13 7' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E %3C/g%3E%3C/svg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--med-white-color);
  transition: transform 0.3s ease;
}

.header-top {
  background-color: var(--med-primary-color);
  padding: 12px 0;
}
.header-top .header-top__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-top .header-top__wrapper {
    gap: 12px;
  }
}
.header-top .header-top__wrapper a {
  color: #fff;
}
.header-top .header-top__wrapper .contact-info {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .header-top .header-top__wrapper .contact-info {
    flex-direction: column;
    gap: 0px;
  }
}
.header-top .header-top__wrapper .contact-info .info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--med-white-color);
}
.header-top .header-top__wrapper .contact-info .info svg {
  width: 16px;
  height: 16px;
}
.header-top .header-top__wrapper .contact-info .info span {
  font-size: 14px;
}
.header-top .header-top__wrapper .social-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-top .header-top__wrapper .social-wrap .social-label {
  color: var(--med-white-color);
  font-size: 14px;
}
.header-top .header-top__wrapper .social-wrap .social-networks {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-top .header-top__wrapper .social-wrap .social-networks li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.header-top .header-top__wrapper .social-wrap .social-networks li a:hover {
  background-color: var(--med-secondary-color);
}
.header-top .header-top__wrapper .social-wrap .social-networks li a svg {
  width: 16px;
  height: 16px;
}
.header-top .header-top__wrapper .social-wrap .social-networks li a svg path {
  fill: var(--med-white-color);
}

@media screen and (max-width: 992px) {
  .desktop-header {
    display: none;
  }
}
.desktop-header > .container {
  padding: 0 20px;
}
.desktop-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.desktop-header .header-wrapper .header-left {
  display: flex;
  align-items: center;
  max-width: 70%;
  gap: 42px;
}
@media screen and (min-width: 1440px) {
  .desktop-header .header-wrapper .header-left {
    gap: 90px;
  }
}
.desktop-header .header-wrapper .header-left .custom-logo {
  max-width: 120px;
}
.desktop-header .header-wrapper .header-right {
  display: flex;
  align-items: center;
  max-width: 70%;
  gap: 42px;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 4px !important;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li {
  position: relative;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li > a {
  color: var(--med-primary-color);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 0;
  display: block;
  transition: all 0.3s ease;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li > a:hover {
  color: var(--med-secondary-color);
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li.menu-item-has-children > a {
  padding-right: 15px;
  position: relative;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 2px solid var(--med-primary-color);
  border-left: 0;
  border-top: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(-45deg);
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--med-white-color);
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li .sub-menu li {
  position: relative;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li .sub-menu li a {
  padding: 8px 25px;
  display: block;
  color: var(--med-primary-color);
  font-size: 14px;
  transition: all 0.3s ease;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li .sub-menu li a:hover {
  color: var(--med-secondary-color);
  padding-left: 30px;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li .sub-menu li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border: 2px solid var(--med-primary-color);
  border-left: 0;
  border-top: 0;
  transition: all 0.3s ease;
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li .sub-menu li.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(-135deg);
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li .sub-menu li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.desktop-header .header-wrapper .header-right .main-navigation .menu > li .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
  transform: translateX(20px);
}
.desktop-header .header-wrapper .header-right .header-search__wrap {
  position: relative;
  margin-right: 10px;
}
.desktop-header .header-wrapper .header-right .header-search__wrap .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.desktop-header .header-wrapper .header-right .header-search__wrap .icon:hover {
  background: var(--med-primary-color);
}
.desktop-header .header-wrapper .header-right .header-search__wrap .icon:hover svg path {
  fill: var(--med-white-color);
}
.desktop-header .header-wrapper .header-right .header-search__wrap .icon.search-close {
  display: none;
  background: var(--med-primary-color);
}
.desktop-header .header-wrapper .header-right .header-search__wrap .icon.search-close svg path {
  fill: var(--med-white-color);
}
.desktop-header .header-wrapper .header-right .header-search__wrap.show-search .search-icon {
  display: none;
}
.desktop-header .header-wrapper .header-right .header-search__wrap.show-search .search-close {
  display: flex;
}
.desktop-header .header-wrapper .header-right .header-search__wrap.show-search .search-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.desktop-header .header-wrapper .header-right .header-search__wrap .search-wrapper {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  width: 300px;
  background: var(--med-white-color);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.desktop-header .header-wrapper .header-right .header-search__wrap .search-wrapper .search-form {
  display: flex;
  align-items: center;
}
.desktop-header .header-wrapper .header-right .header-search__wrap .search-wrapper .search-form .search-field {
  flex: 1;
  height: 45px;
  padding: 0 15px;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--med-text-primary);
}
.desktop-header .header-wrapper .header-right .header-search__wrap .search-wrapper .search-form .search-field::-moz-placeholder {
  color: #999;
}
.desktop-header .header-wrapper .header-right .header-search__wrap .search-wrapper .search-form .search-field::placeholder {
  color: #999;
}
.desktop-header .header-wrapper .header-right .header-search__wrap .search-wrapper .search-form .search-field:focus {
  outline: none;
}
.desktop-header .header-wrapper .header-right .header-search__wrap .search-wrapper .search-form .search-submit {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--med-secondary-color);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
}

.mobile-header {
  display: none;
}
@media screen and (max-width: 992px) {
  .mobile-header {
    display: block;
  }
}
.mobile-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-header .header-wrapper .header-left .site-branding img {
  max-width: 120px;
}
.mobile-header .header-wrapper .header-right .ham-menu i {
  font-size: 28px;
}

#overlay {
  background-color: rgba(0, 0, 0, 0.6235294118);
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.sidebar {
  background-color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  visibility: visible;
  transition: all ease 0.5s;
  max-width: 500px;
  padding: 24px;
  overflow-y: auto;
}
@media screen and (min-width: 992px) {
  .sidebar {
    display: none;
  }
}
.sidebar .sidebar-top-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sidebar .sidebar-top-wrap .close-sidebar-btn {
  border: none;
  background-color: transparent;
}
.sidebar .site-branding img {
  max-width: 120px;
}
.sidebar .main-navigation {
  padding-bottom: 30px;
}
.sidebar .main-navigation .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 4px !important;
}
.sidebar .main-navigation .menu > li {
  position: relative;
}
.sidebar .main-navigation .menu > li > a {
  color: var(--med-primary-color);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 0;
  display: block;
  transition: all 0.3s ease;
}
.sidebar .main-navigation .menu > li > a:hover {
  color: var(--med-secondary-color);
}
.sidebar .main-navigation .menu > li.menu-item-has-children > a {
  padding-right: 15px;
  position: relative;
}
.sidebar .main-navigation .menu > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 2px solid var(--med-primary-color);
  border-left: 0;
  border-top: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}
.sidebar .main-navigation .menu > li.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(-45deg);
}
.sidebar .main-navigation .menu > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sidebar .main-navigation .menu > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--med-white-color);
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
}
.sidebar .main-navigation .menu > li .sub-menu li {
  position: relative;
}
.sidebar .main-navigation .menu > li .sub-menu li a {
  padding: 8px 25px;
  display: block;
  color: var(--med-primary-color);
  font-size: 14px;
  transition: all 0.3s ease;
}
.sidebar .main-navigation .menu > li .sub-menu li a:hover {
  color: var(--med-secondary-color);
  padding-left: 30px;
}
.sidebar .main-navigation .menu > li .sub-menu li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border: 2px solid var(--med-primary-color);
  border-left: 0;
  border-top: 0;
  transition: all 0.3s ease;
}
.sidebar .main-navigation .menu > li .sub-menu li.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(-135deg);
}
.sidebar .main-navigation .menu > li .sub-menu li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.sidebar .main-navigation .menu > li .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
  transform: translateX(20px);
}

.banner-section {
  position: relative;
  background: linear-gradient(to right, #f8f9fa 50%, #ffffff 50%);
  overflow: hidden;
}
.banner-section .banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .banner-section .banner-wrapper {
    min-height: 60vh;
  }
}
.banner-section .banner-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.banner-section .banner-content .banner-title {
  font-size: clamp(32px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--med-text-primary);
}
.banner-section .banner-content .banner-title .highlight {
  color: var(--med-secondary-color);
  font-size: inherit;
  border-bottom: 5px solid var(--med-secondary-color);
}
.banner-section .banner-content .banner-text {
  font-size: 20px;
  line-height: 1.6;
  color: #666;
  max-width: 600px;
  margin-bottom: 30px;
}
.banner-section .banner-content .service-info {
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 5px solid var(--med-primary-color);
}
.banner-section .banner-content .service-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--med-primary-color);
  margin-bottom: 5px;
}
.banner-section .banner-content .service-info p {
  color: var(--med-primary-color);
  font-size: 16px;
  margin: 0;
}
.banner-section .banner-content .banner-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.banner-section .banner-content .banner-buttons .discover-btn {
  background-color: var(--med-primary-color);
}
.banner-section .banner-content .banner-buttons .discover-btn:hover {
  background-color: var(--med-secondary-color);
}
.banner-section .custom-indicators {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: unset;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 15px;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  list-style: none;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .banner-section .custom-indicators {
    flex-direction: row;
    right: 50%;
    transform: translateX(50%);
    bottom: 10px;
  }
}
.banner-section .custom-indicators button {
  width: 90px;
  height: 90px;
  padding: 0;
  margin: 0 !important;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  background: none;
}
@media screen and (max-width: 768px) {
  .banner-section .custom-indicators button {
    width: 40px;
    height: 40px;
  }
}
.banner-section .custom-indicators button.active {
  opacity: 1;
  border-color: var(--med-secondary-color);
}
.banner-section .custom-indicators button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  display: block;
}
.banner-section .carousel-item {
  min-height: 80vh;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .banner-section .carousel-item {
    min-height: 60vh;
  }
}
@media screen and (max-width: 768px) {
  .banner-section .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
  }
}
.banner-section .carousel-item .container {
  position: relative;
  z-index: 2;
}

.cta-section {
  position: relative;
  z-index: 10;
}
.cta-section .cta-wrapper {
  background-color: var(--med-primary-color);
  position: relative;
  overflow: hidden;
}
.cta-section .cta-image {
  position: relative;
  width: 200px;
  height: 200px;
}
.cta-section .cta-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta-section .cta-content {
  position: relative;
  z-index: 2;
  padding-left: 30px;
}
.cta-section .cta-content .cta-title {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}
.cta-section .cta-content .cta-text {
  font-size: 18px;
  color: #FFF;
  margin: 0;
}
.cta-section .primary-btn {
  background-color: #fff;
  color: var(--med-primary-color);
  border: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.cta-section .primary-btn:before {
  background-color: var(--med-primary-color);
}
.cta-section .primary-btn:hover {
  background-color: var(--med-secondary-color);
  color: #fff;
}
.cta-section .primary-btn:hover:before {
  background-color: var(--med-white-color);
}

@media (max-width: 991.98px) {
  .cta-section {
    margin-top: 0;
  }
  .cta-section .cta-content {
    padding: 40px;
  }
  .cta-section .cta-image {
    max-height: 300px;
  }
  .cta-section .text-lg-end {
    text-align: left !important;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .cta-section .cta-wrapper {
    padding: 40px 0;
  }
  .cta-section .cta-image {
    padding-bottom: 24px;
  }
  .cta-section .cta-content {
    text-align: center;
    padding-bottom: 24px;
  }
  .cta-section .d-flex {
    flex-direction: column;
    align-items: center;
  }
}
.about-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.about-section .about-images {
  position: relative;
  width: 100%;
  height: 600px;
  padding: 30px;
}
.about-section .about-images .about-circle {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  z-index: -1;
  animation: rotate 20s linear infinite;
}
.about-section .about-images .about-circle svg {
  width: 100%;
  height: 100%;
}
.about-section .about-images .about-dots {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  z-index: -1;
}
.about-section .about-images .about-dots img {
  max-width: 150px;
  opacity: 0.5;
}
.about-section .about-images .about-main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.about-section .about-images .about-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .about-images .play-btn {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  z-index: 99;
  right: -25px;
  top: 35%;
  transform: translateY(-50%) rotate(-90deg);
}
.about-section .about-images .play-btn .icon-play {
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  background-color: var(--med-secondary-color);
  align-items: center;
  position: relative;
  justify-content: center;
  border-radius: 50%;
}
.about-section .about-images .play-btn .icon-play span {
  width: 0;
  height: 0;
  display: inline-block;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.about-section .about-images .play-btn .icon-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  background-color: var(--med-secondary-color);
}
.about-section .about-images .play-btn span {
  font-size: 20px;
  font-weight: 600;
  color: var(--med-primary-color);
  border-bottom: 1px solid var(--med-secondary-color);
}
.about-section .about-images .about-experience {
  position: absolute;
  width: 130px;
  height: 130px;
  bottom: 18%;
  left: 30%;
  align-content: center;
  z-index: 99;
  background: var(--med-primary-color);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  border: 10px solid var(--med-white-color);
}
.about-section .about-images .about-experience h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.about-section .about-images .about-experience p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.about-section .about-images .about-small-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 270px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.about-section .about-images .about-small-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 560px) {
  .about-section .about-images .about-main-image {
    height: 400px;
  }
  .about-section .about-images .about-experience {
    left: 20px;
  }
  .about-section .about-images .about-small-image {
    width: 80%;
  }
}
.about-section .about-content {
  padding-left: 50px;
}
.about-section .about-content .section-header {
  margin-bottom: 30px;
}
.about-section .about-content .section-header .subtitle {
  color: var(--med-secondary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
  padding-left: 50px;
}
.about-section .about-content .section-header .subtitle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--med-secondary-color);
}
.about-section .about-content .section-header .title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--med-text-primary);
}
.about-section .about-content .description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}
.about-section .about-content .support-features {
  border-bottom: 1px solid #e5e5e5;
}
.about-section .about-content .support-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.about-section .about-content .support-features .feature-item .icon {
  width: 50px;
  height: 50px;
  background: var(--med-secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.about-section .about-content .support-features .feature-item .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--med-text-primary);
}
.about-section .about-content .support-features .feature-item .content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.about-section .about-content .about-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px 0;
  border-radius: 10px;
}
.about-section .about-content .about-info .info-icon {
  width: 40px;
  height: 40px;
  background: var(--med-primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.about-section .about-content .about-info p {
  margin: 0;
  font-size: 14px;
  color: #666;
  max-width: 400px;
}
.about-section .about-content .about-info p .read-more {
  color: var(--med-secondary-color);
  font-weight: 500;
  font-size: inherit;
  text-decoration: underline !important;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@media (max-width: 991.98px) {
  .about-section .about-content {
    padding-left: 0;
    margin-top: 50px;
  }
  .about-section .about-images .about-experience {
    right: 30px;
  }
}
.counter-section {
  position: relative;
  overflow: hidden;
  background-color: #E8EDF0;
}
.counter-section::after {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.counter-section .counter-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  background-color: var(--med-primary-color);
}
.counter-section .counter-wrapper .counter-item {
  text-align: center;
  padding: 30px 15px;
  position: relative;
}
.counter-section .counter-wrapper .counter-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background-color: rgba(255, 255, 255, 0.3);
}
.counter-section .counter-wrapper .counter-item .counter-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.counter-section .counter-wrapper .counter-item .counter-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}
.counter-section .counter-wrapper .counter-item .counter-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--med-white-color);
  line-height: 1;
  margin: 0;
}
.counter-section .counter-wrapper .counter-item .counter-number span {
  color: var(--med-white-color);
  font-size: inherit;
}
.counter-section .counter-wrapper .counter-item .counter-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--med-white-color);
  margin: 0;
}

@media (max-width: 991.98px) {
  .counter-section .counter-item {
    margin-bottom: 30px;
  }
  .counter-section .counter-item:not(:last-child)::after {
    display: none;
  }
}
.service-section {
  padding: 100px 0;
  background-color: #E8EDF0;
}
.service-section .section-header {
  margin-bottom: 50px;
}
.service-section .section-header .subtitle {
  color: var(--med-secondary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}
.service-section .section-header .title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--med-text-primary);
}
.service-section .section-header .description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
.service-section .service-wrapper .service-item {
  background: var(--med-white-color);
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-section .service-wrapper .service-item .service-count {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #ddd;
  transition: all 0.3s ease;
  z-index: 2;
  display: none;
  color: var(--med-primary-color);
  -webkit-text-stroke: 1px #fff;
}
.service-section .service-wrapper .service-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-section .service-wrapper .service-item:hover .service-overlay {
  opacity: 1;
}
.service-section .service-wrapper .service-item:hover .icon {
  background-color: var(--med-secondary-color);
}
.service-section .service-wrapper .service-item:hover .icon img {
  filter: brightness(0) invert(1);
}
.service-section .service-wrapper .service-item:hover .service-count {
  display: block;
}
.service-section .service-wrapper .service-item:hover .title, .service-section .service-wrapper .service-item:hover .text {
  color: var(--med-white-color);
  position: relative;
  z-index: 2;
}
.service-section .service-wrapper .service-item .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
  background-image: url("../images/service-bg.jpg");
  background-size: cover;
  background-position: center;
}
.service-section .service-wrapper .service-item .service-overlay .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--med-primary-color);
  opacity: 0.7;
}
.service-section .service-wrapper .service-item .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--med-primary-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.service-section .service-wrapper .service-item .icon img {
  width: 25px;
  height: 25px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}
.service-section .service-wrapper .service-item .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--med-text-primary);
  transition: all 0.3s ease;
}
.service-section .service-wrapper .service-item .text {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  transition: all 0.3s ease;
}
.service-section .service-footer p {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin: 0;
}
.service-section .service-footer p .see-more {
  color: var(--med-secondary-color);
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
}
.service-section .service-footer p .see-more:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .service-section .section-header .title {
    margin-bottom: 15px;
  }
}
@media (max-width: 575.98px) {
  .service-section {
    padding: 60px 0;
  }
  .service-section .service-wrapper .service-item {
    padding: 20px;
  }
}
.team-section {
  padding: 100px 0;
}
.team-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.team-section .section-header .subtitle {
  color: var(--med-secondary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}
.team-section .section-header .title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--med-text-primary);
}
.team-section .team-carousel {
  position: relative;
  padding: 20px;
}
.team-section .team-carousel .team-swiper {
  padding-bottom: 80px;
}
.team-section .team-carousel .swiper-button-next,
.team-section .team-carousel .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: var(--med-primary-color);
  border-radius: 50%;
  color: #fff;
}
.team-section .team-carousel .swiper-button-next:after,
.team-section .team-carousel .swiper-button-prev:after {
  font-size: 20px;
}
.team-section .team-carousel .swiper-button-next:hover,
.team-section .team-carousel .swiper-button-prev:hover {
  background: #0070f8;
}
.team-section .team-carousel .swiper-pagination-bullet {
  width: 20px;
  border-radius: 8px;
  height: 10px;
  background: #c7c7c7;
  opacity: 0.5;
}
.team-section .team-carousel .swiper-pagination-bullet-active {
  width: 30px;
  opacity: 1;
  background: var(--med-primary-color);
}
.team-section .team-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 420px;
  background: #002261;
}
.team-section .team-item::after {
  content: "";
  width: 330px;
  height: 270px;
  position: absolute;
  top: -250px;
  right: -300px;
  transform: rotate(-30deg);
  transition: all 0.6s ease;
  z-index: 0;
  background-color: #2ea6f7;
}
.team-section .team-item .team-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}
.team-section .team-item .team-thumb img {
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-section .team-item .team-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  padding-bottom: 50px;
  text-align: center;
  background: transparent;
  color: #fff;
  transform: translateY(100%);
  transition: all 0.5s ease;
  z-index: 2;
}
.team-section .team-item .team-content .name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}
.team-section .team-item .team-content .designation {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}
.team-section .team-item .team-content .team-social {
  margin-top: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}
.team-section .team-item .team-content .team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #fff;
  color: var(--med-primary-color);
  border-radius: 50%;
  margin: 0 5px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.team-section .team-item .team-content .team-social a:hover {
  background: var(--med-primary-color);
  color: #fff;
}
.team-section .team-item:hover::after {
  top: -185px;
  right: -90px;
  transition: all 0.6s ease;
}
.team-section .team-item:hover .team-thumb img {
  -o-object-position: top;
     object-position: top;
  width: 180px;
  position: absolute;
  top: 50px;
  height: 180px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
.team-section .team-item:hover .team-content {
  transform: translateY(0);
  background: transparent;
}
.team-section .team-item:hover .team-content .team-social {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-section {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
  background-image: url("../images/service_bg_2.jpg");
  background-size: cover;
}
.why-choose-section .why-choose-content {
  padding-right: 50px;
}
.why-choose-section .why-choose-content .subtitle {
  color: var(--med-primary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.why-choose-section .why-choose-content .title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--med-text-primary);
}
.why-choose-section .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.why-choose-section .features-grid .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  padding: 30px 30px 30px 0;
}
.why-choose-section .features-grid .feature-item:nth-child(even) {
  border-right: none;
  padding-left: 30px;
  padding-right: 0;
}
.why-choose-section .features-grid .feature-item:last-child, .why-choose-section .features-grid .feature-item:nth-last-child(2) {
  border-bottom: none;
}
.why-choose-section .features-grid .feature-item .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--med-primary-color);
  border-radius: 4px;
  font-size: 24px;
  transition: all 0.3s ease;
}
.why-choose-section .features-grid .feature-item .icon i::before {
  font-size: 24px;
}
.why-choose-section .features-grid .feature-item .content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--med-text-primary);
}
.why-choose-section .features-grid .feature-item .content p {
  font-size: 14px;
  color: grey;
  margin: 0;
}
.why-choose-section .features-grid .feature-item:hover .icon {
  background: var(--med-primary-color);
  color: var(--med-white-color);
}
.why-choose-section .why-choose-image {
  position: relative;
}
.why-choose-section .why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .why-choose-section .why-choose-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .why-choose-section .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-choose-section .features-grid .feature-item {
    padding: 30px 0 !important;
    border-right: none;
  }
}
@media (max-width: 575px) {
  .why-choose-section {
    padding: 60px 0;
  }
}
.portfolio-section {
  padding: 100px 0;
}
.portfolio-section .section-header .subtitle {
  color: var(--med-secondary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}
.portfolio-section .section-header .title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--med-text-primary);
}
.portfolio-section .section-header .description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
.portfolio-section .tab-buttons {
  display: flex;
  justify-content: start;
  gap: 10px;
  flex-wrap: wrap;
}
.portfolio-section .tab-buttons .tab-button {
  padding: 10px 20px;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  background: transparent;
}
.portfolio-section .tab-buttons .tab-button.active {
  background-color: var(--med-secondary-color);
  color: #fff;
}
.portfolio-section .tab-buttons .tab-button:hover {
  color: var(--med-primary-color);
}
.portfolio-section .tab-content {
  margin-top: 20px;
}
.portfolio-section .tab-content .main-wrapper .image img {
  width: 100%;
}
.portfolio-section .tab-content .main-wrapper .info-wrapper {
  width: 320px;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.portfolio-section .tab-content .main-wrapper .info-wrapper .text {
  border-left: 2px solid var(--med-secondary-color);
  padding-left: 20px;
}
.portfolio-section .tab-content .main-wrapper .info-wrapper h3 {
  font-size: 20px;
  font-weight: 700;
}
.portfolio-section .tab-content .main-wrapper .info-wrapper p {
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio-section .tab-content .main-wrapper .info-wrapper .counter {
  background-color: var(--med-primary-color);
  padding: 5px 10px;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
  right: 0;
  transform: translate(50%, -50%);
}
.portfolio-section .tab-content .main-wrapper .info-wrapper:hover {
  background-color: var(--med-primary-color);
  color: #fff;
}
.portfolio-section .tab-content .main-wrapper .info-wrapper:hover .counter {
  background-color: var(--med-secondary-color);
}
.portfolio-section .tab-pane {
  display: none;
}
.portfolio-section .tab-pane.active {
  display: block;
}
.offering-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.offering-section .section-header .subtitle {
  color: var(--med-secondary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}
.offering-section .section-header .title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--med-text-primary);
}
.offering-section .offering-tab-buttons {
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .offering-section .offering-tab-buttons .offering-tab-button {
    flex: 1;
  }
}
.offering-section .offering-tab-buttons .offering-tab-button {
  min-width: 300px;
  border: none;
  font-weight: 700;
  border-radius: 5px;
  position: relative;
}
.offering-section .offering-tab-buttons .offering-tab-button a {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 69px;
  color: inherit;
  overflow: hidden;
}
.offering-section .offering-tab-buttons .offering-tab-button span {
  width: 70px;
  height: 100px;
  background-color: transparent;
  border-right: 2px solid transparent;
  border-radius: 30px 60px 60px 30px;
  align-content: center;
}
.offering-section .offering-tab-buttons .offering-tab-button span i::before {
  color: var(--med-secondary-color);
  font-size: 20px;
}
.offering-section .offering-tab-buttons .offering-tab-button::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #002261;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 10px) rotate(45deg);
  opacity: 0;
}
.offering-section .offering-tab-buttons .offering-tab-button.active, .offering-section .offering-tab-buttons .offering-tab-button:hover {
  background-color: #002261;
  color: #fff;
}
.offering-section .offering-tab-buttons .offering-tab-button.active::before, .offering-section .offering-tab-buttons .offering-tab-button:hover::before {
  opacity: 1;
}
.offering-section .offering-tab-buttons .offering-tab-button.active span, .offering-section .offering-tab-buttons .offering-tab-button:hover span {
  background-color: var(--med-secondary-color);
  border-right: 2px solid #fff;
}
.offering-section .offering-tab-buttons .offering-tab-button.active span i::before, .offering-section .offering-tab-buttons .offering-tab-button:hover span i::before {
  color: #fff;
}
.offering-section .offering-tab-content {
  border: 1px solid rgba(221, 221, 221, 0.8666666667);
  border-radius: 8px;
  padding: 10px;
}
.offering-section .offering-tab-content .main-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}
.offering-section .offering-tab-content .main-wrapper .image, .offering-section .offering-tab-content .main-wrapper img {
  max-width: 100%;
}
.offering-section .offering-tab-content .main-wrapper .info-wrapper {
  padding: 0 40px;
}
.offering-section .offering-tab-content .main-wrapper .info-wrapper h3 {
  font-weight: 700;
}
.offering-section .offering-tab-content .main-wrapper ul {
  margin-left: 30px;
}
.offering-section .offering-tab-content .main-wrapper ul li i {
  font-size: 24px;
}

@media screen and (max-width: 1200px) {
  .offering-section .offering-tab-content .main-wrapper {
    flex-direction: column;
  }
}
.footer {
  background-image: url("../images/footer_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer ul {
  padding: 0;
}
.footer ul li {
  line-height: 40px;
  font-size: 16px;
  font-weight: 500;
}
.footer ul a, .footer ul span {
  font-size: 16px;
}
.footer .logo {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.footer .logo img {
  max-width: 120px;
}
.footer .services, .footer .map {
  padding: 20px 0;
}
@media screen and (min-width: 767px) {
  .footer .services, .footer .map {
    padding: 100px 0;
  }
}
.footer .services {
  padding-left: 100px;
}
@media screen and (max-width: 1000px) {
  .footer .services {
    padding-left: 40px;
  }
}
.footer .services h2 {
  font-weight: 700;
}
.footer .map {
  text-align: center;
}
.footer .map iframe {
  width: 400px;
  max-width: 100%;
  max-height: 300px;
  border: none;
}
.footer .details {
  background-color: #2EA6F7;
  padding: 60px 35px;
  margin-top: -30px;
  border-radius: 5px 5px 0 0;
}
.footer .details .footer_contact li {
  margin-bottom: 10px;
}
.footer .details .social_btns {
  display: flex;
  gap: 10px;
}
.footer .details .social_btns a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  background-color: #54b3f4;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .footer .services, .footer .details {
    text-align: center;
  }
  .footer .details .footer_contact .d-flex, .footer .details .social_btns {
    justify-content: center;
  }
}
.copyright {
  background-color: #000;
  color: #fff;
}
.copyright .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .copyright .container {
    flex-direction: column;
    align-items: center;
  }
}
.copyright .container p, .copyright .container ul {
  margin-top: 1rem;
}
.copyright ul {
  display: flex;
  gap: 20px;
}
.copyright ul a {
  color: #fff;
}/*# sourceMappingURL=style.css.map */