@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&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;
}

body {
  line-height: 1.2;
  scroll-behavior: smooth;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  background-color: #fff;
  overflow-y: scroll;
}

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: #ffbc11;
}

::-moz-selection {
  color: #fff;
  background-color: #ffbc11;
}

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: #ffbc11;
}

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

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

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

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

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.header {
  height: 110px;
  z-index: 100;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  transition: 0.45s ease all;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.header .wrapper {
  height: 100%;
}
.header .wrapper .logo {
  z-index: 2;
  display: block;
  transition: 0.45s ease all;
  width: 130px;
  margin-right: 40px;
}
.header .wrapper .tools {
  height: 100%;
}

@media only screen and (max-width: 1280px) {
  header .wrapper {
    justify-content: space-between;
  }
  header .wrapper .logo {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
  }
}
.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.main-menu > li {
  padding: 0 30px;
  height: 100%;
}
.main-menu > li > a {
  height: 100%;
  color: #fff;
  font-weight: 800;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.45s ease all;
  font-size: 16px;
}
.main-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #ffbc11;
  border-radius: 2px;
  transition: 0.45s ease all;
}
.main-menu li.active > a {
  color: #ffbc11 !important;
  font-weight: 900 !important;
}
.main-menu li.active > a::before {
  width: 100% !important;
  left: 0 !important;
  right: unset !important;
}

.main-menu > li:hover > a {
  color: #ffbc11;
}
.main-menu > li:hover > a::before {
  width: 100%;
  left: 0;
  right: unset;
}

header .wrapper .mobile-menu-trigger {
  height: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: none;
}
header .wrapper .mobile-menu-trigger .wrap {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease all;
}
header .wrapper .mobile-menu-trigger .wrap span {
  background-color: #fff;
  width: 100%;
  height: 1px;
  display: block;
  transition: 0.3s ease all;
}

.sticky-logo {
  display: none;
}

.header.sticky {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
}
.header.sticky .normal-logo {
  display: none;
}
.header.sticky .sticky-logo {
  display: block;
}
.header.sticky .main-menu > li > a {
  color: #002c2b;
}

.index-hero {
  background-color: #000;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 100vh;
}
.index-hero .background {
  overflow: hidden;
  isolation: isolate;
  position: absolute;
  left: 0;
  right: unset;
  top: 0;
  bottom: unset;
  width: 100%;
  height: 100%;
}
.index-hero .background::before {
  content: "";
  position: absolute;
  left: 0;
  right: unset;
  top: 0;
  bottom: unset;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 25%
  );
  z-index: 1;
}
.index-hero .background::after {
  content: "";
  position: absolute;
  left: 0;
  right: unset;
  top: 0;
  bottom: unset;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.075) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 2;
}
.index-hero .background .item {
  object-fit: cover;
  object-position: center;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: 0.6s ease all;
}
.index-hero .background .item.active {
  opacity: 1;
  transform: scale(1);
}
.index-hero .hero-carousel {
  height: 100%;
  padding-top: 110px;
}
.index-hero .hero-carousel .swiper-wrapper {
  height: 100%;
}
.index-hero .hero-carousel .swiper-wrapper .swiper-slide {
  height: 100%;
}
.index-hero .hero-carousel .swiper-wrapper .swiper-slide .slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: 0.45s ease all;
  padding-top: 140px;
  padding-bottom: 60px;
  padding-left: 45px;
  padding-right: 45px;
}
.index-hero .hero-carousel .swiper-wrapper .swiper-slide .slide::before {
  content: "";
  position: absolute;
  left: 0;
  right: unset;
  top: 0;
  bottom: unset;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #ffbc11 15%, rgba(243, 111, 33, 0.35) 85%);
  opacity: 0;
  transition: 0.45s ease all;
}
.index-hero .hero-carousel .swiper-wrapper .swiper-slide .slide .slogan {
  color: #fff;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(-25%);
  transition: 0.45s ease all;
}
.index-hero .hero-carousel .swiper-wrapper .swiper-slide .slide .slogan .small {
  opacity: 0.5;
  margin-bottom: 10px;
  font-size: 1.375rem;
}
.index-hero .hero-carousel .swiper-wrapper .swiper-slide .slide .slogan .big {
  line-height: 1;
  font-weight: 700;
  font-size: 2.5rem;
}

