/*
 * Copyright (c) 2022.
 * Muhammet KÖKLÜ <info@muhammetkoklu.com>
 */
/* Fonts */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaA.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaA.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaA.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaA.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaA.ttf) format('truetype');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaA.ttf) format('truetype');
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Mulish', sans-serif;
}
.scroll-to-top {
  position: fixed;
  z-index: 100;
  right: 1.3rem;
  bottom: 1rem;
  background: #0f3e85;
  color: white;
  border-radius: 0px;
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  line-height: 40px;
  font-size: 1.3em;
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 0.5rem;
}
.scroll-to-top:hover {
  color: white;
}
.scroll-to-top:hover:before {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}
.scroll-to-top::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 10;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
body,
html {
  max-width: 100vw;
  font-family: 'Mulish', sans-serif;
  scroll-behavior: smooth;
  background-color: #ffffff;
}
body .container-fluid,
html .container-fluid {
  max-width: 1400px;
}
main {
  max-width: 100vw;
  overflow-x: hidden;
  color: black;
}
section.shadow {
  box-shadow: 0 -0.25rem 0.5rem rgba(0, 0, 0, 0.05) !important;
}
header {
  width: 100%;
  padding: 12px 20px;
  z-index: 9000 !important;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
header.home {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 1000;
  left: 0;
  width: 100%;
}
header .row {
  display: flex;
  align-items: center;
}
header .logo-area img {
  height: 75px;
  width: auto;
  max-width: unset;
  transition: all 0.5s;
}
header .col-lg-10 {
  position: static;
}
header .menu-area .mobile-menu-button,
header .menu-area .mobile-menu {
  display: none;
}
header .menu-area .main-menu ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: flex;
  justify-content: end;
	flex-wrap: wrap;
}
header .menu-area .main-menu ul > li {
  position: relative;
}
header .menu-area .main-menu ul > li:hover > ul {
  display: block;
}
header .menu-area .main-menu ul > li > ul {
  position: absolute;
  display: none;
  transition: all 0.5s;
  width: 300px;
  z-index: 50;
  left: 50%;
  transform: translateX(-50%);
  justify-content: space-between;
  padding: 0.75rem 0 !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: white;
  animation: fadeIn;
  animation-duration: 0.6s;
}
header .menu-area .main-menu ul > li > ul li > ul {
  top: 0;
  left: -150px;
  width: 300px;
}
header .menu-area .main-menu ul > li > ul li:hover > a,
header .menu-area .main-menu ul > li > ul li:focus > a,
header .menu-area .main-menu ul > li > ul li:active > a,
header .menu-area .main-menu ul > li > ul li.active > a,
header .menu-area .main-menu ul > li > ul li.current-menu > a {
  color: #0f3e85;
}
header .menu-area .main-menu ul > li > ul li:hover > a:after,
header .menu-area .main-menu ul > li > ul li:focus > a:after,
header .menu-area .main-menu ul > li > ul li:active > a:after,
header .menu-area .main-menu ul > li > ul li.active > a:after,
header .menu-area .main-menu ul > li > ul li.current-menu > a:after,
header .menu-area .main-menu ul > li > ul li:hover > a:after,
header .menu-area .main-menu ul > li > ul li:focus > a:after,
header .menu-area .main-menu ul > li > ul li:active > a:after,
header .menu-area .main-menu ul > li > ul li.active > a:after,
header .menu-area .main-menu ul > li > ul li.current-menu > a:after {
  width: calc(100% - 2.5rem);
  left: 0;
}
header .menu-area .main-menu ul > li > ul li > a {
  padding: 0.5rem 1.25rem;
}
header .menu-area .main-menu ul > li > ul li > a:after {
  bottom: 0;
  margin: 0 1.25rem;
}
header .menu-area .main-menu ul > li > a {
  color: black;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 1em;
  display: block;
  padding: 0.75rem 0.75rem;
  transition: all 0.5s;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}
