@font-face {
  font-family: SFPro-Light;
  src: url("../fonts/SF-Pro-Display-Light.otf");
}
@font-face {
  font-family: SFPro-Regular;
  src: url("../fonts/SF-Pro-Display-Regular.otf");
}
@font-face {
  font-family: SFPro-Medium;
  src: url("../fonts/SF-Pro-Display-Medium.otf");
}
@font-face {
  font-family: SFPro-SemiBold;
  src: url("../fonts/SF-Pro-Display-Semibold.otf");
}
@font-face {
  font-family: SFPro-Bold;
  src: url("../fonts/SF-Pro-Display-Bold.otf");
}

html {
  scroll-behavior: smooth;
}

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: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: "SFPro-Regular", sans-serif;
  font-size: 16px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

.primary-btn {
  background-color: #ffa200;
  color: #000;
  padding: 14px 23px;
  font-size: 18px;
  /*box-shadow: 4px 4px 20px #000;*/
  display: inline-block;
  transition: 300ms all;
  font-weight: 500;
  border-radius: 3px;
}
.primary-btn:hover {
  color: #000;
  /*box-shadow: 4px 4px 10px #000;*/
}

.primary-radius-btn {
  background-color: #ffa200;
  color: #000;
  padding: 14px 23px;
  font-size: 18px;
  /*box-shadow: 4px 4px 20px #000;*/
  display: inline-block;
  transition: 300ms all;
  font-weight: 500;
  border-radius: 100px;
}
.primary-radius-btn:hover {
  color: #000;
  /*box-shadow: 4px 4px 10px #000;*/
}

.secondary-btn {
  background-color: #ffa200;
  color: #000;
  padding: 7px 23px;
  font-size: 18px;
  display: inline-block;
  transition: 300ms all;
  font-weight: 500;
  border: 1px solid #ffa200;
}
.secondary-btn:hover {
  color: #ffa200;
  background-color: transparent;
}

#header {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
#header .controller {
  width: 100%;
  position: relative;
  z-index: 80;
  bottom: 150px;
  left: 0;
}
#header .controller .container {
  display: flex !important;
  align-items: center !important;
}
#header .header-menu {
  position: absolute;
  top: 0;
  z-index: 99;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  transition: 300ms all;
  padding: 10px 0;
}
#header .header-menu .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header-menu .logo {
  width: 200;
  height: 77px;
  overflow: hidden;
  display: inline-block;
  transition: 300ms all;
}
#header .header-menu .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#header .header-menu .logo .white-logo {
  transition: 300ms all;
}
#header .header-menu .logo .dark-logo {
  display: none;
  transition: 300ms all;
}
#header .header-menu .logo:hover {
  opacity: 0.6;
}
#header .header-menu .mid nav ul {
  display: flex;
  align-items: center;
}
#header .header-menu .mid nav ul li {
  position: relative;
}
#header .header-menu .mid nav ul li:not(:last-child) {
  margin-right: 25px;
}
#header .header-menu .mid nav ul li a {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 5px;
}
#header .header-menu .mid nav ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 3px;
  background-color: #f9a11b;
  transition: 300ms all;
}
#header .header-menu .mid nav ul li:hover::before {
  width: 100%;
}
#header .header-menu .right {
  display: flex;
  align-items: center;
}
#header .header-menu .right .language {
  outline: none;
  border: none;
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: 300ms all;
  margin-right: 5px;
}
#header .header-menu .right .language:hover {
  color: #f9a11b;
}
#header .header-menu .right .search-btn {
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
  outline: none;
  overflow: hidden;
  margin-left: 5px;
  padding: 0 !important;
}
#header .header-menu .right .search-btn svg path {
  transition: 300ms all;
}
#header .header-menu .right .search-btn:hover svg path {
  fill: #f9a11b;
}
#header .header-menu .right .mobile-menu-btn {
  display: none;
  width: 25px;
  height: 25px;
  overflow: hidden;
  transition: 300ms all;
  margin-left: 10px;
}
#header .header-menu .right .mobile-menu-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#header .header-menu .right .mobile-menu-btn:hover {
  opacity: 0.5;
}
#header .sticky-header {
  /*background-color: #fff;*/
  background-color: rgb(255 255 255 / 95%);
  position: fixed;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}