.index-hero .hero-carousel .swiper-wrapper .swiper-slide .slide.active::before,
.index-hero .hero-carousel .swiper-wrapper .swiper-slide .slide:hover::before {
  opacity: 1;
}

.index-hero .hero-carousel .swiper-wrapper .swiper-slide .slide.active .slogan,
.index-hero .hero-carousel .swiper-wrapper .swiper-slide .slide:hover .slogan {
  opacity: 1;
  transform: translateY(0%);
}

.index-hero .scroll-down {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 10px;
  right: 30px;
  z-index: 10;
  bottom: 0;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 10px 10px 5px;
  transition: 0.3s ease all;
  cursor: pointer;
}
.index-hero .scroll-down svg {
  width: 20px;
  fill: #000;
  margin: 0 auto;
  transition: 0.3s ease all;
}
.index-hero .scroll-down span {
  color: #000;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s ease all;
  display: block;
}

.index-hero .scroll-down:hover {
  background-color: #ffbc11;
}
.index-hero .scroll-down:hover svg {
  fill: #fff;
}
.index-hero .scroll-down:hover span {
  color: #fff;
}

.about-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.about-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 82px;
}
.about-one__left .about-one__img {
  position: relative;
  max-width: 450px;
  margin-left: auto;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}
.about-one__left .about-one__img::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 188, 17, 0.7) 0%,
    rgba(255, 188, 17, 0.3) 100%
  );
  transform: skewX(20deg);
  z-index: 2;
}
.about-one__left .about-one__img img {
  width: 100%;
  border-radius: 8px;
  height: 600px;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}

.about-one__our-goal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 168px;
  background-color: #ffbc11;
  padding: 47px 23px 45px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  z-index: 3;
}
.about-one__our-goal .about-one__our-goal-sub-title {
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  line-height: 28px;
  text-transform: uppercase;
  padding-bottom: 9px;
}
.about-one__our-goal .about-one__our-goal-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 34px;
}

.section-title__text {
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-one__left {
    margin-right: 0;
  }
}
.about-one__img:hover::before {
  animation: shine 1.9s;
}
.about-one__img:hover img {
  transform: scale(1.1) rotate(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.about-one__right {
  position: relative;
  display: block;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -6px;
  margin-bottom: 49px;
  z-index: 1;
}

.about-one .section-title {
  margin-bottom: 35px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: #ffbc11;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
}
.section-title__tagline::before {
  position: absolute;
  top: 6px;
  left: -56px;
  width: 40px;
  height: 2px;
  background-color: #ffbc11;
  content: "";
}

.about-one .section-title__tagline {
  margin-left: 56px;
}

.section-title__title {
  margin: 0;
  color: #002c2b;
  font-size: 42px;
  line-height: 52px;
  font-weight: 900;
  margin-top: 16px;
  margin-bottom: 16px;
}

.about-one__points {
  position: relative;
  display: block;
  margin-top: 46px;
  margin-bottom: 46px;
}
.about-one__points li {
  position: relative;
  display: block;
  background-color: #fff;
  box-shadow: 0px 8px 29px 0px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  z-index: 1;
}
.about-one__points li .about-one__points-single {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 25px 25px;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 1;
}
.about-one__points li .about-one__points-single::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffbc11;
  content: "";
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}
.about-one__points li .about-one__points-single .about-one__points-icon {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 9999rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background-color: #ffbc11;
}
.about-one__points li .about-one__points-single .about-one__points-icon img {
  width: 35px;
  height: 35px;
  margin: auto auto;
}
.about-one__points li .about-one__points-single .about-one__points-text {
  position: relative;
  display: block;
  margin-left: 25px;
}
.about-one__points
  li
  .about-one__points-single
  .about-one__points-text
  .about-one__points-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}
.about-one__points
  li
  .about-one__points-single
  .about-one__points-text
  .about-one__points-title
  a {
  color: #000;
  transition: all 500ms ease;
}
.about-one__points li + li {
  margin-top: 30px;
}