header .menu-area .main-menu ul > li > a:after {
  content: '';
  position: absolute;
  width: 0px;
  height: 3px;
  left: 0;
  bottom: 0.5rem;
  background-color: #0f3e85;
  transition: all ease-in-out 0.5s;
  margin: 0px 12px;
}
header .menu-area .main-menu ul > li:hover > a,
header .menu-area .main-menu ul > li:focus > a,
header .menu-area .main-menu ul > li:active > a,
header .menu-area .main-menu ul > li.active > a,
header .menu-area .main-menu ul > li.current-menu > a {
  color: #0f3e85;
}
header .menu-area .main-menu ul > li:hover > a:after,
header .menu-area .main-menu ul > li:focus > a:after,
header .menu-area .main-menu ul > li:active > a:after,
header .menu-area .main-menu ul > li.active > a:after,
header .menu-area .main-menu ul > li.current-menu > a:after,
header .menu-area .main-menu ul > li:hover > a:after,
header .menu-area .main-menu ul > li:focus > a:after,
header .menu-area .main-menu ul > li:active > a:after,
header .menu-area .main-menu ul > li.active > a:after,
header .menu-area .main-menu ul > li.current-menu > a:after {
  width: calc(100% - 24px);
  left: 0;
}
header .menu-area .main-menu ul > li:hover > div {
  display: flex;
}
.lang-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lang-container > a.lang-wrapper {
  background-color: #0f3e85;
  color: white;
  border-radius: 0.125rem;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
}
.lang-container:hover > ul {
  display: block;
}
.lang-container > ul {
  position: absolute;
  display: none;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 0.5rem 1rem;
  margin: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.lang-container > ul li {
  list-style: none;
  padding: 0.25rem;
  font-weight: 600;
}
footer {
  position: relative;
  color: white;
}
footer > div {
  padding: 2rem 0;
  background: #0f3e85;
  position: relative;
  z-index: 1;
}
footer .nano-medya {
  filter: brightness(0) invert(1);
}
footer a:hover {
  opacity: 0.75;
}
footer img {
  max-width: 320px;
}
footer ul {
  margin: 0;
  padding: 0.5rem 0;
}
footer ul li {
  list-style: none;
}
.kvkk {
  position: fixed;
  left: 15px;
  bottom: 15px;
  padding: 15px;
  background: #fff;
  color: black;
  width: 300px;
  border: 2px solid #ccc;
  border-radius: 10px;
  z-index: 999999999;
}
.kvkk a {
  color: #1f924b;
}
.kvkk .btn {
  font-size: 0.85em;
  outline: none;
  box-shadow: none;
  border-radius: 0px;
  background: #1f924b;
  color: #fff;
  padding: 5px 10px;
}
.kvkk .btn span {
  display: inline-block;
  margin-right: 5px;
}
.kvkk .btn:hover,
.kvkk .btn:focus,
.kvkk .btn:active {
  background: #166835;
}
#header.sticky {
  background: #ffffff;
  z-index: 1;
  left: 0;
  width: 100%;
  top: 0;
}
#header.sticky .logo-area img {
  height: 60px;
}
#header.sticky .main-menu ul li ul {
  padding-top: 36px;
}
.text-main {
  color: #0f3e85;
}
.text-main-2 {
  color: #1f924b;
}
h3 {
  font-size: 1.5rem;
}
.carousel .next,
.carousel .prev {
  background: #0f3e85;
  border-radius: 50%;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .next span,
.carousel .prev span {
  transform: scale(0.65);
}
.carousel .carousel-control-prev-icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTVweCIgaGVpZ2h0PSIxNXB4IiB2aWV3Qm94PSIwIDAgMTUgMTUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMCAxNEwzIDcuNUwxMCAxIiBzdHJva2U9IndoaXRlIiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+Cjwvc3ZnPgo=);
}
.carousel .carousel-control-next-icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTVweCIgaGVpZ2h0PSIxNXB4IiB2aWV3Qm94PSIwIDAgMTUgMTUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik01IDE0TDEyIDcuNUw1IDEiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiLz4KPC9zdmc+Cg==);
}
.carousel .carousel-control-next-icon,
.carousel .carousel-control-prev-icon {
  width: 2.5rem;
  height: 2.5rem;
}
.carousel .carousel-item {
  height: 550px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.carousel .carousel-item .illustration {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  animation: 3s ease-in-out 0.8s forwards opacity;
}
.carousel .carousel-item h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
.carousel .carousel-item .carousel-caption {
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  display: inline-table;
  max-width: 700px;
  color: black;
}
.carousel .carousel-item .carousel-caption .animated {
  animation-delay: 1s;
}
section.bg-light {
  background: rgba(15, 62, 133, 0.033333) !important;
}
.link-special {
  position: relative;
  text-decoration: none;
}
.link-special:hover,
.link-special:focus,
.link-special:active,
.link-special.active,
.link-special.current-menu {
  opacity: 0.8 !important;
  text-decoration: none;
}
.btn:before,
.btn:after {
  position: absolute;
  height: 200px;
  width: 200px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 9;
  transform: scale(0);
  content: "";
  transition: all 600ms ease;
}
.btn:hover:before {
  transform: scale(1);
  opacity: 0.2;
  transition-delay: 300ms;
}
.btn:hover:after {
  transform: scale(1.7);
  opacity: 0.1;
  transition-delay: 400ms;
}
.btn:hover {
  background-color: #0f3e85;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: white;
}
.btn-special-outline {
  border-radius: 0.25rem;
  padding: 0.35rem 2rem;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}
.btn-special-outline:hover {
  background: #000000;
  color: white;
}
.btn-special {
  border: 2px solid #0f3e85;
  border-radius: 0.25rem;
  padding: 0.35rem 1rem;
  background: #0f3e85;
  color: white;
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  display: inline-block;
  white-space: pre-wrap;
}
.btn-special-outline-white {
  border: 2px solid white;
  border-radius: 0.25rem;
  padding: 0.35rem 2rem;
  background: transparent;
  color: white;
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}
.btn-special-outline-white:hover {
  background: white;
  color: #0f3e85;
}
.mm.mm--dark {
  color: white;
  background: #1f924b;
}
.sec-title2 {
  color: #fff;
}
.sec-title {
  position: relative;
  padding-bottom: 40px;
}
.sec-title .title {
  position: relative;
  color: #0f3e85;
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}
.sec-title .title:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbbbbb;
}
.contact-section {
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.contact-section input,
.contact-section textarea {
  padding: 0.5rem;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  width: 100%;
  margin-top: 1rem;
  border-bottom: 2px solid rgba(15, 62, 133, 0.07);
  background: transparent;
  color: black;
}
.contact-section input:focus-visible,
.contact-section textarea:focus-visible {
  outline: 0;
  border-color: #0f3e85;
}
.contact-section .contact-info-wrapper {
  flex-direction: column;
  background-color: white;
  color: #0f3e85;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  position: relative;
  overflow: hidden;
}
.contact-section .contact-info-wrapper .contact-info {
  padding: 0.5rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.contact-section .contact-info-wrapper .contact-info span {
  text-align: center;
}
.contact-section .contact-info-wrapper:before,
.contact-section .contact-info-wrapper:after {
  position: absolute;
  height: 200px;
  width: 200px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 9;
  transform: scale(0);
  content: "";
  transition: all 600ms ease;
}
.contact-section .contact-info-wrapper:hover:before {
  transform: scale(1);
  opacity: 0.2;
  transition-delay: 300ms;
}
.contact-section .contact-info-wrapper:hover:after {
  transform: scale(1.7);
  opacity: 0.1;
  transition-delay: 400ms;
}
.contact-section .contact-info-wrapper:hover {
  background-color: #0f3e85;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: white;
}
.contact-section .contact-info-wrapper:hover .icon img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.contact-section .map {
  padding-top: 3rem;
}
.contact-section .map iframe {
  width: 100%;
  height: 20rem;
  border: 0;
}
.breadcrumb {
  height: 64px;
  margin-bottom: 0;
  background: white;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  color: black;
  padding: 0;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.breadcrumb .description {
  /*
  display: inline-flex;
  */
  height: auto;
  opacity: 0.8;
}
.breadcrumb .description h1 {
  text-transform: uppercase;
  font-size: 1rem;
  margin: 0;
}
.breadcrumb .description div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
.owl-carousel h3 {
  font-size: 1.3rem;
  margin: 0.25rem 0;
  text-align: center;
}
.border-bottom {
  border-bottom: 2px solid #0f3e85 !important;
  padding-bottom: 0.5rem;
  display: inline-block;
}
.owl-carousel,
.other-news {
  position: relative;
}
.owl-carousel .item,
.other-news .item {
  padding: 0.5rem;
  height: auto;
  align-self: stretch;
  display: flex;
}
.owl-carousel .item .card,
.other-news .item .card {
  border-width: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  margin: 0;
  border-radius: 0.35rem;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  height: auto;
  align-self: stretch;
  display: flex;
  width: 100%;
}
.owl-carousel .item .card img,
.other-news .item .card img {
  width: 100%;
}
.owl-carousel .item .card:hover,
.other-news .item .card:hover {
  transform: scale(1.01);
}
.owl-carousel .item .card a,
.other-news .item .card a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.owl-carousel .item .card .description,
.other-news .item .card .description {
  padding: 1.25rem;
  height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.owl-carousel .item .card .description p,
.other-news .item .card .description p {
  margin-bottom: 0;
  font-size: 1rem;
}
.owl-carousel .item .card .description h2,
.other-news .item .card .description h2 {
  font-size: 1.4rem;
}
.owl-carousel .item .card .time,
.other-news .item .card .time {
  position: absolute;
  z-index: 1;
  top: 0.75rem;
  right: 0.75rem;
  background-color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.owl-carousel .owl-prev,
.other-news .owl-prev,
.owl-carousel .owl-next,
.other-news .owl-next {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 50% !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #0f3e85 !important;
}
.owl-carousel .owl-prev i,
.other-news .owl-prev i,
.owl-carousel .owl-next i,
.other-news .owl-next i,
.owl-carousel .owl-prev svg,
.other-news .owl-prev svg,
.owl-carousel .owl-next svg,
.other-news .owl-next svg {
  color: #0f3e85;
  fill: #0f3e85;
}
.owl-carousel .owl-prev:hover,
.other-news .owl-prev:hover,
.owl-carousel .owl-next:hover,
.other-news .owl-next:hover {
  background-color: transparent !important;
  color: black !important;
}
.owl-carousel .owl-prev,
.other-news .owl-prev {
  left: -4rem;
}
.owl-carousel .owl-next,
.other-news .owl-next {
  right: -4rem;
}
nav .product-wrapper,
header .product-wrapper {
  margin-top: 1rem;
}
nav .product-wrapper h3,
header .product-wrapper h3 {
  font-size: 0.9rem;
}
.mm > li:last-child:after,
.mm > li:last-child:before {
  display: none;
}
.mm > li:last-child a {
  width: 33.33333333%;
  text-align: center;
}
.bg-pattern-1,
.bg-pattern-2 {
  overflow: hidden;
  position: relative;
}
.bg-pattern-1:before,
.bg-pattern-2:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/ui/pattern-2.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  opacity: 0.4;
  content: "";
}
.bg-pattern-2::before {
  transform: scale(-1);
}
.about-section .row > div {
  position: relative;
}
.about-section .row > div .video-link {
  position: absolute;
  left: 24px;
  top: 0;
  z-index: 1;
}
.about-section .row > div .video-link .play-btn {
  position: relative;
  display: inline-block;
  margin-top: 20%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: #0f3e85;
  text-align: center;
  background-color: #ffffff;
  line-height: 100px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
  font-size: 32px;
  transition: all 500ms ease;
  padding-left: 5px;
}
.about-section .row > div .video-link .play-btn:hover {
  transform: rotate(360deg);
}
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #fafafa;
  z-index: 999999999;
  background-image: url(../images/ui/page-loader.gif);
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: center;
}
img {
  max-width: 100%;
}
.top-features {
  margin-top: -100px;
}
.feature-block {
  position: relative;
  margin: 1rem 0;
}
.feature-block .inner-box {
  position: relative;
  padding: 1rem;
  background-color: #ffffff;
  background-image: url(../images/ui/pattern-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  height: 100%;
  border-radius: 0.5rem;
}
.feature-block .inner-box > img {
  position: relative;
  z-index: 20;
  border-radius: 0.5rem;
  height: 180px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.feature-block .inner-box h4 {
  font-size: 1.3rem;
}
.feature-block .inner-box ul {
  margin-bottom: 0;
  padding-left: 0;
}
.feature-block .inner-box ul li {
  list-style: none;
  display: flex;
  align-items: center;
}
.feature-block .inner-box ul li:hover:before {
  transform: translateX(0.25rem);
}
.feature-block .inner-box ul li:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tIFVwbG9hZGVkIHRvOiBTVkcgUmVwbywgd3d3LnN2Z3JlcG8uY29tLCBHZW5lcmF0b3I6IFNWRyBSZXBvIE1peGVyIFRvb2xzIC0tPgo8c3ZnIGZpbGw9IiMwMDAwMDAiIHdpZHRoPSI4MDBweCIgaGVpZ2h0PSI4MDBweCIgdmlld0JveD0iMCAwIDI0IDI0IiBpZD0icmlnaHQtMiIgZGF0YS1uYW1lPSJMaW5lIENvbG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJpY29uIGxpbmUtY29sb3IiPjxwb2x5bGluZSBpZD0icHJpbWFyeSIgcG9pbnRzPSI3LjUgMyAxNi41IDEyIDcuNSAyMSIgc3R5bGU9ImZpbGw6IG5vbmU7IHN0cm9rZTogcmdiKDAsIDAsIDApOyBzdHJva2UtbGluZWNhcDogcm91bmQ7IHN0cm9rZS1saW5lam9pbjogcm91bmQ7IHN0cm9rZS13aWR0aDogMjsiPjwvcG9seWxpbmU+PC9zdmc+);
  background-position: center;
  background-size: cover;
  margin-right: 0.25rem;
  position: relative;
  transition: 0.3s;
}
.feature-block .inner-box .icon {
  padding: 0.5rem 0;
}
.feature-block .inner-box .icon img {
  max-width: 64px;
}
.feature-block .inner-box:before,
.feature-block .inner-box:after {
  position: absolute;
  height: 200px;
  width: 200px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 9;
  transform: scale(0);
  content: "";
  transition: all 600ms ease;
}
.feature-block .inner-box:hover:before {
  transform: scale(1);
  opacity: 0.2;
  transition-delay: 300ms;
}
.feature-block .inner-box:hover:after {
  transform: scale(1.7);
  opacity: 0.1;
  transition-delay: 400ms;
}
.feature-block .inner-box:hover {
  background-color: #0f3e85;
  transform: translateY(-20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: white;
}
.feature-block .inner-box:hover ul li::before {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(228deg) brightness(103%) contrast(103%);
}
.doctor-wrapper {
  margin-top: 30px;
}
.doctor-wrapper .description {
  padding: 1.25rem;
}
.doctor-wrapper .description h3 {
  font-size: 1.3rem;
}
.doctor-wrapper .description p {
  font-size: 0.9rem;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.our-doctors .container {
  padding: 2rem 4rem;
}
.maps > div {
  display: none;
}
.maps > div.active {
  display: block;
}
.list-group-item {
  margin-top: 0.5rem;
  overflow: hidden;
  position: relative;
  background-color: white;
  color: #0f3e85;
  border-color: #0f3e85 !important;
  padding: 0;
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
}
.list-group-item:hover,
.list-group-item.active {
  background-color: #0f3e85;
  color: white;
}
.list-group-item a {
  padding: 0.5rem;
  white-space: normal;
  text-align: left;
  gap: 1rem;
  position: relative;
  z-index: 35;
}
.img-404 {
  max-width: 720px;
}
.video-section .item {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  background-color: white;
  border-radius: 0.5rem;
}
.video-section .item:hover .play-btn {
  transform: rotate(360deg);
}
.video-section .item .description {
  padding: 1rem;
}
.video-section .item .description h3 {
  margin-bottom: 0;
}
.video-section .item .img-wrapper {
  position: relative;
}
.video-section .item .img-wrapper .video-link {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 1;
}
.video-section .item .img-wrapper .video-link .play-btn {
  position: relative;
  display: inline-block;
  margin-top: 20%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #0f3e85;
  text-align: center;
  background-color: #ffffff;
  line-height: 76px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  transition: all 500ms ease;
  padding-left: 5px;
}
.video-content-section .video-link {
  top: 50%;
  left: 50%;
  display: inline-table;
  transform: translate(-50%, -50%);
}
.video-content-section .video-link .play-btn {
  margin: 0 !important;
}
.video-content-section img {
  width: 100%;
}
.video-content-section .item,
.video-list-section .item {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  background-color: white;
  border-radius: 0.5rem;
}
.video-content-section .item:hover .play-btn,
.video-list-section .item:hover .play-btn {
  transform: rotate(360deg);
}
.video-content-section .item .description,
.video-list-section .item .description {
  padding: 1rem;
}
.video-content-section .item .description p,
.video-list-section .item .description p {
  line-height: 1.05rem;
}
.video-content-section .item .img-wrapper,
.video-list-section .item .img-wrapper {
  position: relative;
}
.video-content-section .item .img-wrapper .video-link,
.video-list-section .item .img-wrapper .video-link {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 1;
}
.video-content-section .item .img-wrapper .video-link .play-btn,
.video-list-section .item .img-wrapper .video-link .play-btn {
  position: relative;
  display: inline-block;
  margin-top: 20%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #0f3e85;
  text-align: center;
  background-color: #ffffff;
  line-height: 76px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  transition: all 500ms ease;
  padding-left: 5px;
}
.responsive-iframe {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
}
.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.col-lg-3.order-1.order-lg-0 h2 {
  font-size: 1.4rem;
}