#header .sticky-header .left .logo .white-logo {
  display: none;
}
#header .sticky-header .left .logo .dark-logo {
  display: block;
}
#header .sticky-header .mid a {
  color: #183159 !important;
}
#header .sticky-header .right .language {
  color: #183159 !important;
}
#header .sticky-header .right .search-btn svg path {
  fill: #183159 !important;
}

#header .header-video {
  width: 100%;
  height: 100%;
  position: static !important;
}
#header .header-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#header .header-video-text {
  font-size: 44px;
  color: #fff;
  font-family: 'SFPro-Medium';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

#header .swiper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: static !important;
}
#header .swiper-slide {
  width: 100%;
  min-height: calc(100vh + 70px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#header .swiper-slide .container {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
#header .swiper-slide .big-title {
  text-transform: uppercase;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
}
#header .swiper-slide .desc {
  margin-top: 10px;
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}
#header .swiper-pagination-bullets {
  position: static !important;
  width: auto !important;
}
#header .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.6 !important;
  width: 12px;
  height: 12px;
}
#header .swiper-pagination-bullet-active {
  background-color: #f9a11b;
  opacity: 1 !important;
}
#header .swiper-horizontal > .swiper-pagination-bullets,
#header .swiper-pagination-bullets.swiper-pagination-horizontal,
#header .swiper-pagination-custom,
#header .swiper-pagination-fraction {
  bottom: 155px;
  left: 0;
  width: 30%;
}
#header .swiper-button-prev {
  position: static !important;
  margin-top: 0 !important;
  transition: 300ms all;
}
#header .swiper-button-prev:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 20px !important;
  height: 20px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(180deg);
}
#header .swiper-button-prev:hover {
  opacity: 0.5;
}
#header .swiper-button-next {
  position: static !important;
  margin-top: 0 !important;
  transition: 300ms all;
}
#header .swiper-button-next:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 20px !important;
  height: 20px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#header .swiper-button-next:hover {
  opacity: 0.5;
}
#header .header-mini-logos {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  width: 100%;
}
#header .header-mini-logos .container {
  display: flex;
  align-items: center;
}
#header .header-mini-logos .mini-logo {
  width: 110px;
  height: 80px;
  padding: 3px;
  margin-right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 7px;
  overflow: hidden;
  transition: 300ms all;
  display: flex;
  justify-content: center;
  align-items: center;
  /*box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);*/
}
#header .header-mini-logos .mini-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: center;
}
#header .header-mini-logos .mini-logo:hover {
  background-color: #000000;
}
#header .social-media {
  border-radius: 10px;
  padding: 7px 12px;
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.6);
}
#header .social-media li {
  margin-bottom: 5px;
  transition: 300ms all;
}
#header .social-media li a {
  width: 26px;
  height: 26px;
  overflow: hidden;
  display: inline-block;
}
#header .social-media li a img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}
#header .social-media li:hover {
  opacity: 0.5;
}

#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  z-index: 999;
  display: flex;
  transition: 300ms all;
}
#mobile-menu .close-btn {
  width: 35%;
  height: 100%;
  background-color: transparent;
  transition: 300ms all;
}
#mobile-menu .left-section {
  width: 75%;
  height: 100%;
  background-color: #183159;
  padding-top: 30px;
  position: relative;
  transition: 300ms all;
  overflow: hidden;
}
#mobile-menu .left-section .logo {
  display: inline-block;
  width: 100%;
  height: 60px;
  overflow: hidden;
  margin-bottom: 30px;
}
#mobile-menu .left-section .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#mobile-menu .left-section ul li {
  margin-bottom: 5px;
  transition: 300ms all;
}
#mobile-menu .left-section ul li:hover {
  background-color: #f9a11b;
  padding-left: 10px;
}
#mobile-menu .left-section ul li a {
  color: #fff;
  padding: 8px 20px;
  display: block;
}

#footer {
  margin-top: 70px;
  background-color: #183159;
  padding: 30px 0;
}
#footer .footer-item {
  color: #fff;
}
#footer .footer-item .title {
  font-size: 22px;
  color: #f9a11b;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}