.about-one__points-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #646464;
  padding-top: 7px;
  transition: all 500ms ease;
}

.about-one__points li:hover .about-one__points-single::before {
  transform: scale(1, 1);
  transform-origin: right center;
}
.about-one__points li:hover .about-one__points-icon {
  background-color: #fff;
}
.about-one__points li:hover .about-one__points-icon img {
  filter: invert(1);
}
.about-one__points li:hover .about-one__points-title a {
  color: #fff !important;
}
.about-one__points li:hover .about-one__points-subtitle {
  color: #fff;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  outline: none !important;
  background-color: #ffbc11;
  color: #002c2b;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 43px 14px;
  border-radius: 4px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}
.thm-btn::before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background-color: #002c2b;
}
.thm-btn:hover {
  color: #fff;
}
.thm-btn:hover::before {
  top: -40%;
}

.section-title--two {
  margin-bottom: 57px;
}
.section-title--two .section-title__tagline:after {
  position: absolute;
  top: 6px;
  right: -56px;
  width: 40px;
  height: 2px;
  background-color: #ffbc11;
  content: "";
}

.services-one__single {
  position: relative;
  display: block;
  background-color: white;
  box-shadow: 0px 8px 29px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  z-index: 2;
}
.services-one__single .services-one__img {
  position: relative;
  display: block;
  height: 264px;
  overflow: hidden;
  background-color: #ffbc11;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 1;
}
.services-one__single .services-one__img::before {
  content: "";
  position: absolute;
  top: -100%;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #ffbc11;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  opacity: 0.5;
  transition: all 600ms ease 100ms;
  z-index: 1;
}
.services-one__single .services-one__img img {
  width: 100%;
  height: 264px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  transition: all 500ms ease;
}

.services-one__icon {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffbc11;
  border-radius: 4px;
  transition: all 500ms ease;
  display: grid;
  place-items: center;
  z-index: 2;
}
.services-one__icon img {
  width: 48px !important;
  height: 48px !important;
  z-index: 4;
}

.services-one__content {
  position: relative;
  display: block;
  padding: 22px 30px 30px;
}
.services-one__content .services-one__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  height: 68px !important;
}
.services-one__content .services-one__title a {
  color: #002c2b;
  transition: all 500ms ease;
}
.services-one__content .services-one__text {
  margin-top: 15px;
  margin-bottom: 22px;
}

.services-one__single:hover .services-one__img::before {
  top: 0;
  bottom: 0;
}
.services-one__single:hover .services-one__img img {
  transform: scale(1.05);
}
.services-one__single:hover .services-one__icon {
  background-color: #fff;
}
.services-one__single:hover .services-one__icon img {
  filter: invert(1);
}

.breadcrumb-area {
  padding-top: 230px;
  padding-bottom: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.breadcrumb-area .title {
  color: #fff;
  margin-bottom: 0;
  line-height: 91px;
  font-size: 23px;
  word-break: break-word;
  font-weight: 800;
}
.breadcrumb-area .bread-tag {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 30px;
  background: #fff;
  border-radius: 31px;
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.5);
  max-width: max-content;
  margin-left: auto;
}
.breadcrumb-area .bread-tag a {
  margin-right: 5px;
  margin-left: 5px;
  color: #1c2539;
  font-size: 13px;
  font-weight: bold;
}
.breadcrumb-area .bread-tag a.active {
  margin-left: 5px;
  color: #ffbc11;
  margin-right: 0;
}
.breadcrumb-area .bread-tag span {
  color: #ffbc11;
}

.contact {
  position: relative;
  display: block;
}
.contact .contact-one__left {
  position: relative;
  display: block;
  margin-right: 127px;
}
.contact .contact-one__left .section-title {
  margin-bottom: 26px;
}
.contact .contact-one__left .section-title .section-title__tagline {
  position: relative;
  display: inline-block;
  color: #ffbc11;
  font-size: 16px;
  margin-top: 2px;
  margin-left: 0;
}
.contact .contact-one__left .section-title .section-title__tagline::before {
  position: absolute;
  right: -29px;
  background-color: #002c2b;
  width: 20px;
  height: 2px;
  content: "";
  left: unset;
}
.contact .contact-one__left .section-title .section-title__title {
  margin: 0;
  font-size: 50px;
  line-height: 1.3;
  font-weight: 800;
}

