@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Livvic:wght@400;500;600;700;900&display=swap");
@import url(../fonts/font.css);
* {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  list-style: none;
  box-sizing: border-box;
  outline: none;
  border: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-style: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  line-height: 1.2;
  scroll-behavior: smooth;
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  transition: all .3s ease-in-out;
  scroll-padding-top: 140px;
  background-color: #fff;
}

section {
  background-color: #fff;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

svg {
  width: 30px;
  height: 30px;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

::selection {
  color: #fff;
  background-color: #211a6a;
}

::-moz-selection {
  color: #fff;
  background-color: #211a6a;
}

::-webkit-scrollbar {
  width: 0.375rem;
}

::-webkit-scrollbar-thumb {
  background-color: #bbbbbb;
  border-radius: 0 6px 6px 0;
}

a {
  transition: 0.3s all ease-in-out;
  color: inherit;
}

p {
  font-size: 17px;
  font-weight: normal;
  margin-bottom: 15px;
  color: #777777;
  line-height: 26px;
}

p + p {
  margin-top: 10px;
}

img {
  max-width: 100%;
  height: auto;
  object-position: center;
  object-fit: cover;
}

.page-padding {
  padding: 70px 0;
}

.bg-theme {
  background: #211a6a;
}

header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #211a6a;
  z-index: 888;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header nav .logo-brand img {
  width: 197px;
  height: unset;
  margin-top: 9px;
  object-fit: contain;
  margin-left: 8px;
}
header nav ul.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
header nav ul.menu li {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
header nav ul.menu li:hover::before {
  color: #211a6a !important;
}
header nav ul.menu li:hover a {
  color: #211a6a !important;
}
header nav ul.menu li a {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  font-weight: 500;
  color: #fff;
  position: relative;
}
 
header nav ul.menu li ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  min-width: 250px;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  padding: 15px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease-in-out;
  z-index: 99;
}
header nav ul.menu li ul li {
  justify-content: flex-start;
}
header nav ul.menu li ul li a {
  color: #000;
  padding: 10px 15px;
}
header nav ul.menu li ul li a:hover {
  color: #211a6a;
}
header nav ul.menu li.submenu-custom {
  transition: all 0.3s ease-in-out;
}
header nav ul.menu li.submenu-custom::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
header nav ul.menu li.submenu-custom ul {
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0 0;
}
header nav ul.menu li.submenu-custom ul li a::before {
  content: unset !important;
}
header nav ul.menu li.submenu-custom:hover::before {
  content: "-";
  transition: all 0.3s ease-in-out;
}
header nav ul.menu li.submenu-custom:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  height: max-content;
}

.right-col {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.right-col .search {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.humburger {
  max-width: 45px;
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  height: auto;
  padding: 0;
  width: 100%;
  text-transform: uppercase;
  transition: right 0.3s ease-in-out 0s;
}
.humburger span {
  height: 5px;
  width: 5px;
  display: block;
  background: #ffffff;
  border-radius: 50%;
  list-style: none;
  transition: all 0.3s ease;
  margin: 2px 3px;
}
.humburger .dot2,
.humburger .dot4,
.humburger .dot6,
.humburger .dot8 {
  background-color: #fff300 !important;
}

.right_menu_togle {
  background-image: linear-gradient(90deg, #fff 0%, #ffffff 100%);
  padding: 50px;
  width: 500px;
  right: -500px;
  height: 100%;
  z-index: 10;
  transition: all 0.3s ease;
  position: fixed;
}
.right_menu_togle .close-btn .nav-link {
  position: absolute;
  right: 25px;
  top: 25px;
}
.right_menu_togle .close-btn .nav-link .humburger {
  max-width: 45px;
  display: flex !important;
  flex-wrap: wrap;
  margin: -5px;
}
.right_menu_togle .close-btn .nav-link .humburger span {
  color: #000;
  background-color: #000;
}
.right_menu_togle .canvas-contact .address-area .address-list {
  display: flex;
  margin-top: 18px;
}
.right_menu_togle
  .canvas-contact
  .address-area
  .address-list
  .info-content
  .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #101010;
  margin-bottom: 5px;
}
.right_menu_togle .canvas-contact .address-area .address-list .info-content em {
  display: block;
  font-style: normal;
  line-height: 22px;
  font-size: 15px;
  font-weight: 500;
}
.right_menu_togle
  .canvas-contact
  .address-area
  .address-list
  .info-content
  em
  a {
  color: #101010;
}
.right_menu_togle .canvas-contact .social {
  margin: 50px 0 0;
}
.right_menu_togle .canvas-contact .social li {
  display: inline-block;
  padding-right: 10px;
}
.right_menu_togle .canvas-contact .social li a:hover {
  opacity: 0.82;
}
.right_menu_togle .canvas-contact .social li a i {
  font-size: 15px;
  color: #fff;
  text-align: center;
  background: #032390;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 3px;
}
.right_menu_togle .canvas-logo {
  padding-left: 0;
  padding-bottom: 25px;
}
.right_menu_togle .canvas-logo img {
  width: 100%;
  height: unset;
  max-width: 200px;
  object-fit: contain;
}

.nav-expander {
  background: transparent;
  color: #ffffff;
  display: block;
  font-size: 16px;
  font-weight: 400;
  height: auto;
  margin-right: 0;
  padding: 0;
  right: 0;
  text-decoration: none;
  text-transform: uppercase;
  top: 0;
  transition: right 0.3s ease-in-out 0s;
  width: auto;
  z-index: 12;
}

.offwrap {
  cursor: url(../img/icon/close.png), auto;
  width: 100%;
  left: 100%;
  transition: all 0.8s ease-out 0s;
  position: fixed;
  background: rgba(255, 255, 255, 0.3);
  height: 100vh;
  top: 0;
  bottom: 0;
  z-index: 1000;
  backdrop-filter: blur(2px);
}

.header.sticky .offwrap {
  z-index: 1002;
}

.header.sticky .right_menu_togle {
  z-index: 1002;
}

.offwrap.active {
  left: 0;
  transition: all 0.8s ease-out 0s;
}

.right_menu_togle.active {
  right: 0;
}

@media screen and (max-width: 1000px) {
  .humburger {
    display: none;
  }
}
.search-toggle {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background-color: #211a6a;
  opacity: 0;
  visibility: hidden;
  scale: 0.9;
  transition: all 0.2s ease-in-out;
}
.search-toggle .container {
  max-width: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.search-toggle .container form {
  width: 100%;
}
.search-toggle .container .form-group {
  width: 100%;
}
.search-toggle .container .form-group input {
  height: 40px;
  background-color: transparent;
  padding: 10px 20px;
  color: #fff;
  border: unset;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  font-size: 17px;
  font-weight: 500;
}
.search-toggle .container .form-group input::placeholder {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}
.search-toggle .container .form-group input:focus {
  box-shadow: unset;
}
.search-toggle .close-search-toggle {
  position: fixed;
  right: 2rem;
  top: 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  color: #fff;
}

.search-toggle.active {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

.menu-link-a.active::before {
  height: 23px;
}

.header.sticky {
  background: #fff;
  position: fixed;
  z-index: 999 !important;
  margin: 0 auto;
  border: none;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  animation-duration: 0.5s;
  animation-name: sticky-animation;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.header.sticky nav ul.menu li a {
  color: #000;
}
.header.sticky nav ul.menu li.submenu-custom::before {
  color: #000;
}
.header.sticky .right-col .search {
  color: #000;
}
.header.sticky .humburger span {
  background-color: #000;
}

@keyframes sticky-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.normal-logo {
  display: none;
}

.header.sticky .logo-brand img {
  margin-top: 0;
}
.header.sticky .normal-logo {
  display: block;
}
.header.sticky .white-logo {
  display: none;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu {
  position: fixed;
  left: -100%;
  top: 0;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  width: 300px;
  padding: 50px 20px;
  transition: 400ms;
  box-shadow: 0 25px 70px 0 rgba(0, 0, 0, 0.07);
}
.mobile-menu img {
  max-width: 204px;
  margin-bottom: 34px;
  display: none;
}
.mobile-menu li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
}
.mobile-menu li ul {
  margin-left: 20px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  transition: all 0.3s ease-in-out;
}
.mobile-menu li.submenu-custom {
  position: relative;
}
.mobile-menu li.submenu-custom:hover::before {
  color: #211a6a;
}
.mobile-menu li.submenu-custom::before {
  content: "+";
  right: 5px;
  position: absolute;
  font-size: 20px;
  top: -3px;
}
.mobile-menu li + li {
  margin-top: 15px;
}

#top-bar__navigation-toggler {
  display: inline-flex;
  color: #fff;
  position: relative;
  top: 3px;
  outline: none;
  transition: color 0.2s linear;
}

.trigger {
  width: 65px;
  cursor: pointer;
  transition: transform 400ms;
  user-select: none;
  transform: scaleY(0.7);
  overflow: visible;
  height: 100%;
}
.trigger .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
}

.trigger .line.top {
  stroke-dasharray: 40 160;
}

.trigger .line.middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

.trigger .line.bottom {
  stroke-dasharray: 30 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

#top-bar__navigation-toggler.active .trigger {
  transform: rotate(45deg);
}

#top-bar__navigation-toggler.active .trigger .line.top {
  stroke-dashoffset: -64px;
}

#top-bar__navigation-toggler.active .trigger .line.middle {
  transform: rotate(90deg);
}

#top-bar__navigation-toggler.active .trigger .line.bottom {
  stroke-dashoffset: -64px;
}

.hide-object-desktop {
  display: none !important;
}

.header.sticky .trigger path {
  stroke: #000;
}

@media screen and (max-width: 1200px) {
  .hide-object-desktop {
    display: inline-flex !important;
  }

  header nav ul.menu {
    display: none;
  }

  .submenu-custom.active ul {
    max-height: 100%;
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
.swiper.homeSlider {
  width: 100%;
  height: 100vh !important;
  position: relative;
}
.swiper.homeSlider video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
}
.swiper.homeSlider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: relative;
}
.swiper.homeSlider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bacground-transparent {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.text-slide.custom__container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  text-align: left;
}

.text-slide p:first-child {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #211a6a;
  display: block;
  text-align: center;
  margin: 0 0 15px 0;
}

.text-slide h1 {
  font-size: 45px !important;
  text-align: left;
  font-style: normal;
  line-height: 1.4;
  font-weight: 800;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  color: white;
  z-index: auto;
  filter: none;
  margin-top: 15px;
}

.text-slide.container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  text-align: left;
  display: grid;
  place-items: center;
}