#footer .footer-item .text {
  font-size: 16px;
  line-height: 1.2;
}
#footer .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}
#footer .icon-item .icon {
  width: 40px;
  height: 40px;
  overflow: hidden;
  margin-bottom: 5px;
}
#footer .icon-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#footer .sub-title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  display: block;
}
#footer .social-media ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .social-media ul li {
  margin: 0 8px;
  transition: 300ms all;
}
#footer .social-media ul li:hover {
  opacity: 0.5;
}
#footer .social-media ul li a {
  width: 30px;
  height: 30px;
  display: inline-block;
  overflow: hidden;
}
#footer .social-media ul li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#footer .copyright {
  display: flex;
  flex-direction: column;
}
#footer .copyright .footer-logo {
  display: inline-block;
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin: 30px auto;
  transition: 300ms all;
}
#footer .copyright .footer-logo:hover {
  opacity: 0.5;
}
#footer .copyright .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
#footer .footer-links ul li {
  margin-bottom: 10px;
}
#footer .footer-links ul li a {
  font-size: 16px;
  color: #fff;
  transition: 300ms all;
}
#footer .footer-links ul li a:hover {
  opacity: 0.5;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
#footer .footer-contact ul li {
  margin-bottom: 10px;
}
#footer .footer-contact ul li a {
  font-size: 16px;
  color: #fff;
  transition: 300ms all;
  display: flex;
  align-items: center;
}
#footer .footer-contact ul li a .icon {
  width: 16px;
  height: 16px;
  overflow: hidden;
  margin-right: 15px;
}
#footer .footer-contact ul li a .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#footer .footer-contact ul li a:hover {
  opacity: 0.5;
}

.page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.page-title .title {
  margin: 0 auto;
  color: #18315a;
  font-size: 40px;
  padding: 5px 7px;
  border-bottom: 2px solid #f9a11b;
  display: inline-block;
  font-family: "SFPro-SemiBold";
}
.page-title .desc {
  font-size: 19px;
  line-height: 1.2;
  color: #183159;
  margin: 0 auto;
  margin-top: 20px;
  width: 80%;
  text-align: center;
}
.page-title .sub-title {
  font-size: 22px;
  color: #183159;
  margin-top: 7px;
}

#about-us {
  padding: 70px 0 30px 0;
  position: relative;
}
#about-us::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: -1;
  background-color: #183159;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}
#about-us .content {
  color: #183159;
  font-size: 18px;
  line-height: 26px;
}
#about-us .about-us-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 5px;
}
#about-us .about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 300ms all;
}
#about-us .about-us-image:hover img {
  transform: scale(1.1);
}

.button-right {
  margin: 15px 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.button-center {
  margin: 15px 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#activity {
  padding: 30px 0;
  position: relative;
}
#activity::after {
  content: "";
  position: absolute;
  top: 320px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: -1;
  background-color: #183159;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}
#activity .tab {
  overflow: hidden;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
#activity .tab button {
  background-color: inherit;
  float: left;
  border: 2px solid #ffa300;
  outline: none;
  cursor: pointer;
  padding: 9px 22px;
  transition: 0.3s;
  font-size: 17px;
  /*border-bottom: 3px solid transparent;*/
  color: #18315a;
  font-size: 23px;
  border-radius: 58px;
  margin-right: 20px;
}
#activity .tab button:hover,
#activity .tab button.active {
  /*border-color: #183159;*/
  background-color: #ffa300;
}
#activity .tabcontent {
  display: none;
  padding: 6px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}
#activity .swiper {
  width: 100%;
  height: 100%;
}
#activity .swiper-slide {
  text-align: center;
  font-size: 18px;
  padding: 0 70px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#activity .swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  transition: 300ms all;
}
#activity .swiper-button-prev:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 50px !important;
  height: 50px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(180deg);
}
#activity .swiper-button-prev:hover {
  opacity: 0.5;
}
#activity .swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  transition: 300ms all;
}
#activity .swiper-button-next:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 50px !important;
  height: 50px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#activity .swiper-button-next:hover {
  opacity: 0.5;
}
#activity .swiper-button-next {
  right: 0;
}
#activity .swiper-button-prev {
  left: 0;
}
#activity .swiper-slide img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
#activity .detail {
  display: flex;
  align-items: center;
  padding-left: 80px;
  margin-top: 30px;
}
#activity .detail .icon {
  width: 100px;
  height: 100px;
  overflow: hidden;
  object-fit: contain;
  object-position: center;
  margin-right: 20px;
}
#activity .detail .text {
  color: #183159;
}
#activity .detail .text .title {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: bold;
}
#activity .detail .text .desc {
  margin-top: 7px;
  font-size: 19px;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.center-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