.contact-one__info {
  position: relative;
  display: block;
  margin-top: 40px;
}
.contact-one__info li {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-one__info li .icon {
  height: 80px;
  width: 80px;
  background-color: #002c2b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 500ms ease;
}
.contact-one__info li .icon span {
  color: #fff;
  font-size: 30px;
  transition: all 500ms ease;
}
.contact-one__info li .text {
  margin-left: 30px;
}
.contact-one__info li .text p {
  line-height: 25px;
  margin-bottom: 0;
}
.contact-one__info li .text a {
  font-size: 18px;
  color: #404a3d;
  font-weight: 500;
  transition: all 500ms ease;
}
.contact-one__info li + li {
  margin-top: 10px;
}

.contact-one__right {
  position: relative;
  display: block;
  margin-left: -20px;
}
.contact-one__right .contact-one__form {
  position: relative;
  display: block;
}

.contact-one__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-one__form-input-box input {
  height: 63px;
  width: 100%;
  border: none;
  outline: none;
  background-color: #fff;
  font-size: 14px;
  color: #878986;
  font-weight: 500;
  padding: 0 30px 0;
  border: 1px solid #ffbc11;
}
.contact-one__form-input-box textarea {
  height: 184px;
  width: 100%;
  border: none;
  outline: none;
  background-color: #fff;
  border: 1px solid #ffbc11;
  font-size: 14px;
  color: #878986;
  font-weight: 500;
  padding: 20px 30px 30px;
}

.success-form {
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #ffbc11;
  align-items: center;
  font-family: "Quicksand", 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: #ffbc11 !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;
}

.map {
  padding: 0;
}
.map iframe {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .contact-one__right {
    margin-top: 40px;
  }
}
.site-footer {
  background-image: linear-gradient(90deg, #171a1d 40%, #ffbc11 100%);
}
.site-footer .site-footer__top {
  position: relative;
  display: block;
  padding: 117px 0 120px;
}
.site-footer .site-footer__top .footer-widget__about {
  position: relative;
  display: block;
  margin-right: 85px;
  margin-top: 3px;
}
.site-footer .site-footer__top .footer-widget__about .footer-widget__logo {
  position: relative;
  display: block;
}
.site-footer .site-footer__top .footer-widget__about .footer-widget__logo img {
  width: 250px;
}
.site-footer
  .site-footer__top
  .footer-widget__about
  .footer-widget__social-box {
  position: relative;
  display: block;
  margin-top: 30px;
}
.site-footer
  .site-footer__top
  .footer-widget__about
  .footer-widget__social-box
  .footer-widget__social-title {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 22px;
}
.site-footer
  .site-footer__top
  .footer-widget__about
  .footer-widget__social-box
  .site-footer__social {
  display: flex;
  align-items: center;
}
.site-footer
  .site-footer__top
  .footer-widget__about
  .footer-widget__social-box
  .site-footer__social
  a {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #272a2d;
  font-size: 15px;
  border-radius: 3px;
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 1;
}
.site-footer
  .site-footer__top
  .footer-widget__about
  .footer-widget__social-box
  .site-footer__social
  a:hover {
  background-color: #ffbc11;
  color: #002c2b;
}
.site-footer
  .site-footer__top
  .footer-widget__about
  .footer-widget__social-box
  .site-footer__social
  a
  + a {
  margin-left: 10px;
}

.footer-widget__links {
  position: relative;
  display: block;
}
.footer-widget__links .footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.footer-widget__links .footer-widget__title-box .footer-widget__title {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  line-height: 24px;
}

.footer-widget__Explore-list {
  position: relative;
  display: block;
}
.footer-widget__Explore-list li {
  position: relative;
  display: block;
}
.footer-widget__Explore-list li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  padding-left: 15px;
  transition: all 500ms ease;
}
.footer-widget__Explore-list li a::before {
  content: "\f0da";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  font-size: 15px;
  color: #ffbc11;
  transition: all 500ms ease;
}
.footer-widget__Explore-list li a:hover {
  color: #ffbc11;
}
.footer-widget__Explore-list li + li {
  margin-top: 16px;
}

.site-footer__bottom {
  padding: 0;
  background-color: transparent;
}
.site-footer__bottom .site-footer__bottom-inner {
  padding: 37px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company {
  color: #fff;
}
.company a {
  color: #ffbc11;
  font-weight: 600;
}

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

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

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

.markalar {
  background-color: #f8f8f8;
}

.reference-list {
  display: flex;
  flex-wrap: wrap;
}
.reference-list .item {
  display: flex;
  width: 220px;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease background-color, 0.3s ease box-shadow;
  border: 1px solid #e3e3e3;
  height: 220px;
}
.reference-list .item img {
  max-height: 90px;
  max-width: 140px;
  object-fit: contain;
  object-position: center;
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: 0.3s ease all;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}
.reference-list .item:hover {
  background-color: #fff;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.15);
  border: 1px solid #ffbc11;
}
.reference-list .item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}

.princibles-field {
  padding: 90px 0 180px;
  position: relative;
  background-color: #ffbc11;
  overflow: hidden;
  mask-image: -webkit-radial-gradient(white, black);
}
.princibles-field::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 600px;
  height: 600px;
  background-image: url(../img/shapes/misyon-1.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  filter: invert(93%) sepia(59%) saturate(0%) hue-rotate(298deg)
    brightness(103%) contrast(104%);
  transform: translateX(-40%) translateY(-30%);
  opacity: 0.1;
}
.princibles-field::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shapes/about-bg.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.princibles-field .container {
  position: relative;
  z-index: 1;
}
.princibles-field .container .item {
  display: grid;
  grid-template-columns: minmax(0, 125px) minmax(0, auto);
  grid-gap: 180px;
  align-items: center;
  transition: 0.3s ease all;
  opacity: 0.5;
  cursor: pointer;
}
.princibles-field .container .item .title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #fff;
  position: relative;
}
.princibles-field .container .item .title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: calc(100% + 60px);
  transform: translateY(-50%);
}
.princibles-field .container .item .text {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.75;
}
.princibles-field .container .item .text p,
.princibles-field .container .item .text span {
  color: #fff;
  margin-bottom: 0;
}
.princibles-field .container .item:hover {
  opacity: 1;
}
.princibles-field .container .item.active {
  opacity: 1;
}
.princibles-field .container .item + .item {
  margin-top: 90px;
}