.text-slide p.desc-slide {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  color: #ffffff;
  margin: 0 40px 54px 0;
  text-align: center;
  max-width: 500px;
}

.text-slide a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
  background-color: transparent;
  padding: 14px 40px 14px 40px;
  background-image: linear-gradient(220deg, #006186 0%, #211a6a 79%);
  border-radius: 30px 30px 30px 30px;
  transition: all 0.4s ease-in-out;
}
.text-slide a:hover {
  background-image: linear-gradient(220deg, #006186 0%, #211a6a 99%);
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.color-black {
  color: #333;
}

 
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header nav .logo-brand img {
  width: 170px;
  height: unset;
  margin-top: 15px;
  object-fit: contain;
}
header nav ul.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
header nav ul.menu li {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
 
header nav ul.menu li:hover a {
  color: #a9a208 !important;
}

.header.sticky nav ul.menu li a:hover {
    color: #211a6a !important;
}

header nav ul.menu li a {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  font-weight: 500;
  color: #fff;
  position: relative;
}
 
header nav ul.menu li ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  min-width: 250px;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  padding: 15px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease-in-out;
  z-index: 99;
}
header nav ul.menu li ul li {
  justify-content: flex-start;
}
header nav ul.menu li ul li a {
  color: #000;
  padding: 10px 15px;
}
header nav ul.menu li ul li a:hover {
  color: #211a6a;
}
header nav ul.menu li.submenu-custom {
  transition: all 0.3s ease-in-out;
}
header nav ul.menu li.submenu-custom::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
header nav ul.menu li.submenu-custom ul {
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0 0;
}
header nav ul.menu li.submenu-custom ul li a::before {
  content: unset !important;
}
header nav ul.menu li.submenu-custom:hover::before {
  content: "-";
  transition: all 0.3s ease-in-out;
}
header nav ul.menu li.submenu-custom:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  height: max-content;
}

.right-col {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.right-col .search {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.humburger {
  max-width: 45px;
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  height: auto;
  padding: 0;
  width: 100%;
  text-transform: uppercase;
  transition: right 0.3s ease-in-out 0s;
}
.humburger span {
  height: 5px;
  width: 5px;
  display: block;
  background: #ffffff;
  border-radius: 50%;
  list-style: none;
  transition: all 0.3s ease;
  margin: 2px 3px;
}
.humburger .dot2,
.humburger .dot4,
.humburger .dot6,
.humburger .dot8 {
  background-color: #fff300 !important;
}

.right_menu_togle {
  background-image: linear-gradient(90deg, #fff 0%, #ffffff 100%);
  padding: 50px;
  width: 500px;
  right: -500px;
  height: 100%;
  z-index: 10002;
  transition: all 0.3s ease;
  position: fixed;
}
.right_menu_togle .close-btn .nav-link {
  position: absolute;
  right: 25px;
  top: 25px;
}
.right_menu_togle .close-btn .nav-link .humburger {
  max-width: 45px;
  display: flex !important;
  flex-wrap: wrap;
  margin: -5px;
}
.right_menu_togle .close-btn .nav-link .humburger span {
  color: #000;
  background-color: #000;
}
.right_menu_togle .canvas-contact .address-area .address-list {
  display: flex;
  margin-top: 18px;
}
.right_menu_togle
  .canvas-contact
  .address-area
  .address-list
  .info-content
  .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #101010;
  margin-bottom: 5px;
}
.right_menu_togle .canvas-contact .address-area .address-list .info-content em {
  display: block;
  font-style: normal;
  line-height: 22px;
  font-size: 15px;
  font-weight: 500;
}
.right_menu_togle
  .canvas-contact
  .address-area
  .address-list
  .info-content
  em
  a {
  color: #101010;
}
.right_menu_togle .canvas-contact .social {
  margin: 50px 0 0;
}
.right_menu_togle .canvas-contact .social li {
  display: inline-block;
  padding-right: 10px;
}
.right_menu_togle .canvas-contact .social li a:hover {
  opacity: 0.82;
}
.right_menu_togle .canvas-contact .social li a i {
  font-size: 15px;
  color: #fff;
  text-align: center;
  background: #032390;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 3px;
}
.right_menu_togle .canvas-logo {
  padding-left: 0;
  padding-bottom: 25px;
}
.right_menu_togle .canvas-logo img {
  width: 100%;
  height: unset;
  max-width: 200px;
  object-fit: contain;
}

.nav-expander {
  background: transparent;
  color: #ffffff;
  display: block;
  font-size: 16px;
  font-weight: 400;
  height: auto;
  margin-right: 0;
  padding: 0;
  right: 0;
  text-decoration: none;
  text-transform: uppercase;
  top: 0;
  transition: right 0.3s ease-in-out 0s;
  width: auto;
  z-index: 12;
}

.offwrap {
  cursor: url(../img/icon/close.png), auto;
  width: 100%;
  left: 100%;
  transition: all 0.8s ease-out 0s;
  position: fixed;
  background: rgba(255, 255, 255, 0.3);
  height: 100vh;
  top: 0;
  bottom: 0;
  z-index: 10002;
  backdrop-filter: blur(2px);
}

.offwrap.active {
  left: 0;
  transition: all 0.8s ease-out 0s;
}

.right_menu_togle.active {
  right: 0;
}

@media screen and (max-width: 1000px) {
  .humburger {
    display: none;
  }
}
.search-toggle {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background-color: #211a6a;
  opacity: 0;
  visibility: hidden;
  scale: 0.9;
  transition: all 0.2s ease-in-out;
}
.search-toggle .container {
  max-width: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.search-toggle .container form {
  width: 100%;
}
.search-toggle .container .form-group {
  width: 100%;
}
.search-toggle .container .form-group input {
  height: 40px;
  background-color: transparent;
  padding: 10px 20px;
  color: #fff;
  border: unset;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  font-size: 17px;
  font-weight: 500;
}
.search-toggle .container .form-group input::placeholder {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}
.search-toggle .container .form-group input:focus {
  box-shadow: unset;
}
.search-toggle .close-search-toggle {
  position: fixed;
  right: 2rem;
  top: 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  color: #fff;
}

.search-toggle.active {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

.menu-link-a.active::before {
  height: 23px;
}

.header.sticky {
  background: #fff;
  position: fixed;
  z-index: 999;
  margin: 0 auto;
  border: none;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  animation-duration: 0.5s;
  animation-name: sticky-animation;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.header.sticky nav ul.menu li a {
  color: #000;
}
.header.sticky nav ul.menu li.submenu-custom::before {
  color: #000;
}
.header.sticky .right-col .search {
  color: #000;
}
.header.sticky .humburger span {
  background-color: #000;
}

@keyframes sticky-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.normal-logo {
  display: none;
}

.header.sticky .logo-brand img {
  margin-top: 0;
}
.header.sticky .normal-logo {
  display: block;
}
.header.sticky .white-logo {
  display: none;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu {
  position: fixed;
  left: -100%;
  top: 0;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  width: 300px;
  padding: 50px 20px;
  transition: 400ms;
  box-shadow: 0 25px 70px 0 rgba(0, 0, 0, 0.07);
}
.mobile-menu img {
  max-width: 204px;
  margin-bottom: 34px;
}
.mobile-menu li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
}
.mobile-menu li ul {
  margin-left: 20px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  transition: all 0.3s ease-in-out;
}
.mobile-menu li.submenu-custom {
  position: relative;
}
.mobile-menu li.submenu-custom:hover::before {
  color: #211a6a;
}
.mobile-menu li.submenu-custom::before {
  content: "+";
  right: 5px;
  position: absolute;
  font-size: 20px;
  top: -3px;
}
.mobile-menu li + li {
  margin-top: 15px;
}

#top-bar__navigation-toggler {
  display: inline-flex;
  color: #fff;
  position: relative;
  top: 3px;
  outline: none;
  transition: color 0.2s linear;
}

.trigger {
  width: 65px;
  cursor: pointer;
  transition: transform 400ms;
  user-select: none;
  transform: scaleY(0.7);
  overflow: visible;
  height: 100%;
}
.trigger .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
}

.trigger .line.top {
  stroke-dasharray: 40 160;
}

.trigger .line.middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

.trigger .line.bottom {
  stroke-dasharray: 30 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

#top-bar__navigation-toggler.active .trigger {
  transform: rotate(45deg);
}

#top-bar__navigation-toggler.active .trigger .line.top {
  stroke-dashoffset: -64px;
}

#top-bar__navigation-toggler.active .trigger .line.middle {
  transform: rotate(90deg);
}

#top-bar__navigation-toggler.active .trigger .line.bottom {
  stroke-dashoffset: -64px;
}

.hide-object-desktop {
  display: none !important;
}

.header.sticky .trigger path {
  stroke: #000;
}

@media screen and (max-width: 1200px) {
  .hide-object-desktop {
    display: inline-flex !important;
  }

  header nav ul.menu {
    display: none;
  }

  .submenu-custom.active ul {
    max-height: 100%;
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
.swiper.homeSlider {
  width: 100%;
  height: 90vh;
  position: relative;
}
.swiper.homeSlider video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
}
.swiper.homeSlider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: relative;
}
.swiper.homeSlider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bacground-transparent {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.text-slide.custom__container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  text-align: left;
}

.text-slide p:first-child {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #211a6a;
  display: block;
  margin: 0 0 15px 0;
}

 

.text-slide.container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  text-align: left;
}