#bower-now {
  padding: 0 0 0 0;
}
#bower-now .content {
  width: 100%;
  background-color: #183159;
  padding: 30px 0;
}
#bower-now .content-v {
  padding: 0 200px;
}
#bower-now .content .item {
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  overflow: hidden;
  padding: 19px 0;
  text-align: center;
  height: 100%;
}
#bower-now .content .item strong {
  font-size: 52px;
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

#partners {
  padding: 10px 0;
  position: relative;
  padding-bottom: 35px;
  background-color: #183159;
}
/*#partners::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: -1;
  background-color: #183159;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}*/
#partners .container-fluid {
  display: flex;
  align-items: center;
}
#partners .partners-box {
  background-color: #fff;
  color: #000000;
  padding: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
#partners .partners-box .title {
  font-size: 22px;
  text-align: center;
  margin-bottom: 7px;
}
#partners .partner-list {
  display: flex;
  align-items: center;
  margin-right: 19px;
  flex: 1;
  overflow: hidden;
}
#partners .partner-list .swiper {
  width: 100%;
  height: 100%;
}
#partners .partner-list .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#partners .partner-list .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}
#partners .partner-list .swiper-slide {
  width: 190px;
  height: 100px;
  padding-right: 30px;
}
#partners .partner-list .swiper-slide:not(:last-child) {
  border-right: 1px solid #f9a11b;
}

#comments {
  padding: 70px 45px 0 0;
  position: relative;
}
#comments .swiper-button-next {
  right: 15px;
  width: 50px !important;
  height: 50px !important;
  transition: 300ms all;
}
#comments .swiper-button-next:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 50px !important;
  height: 50px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#comments .swiper-button-next:hover {
  opacity: 0.5;
}
#comments .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: static !important;
}
#comments .swiper .swiper-slide:first-child {
  border: none !important;
}
#comments .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  border-left: 1px solid #f9a11b;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#comments .comment-item {
  display: flex;
  padding-left: 15px;
}
#comments .comment-item .left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#comments .comment-item .left .comment-logo {
  width: 80;
  height: 80px;
  overflow: hidden;
}
#comments .comment-item .left .comment-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#comments .comment-item .left .comment-img {
  margin-top: 50px;
  width: 270px;
  height: 400px;
  background-color: #183159;
  position: relative;
  margin-right: 60px;
}
#comments .comment-item .left .comment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: -30px;
  right: -30px;
}
#comments .comment-item .right {
  display: flex;
  flex-direction: column;
  padding-right: 3px;
}
#comments .comment-item .right .profile {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px auto;
}
#comments .comment-item .right .profile img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
#comments .comment-item .right .name {
  display: block;
  color: #183159;
  font-weight: 600;
  position: relative;
  text-align: start;
  font-size: 45px;
}
#comments .comment-item .right .name::after {
  content: "";
  width: 88%;
  height: 23px;
  background-color: #f9a11b;
  /* background-color: #183159; */
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#comments .comment-item .right .text {
  text-align: start;
  font-size: 19px;
  font-weight: 400;
  color: #183159;
  margin-top: 30px;
  line-height: 22px;
}

#portfolio {
  background-color: #183159;
  padding: 15px 0 30px 0;
  position: relative;
}
#portfolio .swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  left: 30px !important;
  margin-top: 0 !important;
  transition: 300ms all;
}
#portfolio .swiper-button-prev:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 50px !important;
  height: 50px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(180deg);
}
#portfolio .swiper-button-prev:hover {
  opacity: 0.5;
}
#portfolio .swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  right: 30px !important;
  margin-top: 0 !important;
  transition: 300ms all;
}
#portfolio .swiper-button-next:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 50px !important;
  height: 50px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#portfolio .swiper-button-next:hover {
  opacity: 0.5;
}
#portfolio .swiper {
  width: 100%;
  height: 100%;
  position: static !important;
}
#portfolio .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  width: 200px;
  height: 200px;
  overflow: hidden;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#portfolio .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.color-white {
  color: #fff !important;
}

#map {
  width: 100%;
  height: 400px;
}