.about .img-content {
  height: 450px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 0;
}
.about .img-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .txt_content > p,
.about .txt_content > span {
  font-size: 17px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .about .txt_content {
    padding-left: 25px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .about-one__left .about-one__img {
    margin-bottom: 30px;
  }

  .section-title__title {
    font-size: 29px;
    line-height: 43px;
  }

  .footer-widget__links .footer-widget__title-box {
    margin-top: 25px;
  }
}
.context {
  line-height: 1.5;
  color: #404040;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 70px;
}
.context p,
.context span {
  line-height: 1.5;
  color: #404040;
  font-size: 15px;
}

.widget-aside {
  padding: 30px;
  border: 1px solid #e5e8ef;
  border-radius: 4px;
  margin-bottom: 30px;
  background: #fff;
}
.widget-aside .widget-title {
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  position: relative;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0;
  color: #ffbc11;
  text-transform: none;
  font-weight: 600;
  font-style: normal;
}
.widget-aside .widget-title::after {
  display: block;
  height: 3px;
  margin-top: 0;
  margin-bottom: -2px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 1px;
  width: 30px;
  background-color: #ffbc11;
}

.widget-aside .download .item-download:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget-aside .download .item-download {
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e8ef;
  padding-bottom: 15px;
  position: relative;
}
.widget-aside .download .item-download a {
  display: block;
  padding: 7px 0 7px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  position: relative;
  color: inherit;
}
.widget-aside .download .item-download a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 1px;
  left: 0;
  background: lightgrey;
  transition: all 350ms cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
.widget-aside .download .item-download a.active {
  color: #ffbc11;
}
.widget-aside .download .item-download a.active::before {
  background-color: #ffbc11;
}
.widget-aside .download .item-download a + a {
  margin-top: 25px;
}

.h-content .text {
  margin-top: 20px;
}
.h-content .text h1,
.h-content .text h2,
.h-content .text h3,
.h-content .text h4,
.h-content .text h5,
.h-content .text h6 {
  margin-bottom: 10px;
}
.h-content .text p,
.h-content .text span,
.h-content .text h1,
.h-content .text h2,
.h-content .text h3,
.h-content .text h4,
.h-content .text h5,
.h-content .text h6 {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  color: black;
  opacity: 0.7;
}

.dlab-box {
  transition: all 0.2s linear;
  position: relative;
  cursor: pointer;
}

.dlab-img-effect {
  position: relative;
  overflow: hidden;
  display: block;
}

.dlab-img-overlay1::before {
  opacity: 0;
  background-color: #191c0a;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s linear;
}

.dlab-img-overlay1::after {
  content: "";
  background: #1a1a1a;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.4;
  z-index: 1;
  transition: all 0.3s linear;
}

.dlab-img-effect img {
  display: block;
  margin: 0;
  width: 100%;
  height: 400px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.35s linear;
  object-fit: cover;
}

.overlay-bx {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.mfp-link {
  width: 100px;
  height: 100px;
  display: block;
  font-size: 34px;
  line-height: 100px;
  text-align: center;
  background: #ffbc11;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0px 0px -50px;
  transform: scale(0) rotate(360deg);
  color: #ffbc11;
}
.mfp-link i {
  background: transparent;
  vertical-align: middle;
  color: #fff;
}

.dlab-box:hover .dlab-img-overlay1:before {
  opacity: 0.8;
}
.dlab-box:hover .mfp-link {
  transform: scale(1) rotate(0deg);
}

.hizmet-carousel .owl-nav [class*="owl-"]:hover {
  background-color: transparent;
  color: #000;
}

.context-h {
  height: 82px !important;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: transparent !important;
  color: #ffbc11;
}

.header.sticky .mobile-menu-trigger .wrap {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.header.sticky .mobile-menu-trigger .wrap span {
  background-color: #333 !important;
}

.mobile-menu {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  overflow: hidden;
  width: 350px;
  transform: translateX(-100%) scale(0.93);
  opacity: 0;
  visibility: hidden;
  z-index: 100000;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
}

.mobile-menu .main-menu li:hover > a::before {
  left: 35px !important;
}

.mobile-menu .main-menu {
  flex-direction: column;
}

.mobile-menu .main-menu li {
  height: max-content;
}

.mobile-menu .main-menu > li > a {
  color: #000;
}

.mobile-menu.active {
  transform: translateX(0) scale(1.03);
  opacity: 1;
  visibility: visible;
}

.mobile-menu .sticky-logo {
  position: absolute;
  left: 3rem;
  top: 4rem;
  width: 179px;
  display: block !important;
}

.mobile-menu .normal-logo {
  display: none !important;
}

.mobile-menu .tools {
  width: 100%;
}

.mobile-menu .tools ul {
  width: 100%;
}

.mobile-menu .tools ul li {
  width: 100%;
  padding: 0 !important;
}

.mobile-menu .tools ul li a {
  justify-content: flex-start !important;
  padding: 17px 34px !important;
  align-items: flex-start !important;
}

.mobile-menu .mobile-menu-trigger {
  display: none !important;
}

.whatsapp {
  position: fixed;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  bottom: 50px;
  left: 30px;
  background-color: #25d366;
  z-index: 10;
}

.wp-logo::before {
  content: "";
  height: 60px;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  width: 100%;
  background: transparent url(../img/icon/whatsapp.svg) 50% no-repeat;
  background-size: auto;
  background-size: 30px;
}

@media screen and (max-width: 1200px) {
  header .wrapper .mobile-menu-trigger {
    display: flex !important;
  }
  .header .wrapper .tools {
    display: none;
  }
  header .wrapper .mobile-menu-trigger .wrap {
    cursor: pointer;
  }
}

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