.text-slide p.desc-slide {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  color: #ffffff;
  margin: 0 40px 54px 0;
  max-width: 500px;
}

.text-slide a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
  background-color: transparent;
  padding: 14px 40px 14px 40px;
  background-image: linear-gradient(220deg, #006186 0%, #211a6a 79%);
  border-radius: 30px 30px 30px 30px;
  transition: all 0.4s ease-in-out;
}
.text-slide a:hover {
  background-image: linear-gradient(220deg, #006186 0%, #211a6a 99%);
}

.valign {
  display: flex;
  align-items: center;
}

.cmd-padding {
  padding: 0 10px;
}

.about .img-mons .img1,
.about .img-mons .img2,
.about .img-mons .img3 {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.about .img-mons .img1 img,
.about .img-mons .img2 img,
.about .img-mons .img3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about .img-mons .img2 {
  height: 240px;
}

.about .img-mons .img3 {
  width: 75%;
  margin-top: 20px;
}

.about .sub-title {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
.about .sub-title h6 {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about .sub-title span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #211a6a;
  position: absolute;
  left: 6px;
  bottom: 5px;
}
.about .sub-title span:first-of-type {
  bottom: 11px;
}
.about .sub-title span:last-of-type {
  left: 0px;
}
.about .main-title {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 35px;
}
.about p {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
}
.about .ftbox ul {
  margin: 0;
  gap: 20px;
  display: flex;
}
.about .ftbox ul li {
  width: 100%;
  padding: 35px 25px;
  text-align: center;
  background: #f7f7f7;
  border-radius: 5px;
  position: relative;
}
.about .ftbox ul li .icon {
  color: #211a6a;
  font-size: 30px;
  margin-bottom: 20px;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}
.about .ftbox ul li .icon img {
  width: 100%;
  height: 100%;
}
.about .ftbox ul li h6 {
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 1px;
  font-weight: 500;
}
.about .ftbox ul li h6 a {
  color: inherit;
}
.about .ftbox ul li .dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  right: 10px;
  bottom: 12px;
  opacity: 0.1;
}
.about .ftbox ul li .dots span:first-of-type {
  bottom: 18px;
}
.about .ftbox ul li .dots span:last-of-type {
  right: 16px;
}

.clients .sec-head {
  position: relative;
  margin: 0 auto 80px;
}
.clients .sec-head h6 {
  color: #211a6a;
  font-weight: 300;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 10px;
}
.clients .sec-head h3 {
  font-size: 49px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 8px rgba(0, 0, 0, 0.05);
}
.clients .item {
  margin-bottom: 30px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  height: 160px;
  line-height: 160px;
}
.clients .item .img {
  position: relative;
}
.clients .item .img img {
  transition: all 0.4s;
  max-width: 120px;
  margin: 0 auto -15px auto;
}
.clients .item .img .link {
  font-size: 15px;
  width: max-content;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s;
  color: #000;
}

.clients .brands:hover .link {
  opacity: 1 !important;
  transition: all 0;
}

.clients .brands:hover img {
  transform: scale(0);
  opacity: 0;
}

.blog__item {
  display: block;
    position: relative;
}
.blog__item .img-box {
  position: relative;
    width: 100%;
    height: 395px;
    overflow: hidden;
}
.blog__item .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
 
  background-size: cover;
}
.blog__item .img-box img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog__item .blog__info {
  position: relative;
    width: 100%;
    bottom: 0px;
    right: 0;
    margin-left: 0px;
    background: linear-gradient(94deg, rgba(33, 26, 106, 0.88) 45%, rgba(33, 26, 106, 0.01) 93%);
    z-index: 1;
    padding: 14px;
    top: -89px;
}
.blog__item .blog__info h5 {
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
}
.blog__item .blog__info h5 a {
  display: block;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.2;
  color: #fff;
  
  margin-bottom: 10px;
 
}
.blog__item .blog__info h5 a:hover {
  color: #555;
}
.blog__item:hover {
  cursor: pointer;
}
.blog__item:hover .blog__btn {
  color: #2c2c2c;
}
.blog__item:hover .blog__btn i {
  transform: translate(20px, -20px) rotate(-45deg);
}
.blog__item:hover .blog__btn span::after {
  opacity: 1;
  visibility: visible;
  transform: translate(20px, -20px) rotate(-45deg);
}
.blog__item:hover .img-box img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog__item:hover .img-box img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}

.blog__meta {
  font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    color: #27016e;
    margin-bottom: 10px;
    background: white;
    width: 110px;
    border-radius: 0px;
    margin-left: -14px;
    padding-left: 14px;
    margin-top: -3px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}
.blog__meta a {
  color: #555;
  transition: all 0.3s;
}

.blog__btn {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #555;
  text-transform: capitalize;
  position: relative;
}
.blog__btn span {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: -28px;
}
.blog__btn span::after {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  left: -20px;
  bottom: -20px;
  transform: translate(0, 0) rotate(-45deg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.blog__btn span i {
  transform: translate(0, 0) rotate(-45deg);
  transition: all 0.5s;
}

.blogCarousel .swiper-button-next,
.blogCarousel .swiper-button-prev {
  width: 35px;
  height: 35px;
  border: 1px solid #555;
}
.blogCarousel .swiper-button-next::after,
.blogCarousel .swiper-button-prev::after {
  font-size: 18px;
  color: #555;
}
.blogCarousel .swiper-button-prev {
  border-color: #fff !important;
}
.blogCarousel .swiper-button-prev::after {
  color: #fff !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .img-box {
    height: 425px;
  }

  .blog__info {
    width: 70%;
  }
}
.slider-wrap.homecarousel .swiper-wrapper {
  z-index: 0;
}

.project-item {
  padding: 0 0 70px 0;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  height: 238px;
}
.project-item a {
  display: block;
}
.project-item img {
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 1;
}
.project-item .thumb-info {
     position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 31px 16px 21px;
    z-index: 2;
    background: linear-gradient( to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 69%) 100% );
    transition: all 200ms linear;
}
.project-item .thumb-info h3 {
 text-align: left;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 21px;
    letter-spacing: -1px;
    font-family: "Poppins", sans-serif;
    text-transform: none;
    position: relative;
}
.project-item .thumb-info h3::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -40px;
  top: -20px;
  width: 0px;
  background: rgba(255, 255, 255, 0.51);
}
.project-item .thumb-info h3 a {
  color: #fff;
}
.project-item .thumb-info h3 p {
  color: #fff;
  opacity: 0.6;
  font-weight: 900;
  text-align: left;
  font-size: 12px;
  line-height: 24px;
  padding-bottom: 10px;
}
.project-item .thumb-info .btn {
  padding: 25px 50px;
  position: relative;
  margin-top: 10px;
  font-size: 0.66em;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s linear;
  color: #fff;
  background: #292929;
  border: unset;
  border-radius: 0;
  letter-spacing: 0.4px;
  float: left;
}
.project-item .thumb-info .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  height: 1px;
  width: 0;
  transition: all 0.3s linear;
  background-color: #fff;
}
.project-item .thumb-info .btn:hover {
  border: unset;
  padding-left: 60px;
}
.project-item .thumb-info .btn:hover::before {
  width: 20px;
}



.slider-wrap .swiper-slide {
  background: #fff;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-wrap.homecarousel .swiper-scrollbar {
  position: relative !important;
  margin-top: -20px;
  bottom: 30px;
  left: 0;
}

.scroll-page {
  position: absolute;
  display: block;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, -50%);
  z-index: 100;
  filter: invert(1);
  animation: scrollAnimation 3s infinite linear;
}