#team {
  padding: 70px 0;
  position: relative;
}
#team .container {
  position: relative;
}
#team .controller {
  position: absolute;
  min-width: 300px;
  right: 150px;
  bottom: 100px;
  z-index: 80;
}
#team .controller a {
  margin-top: 25px;
  margin-left: 20px;
}
#team .swiper-pagination-bullets {
  position: static !important;
  width: auto !important;
}
#team .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  background-color: #183159 !important;
  opacity: 1 !important;
}
#team .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #f9a11b !important;
}
#team .swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  position: static !important;
  margin-top: 0;
  transition: 300ms all;
}
#team .swiper-button-prev:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 40px !important;
  height: 40px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(180deg);
}
#team .swiper-button-prev:hover {
  opacity: 0.5;
}
#team .swiper-button-next {
  width: 40px !important;
  height: 40px !important;
  position: static !important;
  margin-top: 0;
  transition: 300ms all;
}
#team .swiper-button-next:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 40px !important;
  height: 40px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#team .swiper-button-next:hover {
  opacity: 0.5;
}
#team::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color: #183159;
}
#team .team-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
#team .team-image img {
  width: 100%;
  height: 100%;
  object-position: center bottom;
  object-fit: contain;
}
#team .author .name {
  font-size: 42px;
  color: #183159;
  font-weight: bold;
}
#team .content {
  font-size: 16px;
  line-height: 20px;
  color: #183159;
  margin-top: 40px;
}
#team .swiper {
  width: 100%;
  height: 100%;
  position: static;
}
#team .swiper-slide {
  background: #fff;
}

.marker {
  background-image: url("../img/icons/map-marker-ico.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
}

#contact {
  padding: 70px 0 0 0;
}
#contact .contact-image {
  width: 250px;
  height: 190px;
  overflow: hidden;
}
#contact .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #eaeaea;
  border-radius: 100px;
  margin-bottom: 20px;
  padding: 15px;
  outline: none;
  transition: 300ms all;
  /*box-shadow: 0px 1px 10px rgb(0 0 0 / 10%);*/
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f9a11b;
}
.contact-form textarea {
  border-radius: 20px !important;
}
.contact-form button {
  outline: none;
  width: 100%;
  border-radius: 100px;
  padding: 10px;
}

#contact-map {
  width: 90%;
  height: 350px;
}

.no-content {
  min-height: auto !important;
  margin-bottom: 100px;
}

#company {
  padding-top: 30px;
  margin-bottom: 80px;
}
#company .partner-img {
  width: calc(25% - 40px);
  height: 70px !important;
  margin: 20px;
}
#company .partner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#company .d-flex {
  
}
#company .partner-img:not(:last-child) {
  border-right: 1px solid #f9a11b;
  padding-right: 20px;
}
#company .d-flex:not(:last-child) {
  border-bottom: 5px solid #183159;
  padding-bottom: 12px;
  padding-top: 12px;
}

.bg-title {
  background-color: #183159;
  padding: 30px 0;
}
.bg-title .page-title {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.bg-title .page-title .title {
  color: #fff;
  border-bottom: none;
}

#portfolio-detail .projectDetailTextC {
  width: 100%;
  height: 100%;

}

#portfolio-detail .projectDetailTextV {
  width: 96%;
  height: 96%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgb(0 0 0 / 40%);
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  border-radius: 10px;
  overflow: hidden;
}

#portfolio-detail .projectDetailTextC .title {
  font-size: 22px;
  font-family: "SFPro-SemiBold";
  margin-bottom: 5px;
}

#portfolio-detail .image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  /*margin-bottom: 30px;*/
  border-radius: 10px;
}
#portfolio-detail .image img {
  width: 96%;
  height: 96%;
  object-fit: cover;
  object-position: center;
  transition: 300ms all;
  border-radius: 10px;
}
#portfolio-detail .image:hover img {
  transform: scale(1.01);
  transform-origin: right bottom;

}

.bottom-line {
  position: relative;
  padding-bottom: 100px;
}
.bottom-line::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #183159;
}

#team-detail .bg-title {
  margin-bottom: 70px;
}
#team-detail .col-lg-4 {
  margin-bottom: 60px;
}
#team-detail .team-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
}
#team-detail .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 300ms all;
  
}
#team-detail .team-img:hover img {
  transform: scale(1.05);
}
#team-detail .text {
  margin-top: 15px;
  color: #183159;
  line-height: 26px;
}
#team-detail .team-name {
  margin: 0 auto;
  color: #18315a;
  font-size: 32px;
  padding-top: 10px;
  border-bottom: 2px solid #f9a11b;
  display: inline-block;
  font-family: "SFPro-Regular";
}
#team-detail .job {
  color: #183159;
  font-size: 22px;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