@keyframes scrollAnimation {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 20px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 991px) {
  .sec-head.mb-0 {
    margin-bottom: 80px !important;
  }

  .sec-head h3 br {
    display: none;
  }
}
.splitting span {
  display: inline-block;
}

.clients .brands:hover .char {
  animation: fadeInUp 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation-delay: calc(20ms * var(--char-index));
}

.splitting.animated .char {
  animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation-delay: calc(30ms * var(--char-index));
}

.splitting .whitespace {
  width: 5px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.lqd-highlight {
  display: inline-block;
  padding: 0 0.125em;
  position: relative;
  color: inherit;
  background: inherit;
}

.lqd-highlight-txt {
  position: relative;
  z-index: 1;
}

.lqd-highlight-inner {
  bottom: -0.125em;
  transform: scale(1, 1) !important;
}

.lqd-highlight .lqd-highlight-inner {
  opacity: 1 !important;
}

.lqd-highlight .lqd-highlight-inner {
  height: auto;
  bottom: -0.5em;
  background: 0 0;
  color: inherit;
  opacity: 1 !important;
  transform: none !important;
  transform-origin: left center;
  transition: transform 3s, opacity 3s, height 3s, bottom 3s, color 0.45s;
  transition-timing-function: cubic-bezier(0.3, 0.8, 0.35, 1);
  left: 0;
  z-index: 0;
  position: absolute;
  width: 100%;
  display: inline-block;
}

.lqd-highlight .lqd-highlight-brush-svg,
.lqd-highlight .lqd-highlight-brush-svg-alt {
  width: 100%;
  height: auto;
  max-height: 0.475em;
  position: relative;
  transition-delay: inherit;
  fill: #00b7ea !important;
}

.lqd-highlight-custom-underline-alt .lqd-highlight .lqd-highlight-brush-svg {
  display: none;
}

.lqd-highlight-custom-underline .lqd-highlight svg {
  display: block;
}

.lqd-highlight .lqd-highlight-brush-svg-alt {
  width: 100%;
  height: auto;
  max-height: 0.475em;
  position: relative;
  transition-delay: inherit;
  fill: #fcbe0e !important;
}

.lqd-highlight .lqd-highlight-brush-svg-alt > path {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: clip-path 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.lqd-highlight .lqd-highlight-pen {
  opacity: 1;
  animation: penAnimation 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.lqd-unit-animation-done .lqd-highlight .lqd-highlight-brush-svg > path {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.lqd-highlight .lqd-highlight-brush-svg > path {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: clip-path 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: inherit;
}

.lqd-highlight-pen {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(100% - 45px);
  right: calc(100% - 25px);
  opacity: 0;
}

.lqd-highlight .lqd-highlight-pen {
  fill: currentColor;
}

/*.lqd-highlight svg {
  display: none;
}*/
@keyframes penAnimation {
  0% {
    right: calc(100% - 15px);
    transform: translateY(-7px) rotateZ(-45deg);
  }
  25% {
    transform: translateY(-12px) rotateZ(-15deg);
  }
  100% {
    transform: translateY(0) rotateZ(0);
    right: -25px;
  }
}
.imago {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: all 0.8s;
  transition-delay: 0.3s;
}

.imago.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.basic-intro {
  position: relative;
  z-index: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.basic-intro .title {
  margin: 0;
  color: #1a1a20;
  font-size: 3.2rem;
  font-weight: 700;
}
.basic-intro .title .text-1,
.basic-intro .title .text-2 {
  color: #1a1a20;
}

.text-italic {
  font-style: italic;
}

.text-outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}

.animated-underline {
  position: relative;
  z-index: 1;
  padding: 0;
  display: inline-block;
  background: none;
  text-decoration: none;
  color: inherit;
}

.animated-underline::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 0;
  height: 30%;
  background-color: #211a6a;
}

.primary {
  --color: $primary-color !important;
}

.animated-underline.active::before,
.parent:hover .animated-underline::before {
  animation: width-animation 0.5s forwards;
}

@keyframes width-animation {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.basic-intro .description:last-child {
  margin-bottom: 0;
}

.basic-intro .description {
  margin: 1.5rem 0;
  color: #8f93a5;
  font-size: 1.2rem;
  font-weight: 400;
}

.simpleParallax {
  height: 340px;
  position: relative;
}
.simpleParallax::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/black-sty.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: invert(1);
  mix-blend-mode: lighten;
  z-index: 1;
}

.musk_section .block_musk {
  position: relative;
  z-index: 0;
  margin-bottom: 50px;
}
.musk_section .block_musk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.urunler-box {
  position: relative;
}
.urunler-box .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
}
.urunler-box .background img {
  height: 100%;
}
.urunler-box .left-box {
  z-index: 2;
  padding: 50px 60px;
  height: 550px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.urunler-box .left-box .content {
  width: 100%;
  max-width: 400px;
}
.urunler-box .left-box p {
  color: #fff;
}
.urunler-box .right-box {
  height: 550px;
  display: flex;
  margin-left: -60px;
  align-items: center;
}
.urunler-box .right-box .swiper {
  width: 100%;
}
.urunler-box .right-box .swiper-slide a {
  height: 400px;
}
.urunler-box .buttons {
  display: flex;
  gap: 20px;
}
.urunler-box .buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.urunler-box .buttons button:hover {
  border-color: #211a6a;
  color: #211a6a;
}
.urunler-box .buttons .prev-btn span {
  transform: rotate(-180deg);
}

.urun-box {
  display: block;
  background-color: #fff;
  
  box-shadow: 0 12px 30px rgba(197, 205, 216, 0.3);
}
.urun-box img {
  height: 300px;
  width: 100%;
}
.urun-box .urun-box_content {
  position: relative;
}
.urun-box .urun-box_content .urun-box__arrow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  font-size: 32px;
  left: 36px;
  border-radius: 50%;
  background-color: #005395;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 0;
  transform: translateY(-62%);
  transition: background-color 0.3s linear, box-shadow 0.3s linear;
  box-shadow: 0 5px 10px rgba(0, 83, 149, 0.3);
}
.urun-box .urun-box_content .urun-box__arrow img {
  width: 32px;
  height: 32px;
}
.urun-box .urun-box_content .urun-box__title {
  padding: 20px 20px 20px 20px;
  font-size: 21px;
  line-height: 1;
  font-weight: 600;
  transition: color 0.2s linear 0s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.urun-box .urun-box_content .urun-box__title i {
  font-size: 19px;
}

.blocktitle__subtitle {
  color: #00aeff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.blocktitle__title {
  color: #fff;
  font-size: 36px;
  line-height: 1.45;
  font-weight: 600;
  margin-top: 28px;
  padding-bottom: 29px;
}

@media screen and (max-width: 1000px) {
  .urunler-container .container-fluid {
    padding: 0;
  }

  .urunler-box .background {
    width: 100%;
    height: 280px;
    padding: 0;
  }
  .urunler-box .background img {
    width: 100%;
  }
  .urunler-box .buttons {
    display: none;
  }
  .urunler-box .left-box {
    height: 280px;
  }
  .urunler-box .left-box .content {
    max-width: 100%;
  }
  .urunler-box .left-box .content .blocktitle__title {
    font-size: 25px;
    margin-top: 7px;
    padding-bottom: 6px;
  }
  .urunler-box .right-box {
    margin-left: 0;
    padding: 0 20px;
    margin-top: -30px;
    height: max-content;
  }
}
.funfacts-section {
  width: 100%;
  height: 100%;
  background-color: #f7f7f5;
}
.funfacts-section .section_heading {
  position: relative;
  z-index: 1;
}
.funfacts-section .section_heading span.section_heading_title_small {
  color: #211a6a;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  line-height: 29px;
}
.funfacts-section .section_heading h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #003b5a;
}
.funfacts-section .section_heading p {
  font-size: 16px;
  color: #6e6e6e;
  line-height: 1.8;
}

.row.no-gutters {
  margin: 0;
}
.row.no-gutters > * {
  padding: 0;
}

.funfact-block {
  background: #ffffff;
  box-shadow: 0px 2px 70px rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 50px 50px 30px;
  align-items: center;
  height: 100%;
  position: relative;
}

.funfact-block.style-2 {
  padding: 50px 30px 30px;
}

.funfact-icon {
  width: 90px;
  height: 90px;
  background: #211a6a;
  border-radius: 180px;
  text-align: center;
  line-height: 100px;
  color: #fff;
  font-size: 35px;
  margin-right: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.funfact-icon img {
  width: 35px;
  height: 35px;
}

.funfact-block.style-2 .funfact-icon {
  background: rgba(0, 174, 239, 0.15);
  color: #211a6a;
}

p.funfact-title {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: #003a58;
  margin-bottom: 20px;
}

.funfact-block.alt {
  background: #003a58;
}

.alt.style-2 .funfact-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.alt.style-2 .funfact-icon img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(39deg) brightness(111%)
    contrast(101%);
}

h2.funfact-number-prefix,
h2.funfact-number {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
}

.alt h2.funfact-number-prefix,
.alt h2.funfact-number {
  color: #fff;
}

.alt p.funfact-title {
  color: #fff;
}

.proje-img-box {
  width: max-content;
  margin: 0 auto;
  position: relative;
}
.proje-img-box .proje-tooltip {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 40%;
  top: 50%;
  width: 18px;
  height: 18px;
  background-color: #211a6a;
  border-radius: 50%;
  cursor: pointer;
  animation: zoomTooltip 1.2s infinite linear;
  
}

.proje-img-box .proje-tooltip:hover{
  width: max-content;
  height: max-content;
  animation: unset !important;
  border-radius: 12px !important;
  background-color: #fff !important;
  z-index: 100;
}

.proje-img-box .proje-tooltip:hover .content {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.proje-img-box .proje-tooltip .content {
  width: 100%;
  max-width: 400px;
  display: block;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 16px;
  margin-top: 20px;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: 0 0 0;
}
.proje-img-box .proje-tooltip .content:hover {
  color: #211a6a;
}
.proje-img-box .proje-tooltip .content h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 15px;
}
.proje-img-box .proje-tooltip .content .bottom-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.proje-img-box .proje-tooltip .content .bottom-info .left {
  margin-right: 13px;
}
.proje-img-box .proje-tooltip .content .bottom-info .left h4 {
  font-size: 15px;
  font-weight: 500;
}
.proje-img-box .proje-tooltip .content .bottom-info .left span {
  display: block;
  color: #333;
  font-size: 14px;
  margin-top: 4px;
}
.proje-img-box .proje-tooltip .content .bottom-info img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.proje-img-box .proje-tooltip .content .bottom-info .proje-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 7px;
}
.proje-img-box .proje-tooltip .content .bottom-info .proje-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proje-img-box .proje-tooltip .dot:hover + .content {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}

@keyframes zoomTooltip {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.breadcrumb-area {
  position: relative;
  display: block;
  padding: 106px 0 0px;
  z-index: 2;
}
.breadcrumb-area .breadcrumb-area-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: scroll;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #071422;
  background-blend-mode: luminosity;
  z-index: 1;
}
.breadcrumb-area .breadcrumb-area-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #071422;
  opacity: 0.6;
  content: "";
  z-index: -1;
}
.breadcrumb-area .shape-box {
  position: absolute;
  top: 166px;
  left: 130px;
  bottom: 60px;
  width: calc(100% - 85%);
  background-color: #20bad1;
  mix-blend-mode: soft-light;
  transform: skew(20deg, 0deg);
  z-index: 1;
}
.breadcrumb-area .inner-content {
  position: relative;
  display: block;
  padding: 14px 0 30px;
  z-index: 10;
}
.breadcrumb-area .inner-content .breadcrumb-menu {
  position: relative;
  display: block;
  padding-bottom: 5px;
}
.breadcrumb-area .inner-content .breadcrumb-menu ul {
  position: relative;
  display: flex;
  align-items: center;
}
.breadcrumb-area .inner-content .breadcrumb-menu ul li {
  position: relative;
  display: block;
  float: left;
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0em;
  padding-right: 14px;
  margin-right: 15px;
}
.breadcrumb-area .inner-content .breadcrumb-menu ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  width: 1px;
  background: #ffffff;
  transform: rotate(25deg);
}
.breadcrumb-area .inner-content .breadcrumb-menu ul li a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-weight: 500;
}
.breadcrumb-area .inner-content .breadcrumb-menu ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.breadcrumb-area .title {
  position: relative;
  display: block;
  overflow: hidden;
}
.breadcrumb-area .title h2 {
  color: #ffffff;
  font-size: 25px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -0.02em;
}