#contact-detail {
  position: relative;
}
#contact-detail .whatsapp {
  display: inline-block;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 70px;
  height: 70px;
  transition: 300ms all;
  z-index: 80;
}
#contact-detail .whatsapp:hover {
  opacity: 0.5;
}
#contact-detail .whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#contact-detail .bg-title {
  margin-bottom: 50px;
}
#contact-detail .contact-form {
  margin-bottom: 40px;
}
#contact-detail .contact-item a {
  display: flex;
  align-items: center;
  color: #183159;
  transition: 300ms all;
}
#contact-detail .contact-item a:hover {
  color: #ff9f00;
}
#contact-detail .contact-item a .icon {
  width: 40px;
  height: 40px;
  overflow: hidden;
  margin-right: 30px;
}
#contact-detail .contact-item a .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#services-detail .bg-title {
  margin-bottom: 20px;
}
#services-detail .image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  box-shadow: 6px 5px 14px 0px #0000004d;

 -webkit-border-radius: 10px;
 -moz-border-radius: 10px;
 border-radius: 10px;

 border: 2px solid white;
}
#services-detail .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 300ms all;
  border-radius: 10px;
}
#services-detail .image:hover img {
  transform: scale(1.05);
}
#services-detail .text {
  margin-top: 15px;
  color: #183159;
  line-height: 26px;
}
#services-detail .service-item {
  margin-top: 60px;
}
#services-detail .service-item .title {
  position: relative;
  font-size: 26px;
  color: #183159;
  font-weight: bold;
}
#services-detail .service-item .title::after {
  content: "";
  width: 100%;
  height: 7px;
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: -1;
  background-color: #f9a11b;
}
#services-detail .detail {
  margin-top: 15px;
}
#services-detail .detail ul {
  list-style-type: disc;
  padding-top: 10px;
}
#services-detail .detail ul li {
  margin-bottom: 10px;
  color: #183159;
  font-size: 17px;
}
#services-detail .service-image {
  width: 100%;
  /*height: 300px;*/
  overflow: hidden;
  margin-top: 100px;
}
#services-detail .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.contact-button-section {
  margin-top: 30px;
}
.contact-button-section span {
  width: 100%;
  display: block;
  text-align: center;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  transition: 300ms all;
  background-color: #f9a11b;
}

#project-detail .project-header {
  background-color: #183159;
  padding-top: 30px;
}
#project-detail .project-header .page-title .title {
  color: #fff !important;
}
#project-detail .project-header .project-logo {
  width: 150px;
  height: 150px;
  background-color: #fff;
  padding: 10px;
  overflow: hidden;
  margin-left: 30px;
}
#project-detail .project-header .project-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#project-detail .project-header .project-header-item {
  color: #fff;
}
#project-detail .project-header .project-header-item .title {
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
  padding-right: 5px;
  margin-bottom: 7px;
  border-bottom: 1px solid #f9a11b;
}
#project-detail .project-header .project-header-item .desc {
  display: block;
  margin-bottom: 25px;
}

#project-photos {
  padding: 40px 0;
}
#project-photos .small-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 10px;
}
#project-photos .small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 300ms all;
  
}
#project-photos .small-image:hover img {
  transform: scale(1.05);
}
#project-photos .big-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-bottom: 30px;
}
#project-photos .big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 300ms all;
}
#project-photos .big-image:hover img {
  transform: scale(1.05);
}

@media only screen and (max-width: 1200px) {
  #header .logo {
    width: 150px;
    height: 50px;
  }
}
@media only screen and (max-width: 998px) {
  #team .team-image {
    height: 350px !important;
  }
  #project-detail .col-lg-3 {
    display: flex;
    flex-direction: column;
  }
  #project-detail .project-logo {
    margin: 0 auto !important;
  }
  #project-detail .project-header-item {
    margin-top: 30px;
    text-align: center;
  }
  #company .partner-img {
    width: calc(50% - 40px);
    margin-bottom: 30px;
  }
  #company .partner-img:nth-child(2n) {
    border: none !important;
  }
  #contact-detail .contact-item {
    margin-bottom: 20px;
  }
  #contact-detail .contact-item a {
    justify-content: center;
  }
  #header .mid {
    display: none;
  }
  #header .mobile-menu-btn {
    display: block !important;
  }
  .about-us-image {
    margin-bottom: 30px;
  }
  #bower-now .col-lg-3:not(:last-child) {
    margin-bottom: 30px;
  }
  #team .team-image {
    margin-bottom: 30px;
  }
  #team .controller {
    margin: 30px 0;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: static !important;
  }
  #team .controller a {
    margin-left: 0 !important;
  }
  #contact .contact-image {
    margin-bottom: 30px;
  }
  #footer .footer-item {
    margin-bottom: 50px;
    text-align: center;
  }
  #footer .footer-item ul li a {
    justify-content: center !important;
  }

  #header .header-video {
    height: 100vh !important;
  }

  #header .header-video-text {
    font-size: 32px;
    width: 100%;
  }

  #header .header-mini-logos .container {
    justify-content: center;
  }
  #activity .tab {
    margin-bottom: 60px;
  }
  #activity::after {
    top: 380px;
  }

  #activity .tab button {
    margin: 4px 46px;
  }
  .page-title {
    margin-bottom: 30px !important;
  }
  #bower-now .content-v {
    padding: 0 60px !important;
  }
}
@media only screen and (max-width: 768px) {
  #activity .swiper {
    width: 100%;
  }
  #activity .swiper .swiper-slide {
    padding: 0 !important;
  }
  #activity .detail {
    padding: 0 !important;
  }
  #comments .comment-img {
    margin-bottom: 30px;
  }
  #comments .comment-item {
    flex-direction: column !important;
  }
}
@media only screen and (max-width: 578px) {
  #company .partner-img {
    width: 100%;
    margin-bottom: 30px;
    border: none !important;
  }
  .partner-list {
    margin-left: 15px !important;
  }
  #activity .detail {
    flex-direction: column !important;
  }
  #activity .detail .icon {
    margin-bottom: 20px;
  }
  #header .big-title {
    font-size: 36px !important;
  }
  #header .desc {
    font-size: 20px !important;
  }
}

.mavi_serit {
  width: 100%;
  height: 70px;
  background-color: #183159;
}

#team-detail .title2 {
  margin: 0 auto;
  color: #18315a;
  font-size: 45px;
  padding: 5px 7px;
  border-bottom: 2px solid #f9a11b;
  display: inline-block;
  font-family: "SFPro-Regular";
}

#team-detail .title2 strong {
  font-family: "SFPro-SemiBold";
}

#portfolio-detail .projectsRow {
  padding-left: 15px;
}

.service-image .swiper-button-prev {
  margin-top: 0 !important;
  transition: 300ms all;
}
.service-image .swiper-button-prev:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 60px !important;
  height: 60px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(180deg);
}
.service-image .swiper-button-prev:hover {
  opacity: 0.5;
}

.service-image .swiper-button-next {
  margin-top: 0 !important;
  transition: 300ms all;
}
.service-image .swiper-button-next:after {
  content: "";
  background-image: url(../img/icons/bg-cricle-arrow-ico.svg);
  width: 60px !important;
  height: 60px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.service-image .swiper-button-next:hover {
  opacity: 0.5;
}

.tasimacilik-detail .main-title {
  font-family: "SFPro-SemiBold";
  font-size: 32px;
  color: #183159
}

.tasimacilik-detail .sub-title {
  font-family: "SFPro-Medium";
  font-size: 26px;
  margin-top: 22px;
  color: #183159
}

.tasimacilik-detail .text {
  font-size: 18px;
  color: black !important;
  line-height: 28px !important;
}

.tasimacilik-detail ul {
  list-style-type: disc;
}

.tasimacilik-detail li {
  font-size: 16px;
  margin-top: 13px;
  line-height: 21px;
}

.tasimacilik-detail .main-title::after {
  content: "";
  width: 88%;
  height: 23px;
  background-color: #f9a11b;
  position: absolute;
  left: 0;
  z-index: -1;
}

.musavirlik-detail .main-title {
  font-size: 24px;
  font-family: "SFPro-SemiBold";
}

.musavirlik-detail .banner img {
  width: 100%;
  border-radius: 10px;
}

.musavirlik-detail ul {
  list-style-type: disc;
}

.musavirlik-detail li {
  font-size: 16px;
  margin-top: 13px;
  line-height: 21px;
}