.breadcrumb-menu ul li.active::before {
  content: unset !important;
}

.breadcrumb-menu ul li:hover a,
.breadcrumb-menu ul li.active {
  color: #fff300 !important;
}

@media only screen and (max-width: 767px) {

  .project-item img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

  .breadcrumb-area .shape-box {
    display: none;
  }

  .breadcrumb-menu ul {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .breadcrumb-area .inner-content {
    padding: 0px 0 1px;
  }

  .breadcrumb-area .inner-content .breadcrumb-menu {
    position: relative;
    display: none;
    padding-bottom: 5px;
}

.breadcrumb-area .title h2 {
    font-size: 18px !important;
    padding-bottom: 15px;
}

.breadcrumb-area .breadcrumb-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #071422;
    background-blend-mode: luminosity;
    z-index: 1;
}

  .breadcrumb-menu ul li {
    padding-right: 0px;
    margin-right: 0px;
  }
  .breadcrumb-menu ul li::before {
    content: unset !important;
  }

  .breadcrumb-area .title h2 {
    font-size: 45px;
  }
}
.blog-page .left-content .blog-post {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}
.blog-page .left-content .blog-post .blog-date-format {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 76px;
  z-index: 2;
  padding: 12px 0;
  text-align: center;
  color: #fff;
  background-color: #211a6a;
}
.blog-page .left-content .blog-post .blog-date-format .blog-date {
  font-size: 26px;
  line-height: 28px;
  font-weight: bold;
  margin-top: 5px;
  letter-spacing: 2px;
}
.blog-page .left-content .blog-post .blog-date-format .blog-month,
.blog-page .left-content .blog-post .blog-date-format .blog-year {
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-page .left-content .blog-post .blog-date-format .blog-year {
  font-size: 18px;
}
.blog-page .left-content .blog-post img {
  width: 100%;
  height: 100%;
}

.blog-desc p,
.blog-desc span {
  font-family: "Livvic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: black;
}

.sidebar {
  padding: 0 40px;
}
.sidebar .widget {
  padding: 25px 30px;
  margin: 0 0 35px;
  border-radius: 0px;
  background: #fff;
  border: 1px solid #e1eeff;
}
.sidebar .widget .widget-title {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: #031b4e;
}
.sidebar .widget .widget-title::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  left: 0;
  bottom: 0;
  background-color: #3368c6;
}
.sidebar .widget .recent-post-list .post-date {
  line-height: 24px;
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 0;
  color: #27016ea6;
}
.sidebar .widget .recent-post-list li {
  padding-bottom: 30px;
  display: flex !important;
  align-items: center;
  width: 100%;
}
.sidebar .widget .recent-post-list li .recent-post-thum {
  width: 75px;
  flex-shrink: 0;
  margin-right: 20px;
}

.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-body a {
  color: #7884ac;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  transition: all 0.5s ease-out 0s;
}

.proje-detail-page .right-content {
  padding: 0 30px;
  margin-top: 9px;
}
.proje-detail-page .right-content p {
  font-size: 16px;
  color: #000;
  opacity: 0.8;
}
.proje-detail-page .project-item:hover .gallery-popup {
  right: 0;
}
.proje-detail-page .project-item .gallery-popup {
  position: absolute;
  z-index: 12;
  top: 0;
  right: -90px;
  color: #000;
  font-size: 1.2em;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #fff;
  display: grid;
  place-items: center;
  transition: all 0.3s linear;
}

.sidebar-proje {
  padding: 40px 40px;
  background-color: rgba(0, 174, 239, 0.1);
  border-radius: 10px;
  height: 100%;
}
.sidebar-proje h3 {
  font-size: 20px;
  color: #292929;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}
.sidebar-proje h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 7px;
  height: 7px;
  background-color: #0030ef;
  border-radius: 50%;
}
.sidebar-proje h3::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 105%;
  width: 60px;
  height: 5px;
  background-color: #0030ef;
  border-radius: 6px;
}
.sidebar-proje ul {
  margin-top: 40px;
}
.sidebar-proje ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sidebar-proje ul li a:hover {
  color: inherit;
}
.sidebar-proje ul li a svg {
  margin-right: 20px;
  height: 40px;
  width: 40px;
  fill: #0030ef;
}
.sidebar-proje ul li a img {
  margin-right: 20px;
  height: 40px;
  width: 40px;
}
.sidebar-proje ul li a .sidebar-title {
  display: block;
}
.sidebar-proje ul li a .sidebar-title h2 {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.sidebar-proje ul li a .sidebar-title span {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  opacity: 0.8;
}
.sidebar-proje ul li + li {
  margin-top: 25px;
}

.project-details__pagination-box {
  display: block;
  margin-top: 60px;
  position: relative;
}
.project-details__pagination-box .project-details__pagination-single {
  align-items: center;
  background-color: #edf2f8;
  display: flex;
  padding: 23px 30px 35px;
  position: relative;
  height: 100%;
  transition: all 0.5s ease;
}
.project-details__pagination-box .project-details__pagination-single:hover {
  background-color: #211a6a;
  cursor: pointer;
}
.project-details__pagination-box .project-details__pagination-single:hover a,
.project-details__pagination-box .project-details__pagination-single:hover p,
.project-details__pagination-box
  .project-details__pagination-single:hover
  a
  span {
  color: #fff;
}
.project-details__pagination-box
  .project-details__pagination-single:hover
  .project-details__arrow
  a
  span {
  color: #000;
}
.project-details__pagination-box .project-details__pagination-single a {
  color: #0f213c;
  display: block;
  position: relative;
  transition: all 0.5s ease;
}
.project-details__pagination-box
  .project-details__pagination-single
  .project-details__arrow {
  display: block;
  margin-right: 20px;
  position: relative;
}
.project-details__pagination-box
  .project-details__pagination-single
  .project-details__arrow
  > a {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #0f213c;
  display: flex;
  font-size: 16px;
  height: 52px;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
  width: 52px;
}

.project-details__next-content {
  display: block;
  position: relative;
}

.project-details__pagination-sub-title {
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  margin: 0;
  transition: all 0.5s ease;
  margin-bottom: 4px;
  text-transform: capitalize;
}

.project-details__pagination-title {
  color: #0f213c;
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.5s ease;
}

.previous-project-arrow {
  transform: rotate(-180deg);
}

.project-details__pagination-single-two .project-details__arrow {
  display: block;
  margin-left: 20px;
  position: relative;
}

.project-details__previous-content.text-right a,
.project-details__previous-content.text-right p {
  text-align: right;
}

.proje-page .project-item {
  padding: 0 0 67px 0;
  margin-bottom: 22px;
}
.proje-page .project-item img {
  height: 238px;
}
.proje-page .thumb-info p {
  color: #fff;
}

.about-tab {
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  gap: 20px;
}
.about-tab li {
  position: relative;
  line-height: 1.5em;
  text-align: center;
}
.about-tab li a {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  display: block;
  color: #211a6a;
  font-size: 15px;
  font-weight: 700;
}
.about-tab li a::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #211a6a;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.about-tab li a span {
  font-size: 17px !important;
    color: #00409e;
}
.about-tab li a.active::after {
  transform: scaleX(1);
}
.about-tab li a:hover::after {
  transform: scaleX(1);
}

@media screen and (min-width: 992px) {
  .about-tab li {
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 2em;
    padding-inline-end: 2em;
  }
}
@media screen and (max-width: 768px) {
  .about-tab li {
    flex-grow: 0;
  }
}
.corporate-page .content {
  padding: 10px;
  text-align: center;
}
.corporate-page .content p {
  text-align: left;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    color: black;
}
.corporate-page .content p + p {
  margin-top: 15px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-template-rows: minmax(250px, 1fr);
  grid-auto-flow: dense;
  gap: 20px;
}
.about-grid .about-item {
  height: 310px;
}
.about-grid .about-item img {
  height: 100%;
  width: 100%;
}
.about-grid .about-item:nth-child(1) {
  grid-row: span 3;
  grid-column: span 3;
  height: 640px;
}
.about-grid .about-item:nth-child(2) {
  grid-row: span 1;
  grid-column: span 2;
}

.img-about {
  transition: box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 25px 70px 0 rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  flex-direction: column;
  padding: 40px 20px;
  position: relative;
}
.img-about svg {
  width: 40px;
  height: 40px;
  margin-bottom: 25px;
  transition: all 0.3s;
}
.img-about h3 {
  font-size: 16px;
  line-height: 1em;
  text-align: center;
  transition: all 0.5s;
}
.img-about p {
  transition: all 0.7s;
}
.img-about:hover svg {
  transform: translateY(-10px);
}
.img-about:hover h3 {
  transform: translateY(-24px);
}
.img-about:hover p {
  transform: translateY(-23px);
}

.corporate-acot {
  padding: 0 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 820px) {
  .about-grid .about-item:nth-child(1) {
    grid-row: unset;
    grid-column: unset;
    height: auto;
  }

  .about-grid .about-item:nth-child(2) {
    grid-row: unset;
    grid-column: unset;
    height: auto;
  }
}
.testimonial {
  margin: 80px 0 0 0;
  display: grid;
  place-items: center;
}
.testimonial p {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #121212;
  font-style: italic;
  max-width: 630px;
  margin: 0 auto;
  position: relative;
}
.testimonial p::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -100px;
  left: calc(50% - 23px);
  background-image: url(../img/icon/quote.png);
  background-repeat: no-repeat;
}

.client__name {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #121212;
  padding-top: 50px;
  padding-bottom: 10px;
}

.client__role {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #555;
}

.kalite-item {
  float: left;
  border-radius: 12px;
  box-shadow: 0 0 15px 0 rgba(180, 222, 241, 0.3);
  background-color: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}
.kalite-item .text {
  width: 100%;
  padding: 40px 55px 40px 70px;
  float: left;
  display: flex;
  min-height: 220px;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
}
.kalite-item .text h3 {
  font-weight: 700;
  font-size: 33px;
  line-height: 1.17;
  text-transform: uppercase;
  letter-spacing: normal;
  margin-bottom: 20px;
}
.kalite-item .text h3 span {
  color: red;
}
.kalite-item .text p {
  font-size: 20px;
}

.right-effect * {
  text-align: right;
}
.right-effect * .text {
  text-align: right;
  justify-content: flex-end;
  align-items: flex-end;
}

.card {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  background-color: transparent;
  background-clip: border-box;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
}
.card .image-wrapper {
  position: relative;
  overflow: hidden;
  width: 80%;
  margin-bottom: 20%;
  display: block;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.15) !important;
  border-radius: 0.375rem;
}
.card .image-wrapper .image {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  pointer-events: none;
  transition: all 0.4s ease;
}
.card .box {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 20%;
  width: 80%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
  padding: 1.75rem;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.15) !important;
  border-radius: 0.375rem;
  background-color: #fff;
}

.label-vertical.outline {
  bottom: 120%;
  right: 10%;
  font-size: 2.5rem;
  font-weight: 800;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  position: absolute;
  z-index: 3;
  width: fit-content;
  height: max-content;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 1;
  letter-spacing: 1px;
  color: #8f93a5;
}

.label-vertical.outline .label-line {
  width: 5px;
  height: 35px;
  margin: 0 5px 0 0;
  display: inline-block;
  border: 1px solid;
  border-color: #8f93a5;
  background: none;
}

.label-vertical .label-text {
  line-height: 0;
  color: #8f93a5;
}

.card .title {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #1a1a20;
  font-size: 1.2rem;
  font-weight: 700;
}

.link {
  position: relative;
  z-index: 5;
  text-decoration: none;
  color: #1a1a20;
  pointer-events: all;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.link .icon {
  margin-right: 7.5px;
  vertical-align: middle;
  font-size: 0.75rem;
}

.badge {
  padding: 3.5px 10px;
  display: inline;
  border-radius: 0.25rem;
  border: 1px solid;
  border-color: #211a6a;
  background-color: #211a6a;
  font-size: 0.85rem;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.card .description {
  margin-bottom: 0rem;
}

.list-wrapper {
  margin-top: 1.5rem;
  line-height: 0;
  display: flex;
  justify-content: flex-end !important;
}
.list-wrapper .icon-h-list {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
}
.list-wrapper .icon-h-list .item {
  margin: 0 0.75rem;
  padding: 0;
}
.list-wrapper .icon-h-list .item .icon {
  margin: 0;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.accordion-item {
  border: 0;
  border-top: 1px solid #eaeaea;
  border-left: 0;
  border-right: 0;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  background-color: #fff;
}
.accordion-item .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item:first-child {
  border-top: unset !important;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.3rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
  background: transparent;
}
.accordion-button::after {
  margin-left: auto;
  content: "+";
  font-family: "Font Awesome 6 FREE";
  font-size: 20px;
  color: #141f2b;
  height: inherit;
  width: auto;
  background-image: none;
  flex-shrink: 0;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out;
  background-image: url(../img/icon/down.svg);
  background-size: 0;
}
.accordion-button .sty-accordion__number {
  background: -webkit-linear-gradient(0deg, #211a6a 0%, #211a6a 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 700;
  padding-right: 15px;
}

.sty-accordion__title {
  color: #141f2b;
  font-size: 18px;
  font-weight: 500;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: unset;
  background-color: transparent;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-body {
  padding: 0rem 1.25rem;
  margin-top: 10px;
}
.accordion-body p {
  padding-left: 40px;
  font-weight: normal;
  margin-bottom: 15px;
  font-size: 18px;
  color: #777777;
  line-height: 26px;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  font-family: "Font Awesome 6 FREE";
  font-size: 20px;
  color: #141f2b;
  background-image: none;
  transform: rotate(180deg) scale(1.8);
  margin-bottom: -10px;
}

.accordion-item + .accordion-item {
  border-top: 1px solid #eaeaea;
}

.upper-box {
  margin-bottom: 60px;
}
.upper-box .text p {
  font-size: 18px;
  font-weight: 400;
  color: #5a5a68;
  margin-bottom: 25px;
}

body {
  counter-reset: pbmitbox1;
}

.sty-inbox.last::before {
  content: unset;
}

.sty-inbox {
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}
.sty-inbox::before {
  content: "";
  top: 55px;
  right: -25%;
  z-index: 0;
  width: 192px;
  height: 15px;
  display: block;
  position: absolute;
  background: url(../img/icon/bg-15.png);
}
.sty-inbox .sty-ihbox-icon-wrapper {
  font-size: 60px;
  margin-bottom: 35px;
  width: 110px;
  height: 110px;
  color: #211a6a;
  line-height: 110px;
  display: inline-block;
  border-radius: 6px;
  position: relative;
  margin: 0 auto;
  box-shadow: 0px 0px 24px 0px rgba(26, 47, 106, 0.13);
  display: grid;
  place-items: center;
}
.sty-inbox .sty-ihbox-icon-wrapper:before {
  content: counter(pbmitbox1, decimal-leading-zero) " ";
  counter-increment: pbmitbox1;
  color: #fff;
  height: 35px;
  width: 35px;
  font-size: 13px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-weight: 700;
  bottom: -10px;
  right: -5px;
  z-index: 0;
  background-color: #000;
}
.sty-inbox .sty-ihbox-icon-wrapper img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}
.sty-inbox .sty-ihbox-contents {
  padding-top: 30px;
}
.sty-inbox .sty-ihbox-contents h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
}
.sty-inbox .sty-ihbox-contents .sty-ihbox-content {
  margin-top: 5px;
  padding: 0 15px;
}

@media screen and (max-width: 1200px) {
  .sty-inbox {
    margin-top: 30px;
  }
  .sty-inbox::before {
    display: none;
  }
}
.titleSectionAll {
  position: relative;
}
.titleSectionAll p {
  text-align: left;
    width: 100%;
    max-width: 1000px;
    font-size: 16px;
    color: black;
}
.titleSectionAll .titleSectionAll_back {
  text-align: center;
  position: relative;
  margin: auto;
}
.titleSectionAll .titleSectionAll_back div {
  font-size: 57px;
  letter-spacing: 7px;
  line-height: 80px;
  color: #e5e5e5;
  text-align: center;
  justify-content: center;
  font-weight: bold;
}

.flex {
  display: flex;
}

.titleSectionAll_back h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 32px;
  color: #000000;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.titleSectionAll_text {
  margin: auto;
}

@media screen and (max-width: 1366px) {
  .titleSectionAll_back div {
    font-size: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .titleSectionAll_back h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 35px;
    letter-spacing: 3px;
    line-height: 20px;
    color: #000000;
    font-weight: 500;
    text-align: center;
    width: 100%;
  }
}
.titleSectionAll + .titleSectionAll {
  margin-top: 30px;
}

.mv-image {
  margin: 60px 0;
  height: 350px;
  overflow: hidden;
}
.mv-image::before {
  content: unset;
}
.mv-image img {
  width: 100%;
  height: 100%;
}

.sty-service-block {
  position: relative;
  margin-bottom: 30px;
}
.sty-service-block a {
  display: block;
  z-index: 3;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.sty-service-block .inner-box {
  position: relative;
  padding: 70px 25px;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.sty-service-block .inner-box .content {
  position: relative;
  max-width: 600px;
  z-index: 1;
}
.sty-service-block .inner-box .content h4 {
  position: relative;
  color: #0f0f0f;
  margin: 0px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: uppercase;
}
.sty-service-block .inner-box .content h4 a {
  position: relative;
  color: #002a34;
  transition: all 500ms ease;
}
.sty-service-block .inner-box .text {
  position: relative;
  color: #666666;
  font-size: 16px;
  margin-top: 22px;
  margin-bottom: 28px;
}
.sty-service-block .inner-box .color-layer {
  position: absolute;
  right: -145px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background-color: inherit;
}
.sty-service-block .inner-box .color-layer::before {
  position: absolute;
  content: "";
  top: -74px;
  right: -16px;
  width: 1px;
  bottom: -15px;
  border-radius: 50%;
  background: repeating-linear-gradient(#0a92f1 0 38px, transparent 48px 64px);
}
.sty-service-block .inner-box .side-icon {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  bottom: 0;
  width: 300px;
}
.sty-service-block .inner-box .side-icon img {
  width: 100%;
  height: 100%;
}

.sty-service-block:nth-child(even) .side-icon {
  right: unset;
  left: 0;
}
.sty-service-block:nth-child(even) .color-layer {
  right: unset;
  left: -81px;
}
.sty-service-block:nth-child(even) .color-layer::before {
  right: -16px !important;
  left: unset !important;
}

.sty-service-block:nth-child(odd) .color-layer::before {
  right: unset !important;
  left: -90px !important;
}

.sty-service-block:nth-child(even) .inner-box {
  justify-content: flex-end;
}

.page-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-pagination ul li a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: #00000014 0 10px 36px, #00000005 0 0 0 1px;
  display: grid;
  font-weight: 500;
  font-size: 15px;
  place-items: center;
  transition: all 0.2s ease-in-out;
}
.page-pagination ul li a:hover {
  background-color: #211a6a;
  color: #fff;
}
.page-pagination ul li a.active {
  background-color: #211a6a;
  color: #fff;
}

.urunler-page .urun-box {
  height: 393px;
}
.urunler-page .urun-box img {
  height: 330px;
}

.language {
  position: relative;
  margin-right: 5px;
}
.language .current {
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.language .current::after {
  content: "";
  position: absolute;
  width: 73px;
  height: 25px;
  background-color: transparent;
  opacity: 0;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateZ(0);
}
.language .current span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.25s ease;
}
.language .current svg {
  margin-left: 5px;
  height: 5px;
  width: 12px;
  fill: #fff;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.language .current img {
  margin-right: 5px;
  height: 20px;
  width: 20px;
}
.language .list {
  transition: all 0.25s ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: calc(100% + 25px);
  transform: translateX(-50%) translateZ(0);
  padding: 10px 25px;
  background-color: #fff;
  border-radius: 10px;
}
.language .list li {
  display: flex;
  justify-content: center;
  align-items: center !important;
  flex-wrap: nowrap;
  flex-direction: row;
}
.language .list li a {
  font-size: 14px;
  color: #231f2d;
  transition: color 0.25s ease;
  font-weight: 500;
  flex-shrink: 0;
}
.language .list li a img {
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
.language .list li + li {
  margin-top: 10px;
}

.language:hover .list {
  opacity: 1;
  visibility: visible;
}

.header.sticky .language span {
  color: #000;
}
.header.sticky .language svg {
  fill: #000;
}

.map {
  padding-right: 30px;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.contact-section .form-inner .form-group {
  position: relative;
  margin-bottom: 23px;
}
.contact-section .form-inner .form-group label {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #16436f;
  margin-bottom: 7px;
  text-align: left;
}
.contact-section .form-inner .form-group i {
  position: absolute;
  top: 18px;
  right: 35px;
  font-size: 18px;
  color: #b6bfc2;
  z-index: 1;
}
.contact-section .theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  background: #211a6a;
  border: 1px solid #211a6a;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
  margin-top: 7px;
  padding: 15px 37px;
}
.contact-section .theme-btn:hover {
  background-color: transparent;
  color: #211a6a;
}

.contact-section .form-inner .form-group input:focus,
.contact-section .form-inner .form-group textarea:focus {
  border-color: #211a6a !important;
}

.contact-section .form-inner .form-group input[type="text"],
.contact-section .form-inner .form-group input[type="email"],
.contact-section .form-inner .form-group textarea,
.contact-section .form-inner .form-group .nice-select {
  position: relative;
  display: block;
  width: 100%;
  height: 54px;
  border: 1px solid #e6ebed;
  font-size: 18px;
  color: #7c8083;
  padding: 10px 20px;
  border-radius: 0px;
  text-align: left;
  padding-right: 50px;
  transition: all 500ms ease;
}

.contact-section .form-inner .form-group textarea {
  height: 150px;
  resize: none;
}

.success-form {
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #211a6a;
  align-items: center;
  font-family: "Livvic", sans-serif;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  display: none;
  visibility: hidden;
  opacity: 0;
  font-weight: 500;
  width: 100%;
  letter-spacing: 0.7px;
  transition: all 0.5s ease-in-out;
  margin-bottom: 20px;
  grid-area: span 1/2 span;
}

.success-form .check {
  position: unset !important;
  font-size: 20px !important;
  color: #211a6a !important;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 15px;
}

.success-form.active {
  visibility: visible;
  opacity: 1;
  display: flex;
}

.footer-menu-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 1.05em;
  vertical-align: middle;
  transition: color 0.3s;
  display: inline-block;
  line-height: 1.05em;
  color: #211a6a;
}

.footer {
  padding: 70px 0 0 0;
  background-color: #f4f5f7;
}

.footer-menu {
  transition: opacity 0.3s, visibility 0.3s;
}
.footer-menu .reset-ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-menu .reset-ul li {
  display: flex;
  width: 100%;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-menu .reset-ul li a {
  display: flex;
  align-items: center;
  position: relative;
  color: #094048;
  line-height: 1.5em;
  font-size: 17px;
  transition: all 0.3s;
}

.footer-bulten-div h3 {
  margin-bottom: 10px;
  margin-left: 15px;
  color: #094048;
  font-weight: 600;
  font-size: 17px;
}
.footer-bulten-div input {
  background: rgba(15, 90, 100, 0.06);
  color: rgba(16, 58, 64, 0.55);
  height: 50px;
  border-width: 0;
  border-radius: 50em;
  border: none;
  padding: 0 1.75em;
  line-height: 1.5em;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
  display: block;
  width: 100%;
}
.footer-bulten-div button[type="submit"] {
  background: rgba(15, 90, 100, 0.15);
  color: #0f5a64;
  bottom: 14%;
  right: 12px;
  max-height: 72%;
  min-height: 72%;
  height: 72%;
  padding: 0;
  width: 60px;
  position: absolute;
  text-shadow: none;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50em;
}

.footer-corporate-links ul {
  display: flex;
  align-items: center;
  height: 100%;
}
.footer-corporate-links ul li a {
  color: #094048;
  font-size: 17px;
}
.footer-corporate-links ul li + li {
  border-left: 1px solid #094048;
  padding-left: 20px;
  margin-left: 15px;
}

.yol-box {
  padding-left: 30px;
  margin-top: -10px;
}

.yol-tarif {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 90, 100, 0.06);
  color: rgba(16, 58, 64, 0.55);
  height: 50px;
  border-radius: 50em;
  width: 100%;
  padding: 0 15px;
  margin-top: 4px;
  position: relative;
    top: -7px;
}
.yol-tarif span {
  font-size: 15px;
}
.yol-tarif .icon svg path {
  stroke: #094048;
}

.copyright-area {
  border-top: 1px solid rgba(218, 216, 216, 0.7);
  padding: 28px 0 10px 0;
  margin-top: 30px;
}
.copyright-area .container {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.copyright-area p {
  margin-right: 25px;
  color: #094048;
  font-size: 18px;
  margin-bottom: 0;
}

.sanatustuCopy a {
  color: #000 !important;
}

.sanatustuSpanF {
  font-size: 24px;
  color: #000;
  font-family: "NADALL";
}

.sanatustuSpanL {
  font-family: "Quizma-LightDemo";
  color: #000;
  font-size: 25px;
}

.social-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.social-footer p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  width: 100%;
  max-width: 350px;
}
.social-footer p span {
  color: #094048;
  font-style: italic;
  margin-left: 15px;
}
.social-footer .icon-list {
  padding: 0 1.5rem;
  display: flex;
  gap: 2rem;
}

.icon-item {
  list-style: none;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-link {
  font-size: 1.6rem;
  text-decoration: none;
  color: #535c68;
  transition: 0.5s linear;
  position: relative;
  z-index: 1;
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: auto;
}

.icon-item:hover a i {
  color: #fff;
}

.icon-link i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 3rem;
  height: 3rem;
  background: #000;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transition: 0.3s cubic-bezier(0.95, 0.32, 0.37, 1.21);
}

.icon-item:hover::before {
  transform: scale(1);
}

.icon-item:nth-child(1):hover::before {
  background: #e4405f;
}

.icon-item:nth-child(2):hover::before {
  background: #3b5999;
}

.icon-item:nth-child(3):hover::before {
  background: #e4405f;
}

.icon-item:nth-child(4):hover::before {
  background: #cd201f;
}

.icon-item:nth-child(5):hover::before {
  background: #0077b5;
}

.catalog {
  height: 100%;
  padding: 20px;
  background-color: #f3f3f3;
}
.catalog figure {
  float: left;
  margin-top: -16px;
  margin-left: 12px;
  margin-right: 20px;
  width: 40%;
}
.catalog figure img.img-thumb {
  max-width: 100%;
}
.catalog h4 {
  font-size: 39px;
  color: #5c5a5c;
  float: left;
  margin-top: 16px;
  width: 46%;
}
.catalog h6 {
  font-size: 47.68px;
  color: #5c5a5c;
  float: left;
  letter-spacing: -2px;
  line-height: 13px;
  font-weight: 300;
  margin-top: 10px;
}
.catalog span {
  font-size: 13px;
  max-width: 85px;
  display: inline-block;
  margin-left: 12px;
  letter-spacing: normal;
  color: #5c5a5c;
  line-height: 18px;
  font-weight: 500;
  margin-top: -4px;
}

.footer-kat-soc .container {
  padding: 0;
}
.footer-kat-soc .row {
  border: 2px solid #0940480d;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
}

.col-pad-none {
  padding: 0;
}

@media screen and (max-width: 768px) {
  .yol-box {
    padding-left: 0;
    padding: 0 15px;
  }

  .footer-bulten-div {
    margin: 25px 0 10px 0;
  }

  .catalog h4 {
    font-size: 28px;
  }
  .catalog h6 {
    font-size: 35.68px;
  }
  .catalog span {
    margin-top: 1px;
  }

  .social-footer {
    padding: 15px;
  }
  .social-footer .icon-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .yol-box {
    padding-left: 0;
    padding: 0 15px;
  }

  .footer-bulten-div {
    margin: 25px 0 10px 0;
  }

  .catalog h4 {
    font-size: 28px;
  }

  .catalog h6 {
    font-size: 35.68px;
  }

  .catalog span {
    margin-top: 1px;
  }

  .social-footer {
    padding: 15px;
  }

  .social-footer .icon-list {
    flex-wrap: wrap;
  }
}
.search-title h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 30px;
  padding: 60px 0 20px 0;
  transition: all 0.3s ease;
}

.grid-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 50px;
}

.search-data {
  width: 100%;
  max-height: 250px;
  height: 100%;
  padding: 0.4rem 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  transition: all 0.3s ease;
}

.search-data .img-search {
  width: 270px;
  margin-right: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-data .img-search a {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  display: block;
}

.search-data .img-search a .figure-img-search {
  width: 100%;
  object-fit: contain;
  transition: all 0.2s;
  max-width: 260px;
  height: 200px;
  transition: all 0.3s ease;
}

.search-data .search-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 270px);
  min-height: 200px;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-data .search-text aside {
  line-height: 1;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.search-data .search-text aside a {
  display: inline-flex;
  align-items: center;
  color: #b90000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  position: relative;
  transition: all 0.3s ease;
}

.search-data .search-text aside a::before {
  content: "";
  display: inline-flex;
  width: 6px;
  height: 6px;
  border: 1px solid #b90000;
  background: transparent;
  margin-right: 9px;
  border-radius: 50%;
}

.search-data .search-text h4 {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.4em;
}

.search-data .search-text h4 a {
  color: #000;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 1200px) {
  .sty-service-block .inner-box .content {
    max-width: 400px;
  }
}

@media screen and (max-width: 992px) {
  .grid-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-tab {
    flex-direction: column;
    gap: 4px;
  }
  .about-tab li a {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

@media screen and (max-width: 760px) {
  .sty-service-block .inner-box .content {
    max-width: 100%;
  }
  .sty-service-block .inner-box .side-icon {
    display: none;
  }
  .sty-service-block .inner-box .color-layer {
    display: none;
  }
}

.fransa {
  top: 33% !important;
  left: 46% !important;
}

.turkiye {
  left: 55% !important;
  top: 37% !important;
}

.gurcistan {
  left: 58% !important;
  top: 34% !important;
}

.sirbistan {
  left: 51% !important;
  top: 35% !important;
}

.libya {
  left: 50% !important;
  top: 43% !important;
}

.abd {
  left: 20% !important;
  top: 28% !important;
}

.kosova {
  left: 49% !important;
  top: 34% !important;
}

.ukrayna {
  left: 54% !important;
  top: 32% !important;
}

.slovenya {
  left: 48% !important;
  top: 30% !important;
}

.big-slide {
  height: 500px;
}

.big-slide .bigSlierProject .swiper-slide {
  height: 500px;
}

.big-slide .bigSlierProject .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-de {
  position: relative;
  padding: 0;
}

.smSLider {
  width: 100%;
  height: 450px;
}

.smSLider .swiper-wrapper {
  display: flex;
  flex-direction: column;
}

.smSLider .swiper-wrapper .swiper-slide {
  width: 85%;
    height: 90px !important;
    margin-bottom: 50px;
    text-align: center;
    align-items: center;
    margin: auto;
}

.smSLider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-box {
  text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 63px;
    width: 100%;
    max-width: 100%;
}

.icon-box .owl-arrow {
  display: inline-block;
    padding: 0;
    background-color: #fff300;
    color: #211a6a;
    border: 1px solid #211a6a;
    box-shadow: 0px 4px 20px rgb(7 36 95 / 15%);
    width: 45px;
    height: 45px;
    line-height: 33px;
    font-size: 24px;
    z-index: 2;
}

.icon-box .owl-arrow.right {
  margin-left: 15px;
}

.project-detail-p {
  margin-top: 30px;
}

.project-detail-p p,
.project-detail-p span,
.project-detail-p h1,
.project-detail-p h2,
.project-detail-p h3,
.project-detail-p h4,
.project-detail-p h5,
.project-detail-p h6 {
  font-size: 17px;
  opacity: 0.78;
  line-height: 1.7;
}

@media screen and (max-width: 1200px) {
  .icon-box {
    position: unset;
    margin-top: 30px;
    max-width: 100%;
  }
}


@media screen and (max-width: 550px) {
.smSLider {
    width: 100%;
    height: 450px;
    display: none;
}
}

@media screen and (max-width: 768px) {
  .urunler-box .left-box{
    display: none !important;
  }
  .blogCarousel{
    padding: 0 20px;
  }
  .urunler-box .background{
    display: none !important;
  }
}

.footer-img-y {
  width: 230px;
}

.split-char {
  position: relative;
}

.split-char span {
  opacity: 0;
  animation: fade-in 1s forwards;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}


.markalogo {
   
}

.markalogo img {
   width: 194px !important;
}


.content h3 {
    font-size: 21px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #27016e;
    margin-bottom: 26px;
    color: #27016e;
    font-family: "Livvic", sans-serif;
}



/*# sourceMappingURL=style.css.map */
