:root {
    --primary: #897591;
    --secondary: #594063;
    --third: #d9c3e1;
}

body {
  font-family: "Montserrat", sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

/* -------------------------------- 

1. Auto-Hiding Navigation - Simple

-------------------------------- */
.cd-auto-hide-header {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 123px;
  background-color: #ffffff;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.cd-auto-hide-header::after {
  clear: both;
  content: "";
  display: block;
}
.cd-auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media only screen and (min-width: 1024px) {
  .cd-auto-hide-header {
    height: 123px;
    background: var(--primary);
  }
}
@media only screen and (max-width: 1024px) {
  .cd-auto-hide-header {
    height: 95px;
  }

}



.over-none{
  overflow:hidden;
}

.cd-secondary-nav {
  position: relative;
  z-index: 1;
  clear: both;
  width: 100%;
  height: 56px;
  background-color: #25283D;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.cd-secondary-nav.fixed {
  position: fixed;
  top: 103px;
}
.cd-secondary-nav.slide-up {
  -webkit-transform: translateY(-103px);
      -ms-transform: translateY(-103px);
          transform: translateY(-103px);
}
@media only screen and (min-width: 1024px) {
  .cd-secondary-nav.fixed {
    top: 123px;
    /* fixes a bug where nav and subnab move with a slight delay */
    box-shadow: 0 -6px 0 #25283D;
    z-index: 99;
  }
  .cd-secondary-nav.slide-up {
    -webkit-transform: translateY(-123px);
        -ms-transform: translateY(-123px);
            transform: translateY(-123px);
  }
}


.loader__icon:after {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border: 6px solid #f2f2f2;
  border-top: 6px dotted #f2f2f2;
  border-bottom: 6px dotted #f2f2f2;
  border-radius: 50%;
  animation: loading 2s infinite;
}



@keyframes loading {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(360deg);
  }
}

.loader {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  transition: width 0s 1.4s ease;
}
.section-one .photo-right p{
  line-height: 20px;
}
.section-one .photo-left p{
  line-height: 20px;
}
.loader .loader__icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  transition: opacity .5s ease;
}
.loader .loader__icon svg {
  transform-origin: 0 0;
}
.loader .loader__tile {
  position: absolute;
  left: 0;
  width: 0;
  height: 20%;
  background-color: var(--primary);
  transition: width .7s ease;
}
.loader .loader__tile:nth-child(0) {
  top: calc(-1 * 20%);
  transition-delay: -0.2s;
}
.loader .loader__tile:nth-child(1) {
  top: calc(0 * 20%);
  transition-delay: 0s;
}
.loader .loader__tile:nth-child(2) {
  top: calc(1 * 20%);
  transition-delay: 0.2s;
}
.loader .loader__tile:nth-child(3) {
  top: calc(2 * 20%);
  transition-delay: 0.4s;
}
.loader .loader__tile:nth-child(4) {
  top: calc(3 * 20%);
  transition-delay: 0.6s;
}
.loader .loader__tile:nth-child(5) {
  top: calc(4 * 20%);
  transition-delay: 0.8s;
}
.loader--active {
  width: 100%;
  transition-delay: 0s;
  display:none;
}
.loader--active .loader__icon {
  opacity: 0;
  transition: opacity .5s 1.4s ease;
}
.loader--active .loader__tile {
  width: 100%;
}
.loader--active .loader__tile:nth-child(0) {
  transition-delay: -0.2s;
}
.loader--active .loader__tile:nth-child(1) {
  transition-delay: 0s;
}
.loader--active .loader__tile:nth-child(2) {
  transition-delay: 0.2s;
}
.loader--active .loader__tile:nth-child(3) {
  transition-delay: 0.4s;
}
.loader--active .loader__tile:nth-child(4) {
  transition-delay: 0.6s;
}
.loader--active .loader__tile:nth-child(5) {
  transition-delay: 0.8s;
}

header {
  position: relative;
}
header .blue-top {
  background: #222;
  position: relative;
  z-index: 999;
}
header .blue-top .social {
  position: absolute;
  right: 0;
  top: 20px;
  width: 100%;
  text-align: right;
}
header .blue-top .social ul {
  position: relative;
  z-index: 99;
}
header .blue-top .social a {
  padding: 10px 15px;
  background: #fd5d5d;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  display: block;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
header .blue-top .social a:hover {
  background: #a2c544;
}
header .blue-top .social a i {
  color: #003149;
}
header .blue-top .social .btn-secondary:not(:disabled):not(.disabled).active, header .blue-top .social .btn-secondary:not(:disabled):not(.disabled):active, header .blue-top .social .show > .btn-secondary.dropdown-toggle {
   background-color: #222;
   border-color: #222;
   padding: 11.5px;
   border-radius: 0;
   color: #fff;
   font-weight: 600;
   line-height: 1.5;
}
header .blue-top .social .btn-secondary {
   background-color: #b7df4f;
  border-color: #b7df4f;
  padding: 11.5px;
  border-radius: 0;
  color: #003149;
  line-height: 1.5;
  font-weight: 600;
}
header .blue-top .social a:hover {
  background: #a2c544;
}
header .blue-top .social .dropdown-menu {
  min-width: 59px;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
header .blue-top .social .btn-secondary:not(:disabled):not(.disabled).active:focus, header .blue-top .social .btn-secondary:not(:disabled):not(.disabled):active:focus, header .blue-top .social .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none;
}
header .blue-top .link {
  text-align: center;
  position: relative;
  z-index: 2;
}
header .blue-top .link a {
  padding: 15px 0;
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.cerez-politikasi {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 15px 0;
  z-index: 99;
  display: none;
  background: #12394d;
}
.cerez-politikasi p {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 19px;
}
.cerez-politikasi .btn-close {
  color: #fff;
}
.cerez-politikasi .btn-close .far {
  color: #fff;
  font-size: 25px;
}

.politika-page .text {
  margin-bottom: 170px;
  margin-top: 0 !important;
}
.politika-page .text .caption {
  text-align: left;
  margin-top: 0;
}
.politika-page .text .caption h6 {
  font-size: 1.2em;
  font-weight: 700;
  color: #2C363B;
  margin-bottom: 25px;
  padding: 10px 0;
  position: relative;
  margin-bottom: 15px;
}
.politika-page .text .caption h6:before {
  content: "";
  position: absolute;
  left: 0;
  background: #0a5587;
  width: 40px;
  height: 2px;
  bottom: 0;
}
.politika-page .text p {
  margin-bottom: 20px;
  font-size: 1em;
  font-weight: 400;
  color: #2C363B;
  line-height: 20px;
}
.politika-page .sidebar h6 {
  font-size: 1.2em;
  font-weight: 500;
  color: #fff;
  padding: 20px 0;
  padding-left: 0px;
  background: #0a5587;
  padding-left: 20px;
  margin-bottom: 3px;
  -webkit-border-top-left-radius: 15px;
  -webkit-border-top-right-radius: 15px;
  -moz-border-radius-topleft: 15px;
  -moz-border-radius-topright: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
}
.politika-page .sidebar h6:after {
  content: "";
  width: 77px;
  height: 2px;
  background: #f7b63b;
  position: absolute;
  bottom: -7px;
  left: 0;
}
.politika-page .tree-menu ul > li a {
  font-size: 0.9em;
  font-weight: 500;
  color: #0a5587;
  background: #f1f0f0;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 10px 40px;
  padding-left: 25px;
}
.politika-page .tree-menu li a {
  padding: 10px 20px;
  position: relative;
  line-height: 20px;
  margin-bottom: 3px;
  background: #4b92c1;
  font-size: 0.9em;
  font-weight: 500;
  color: #fff;
  display: block;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.politika-page .tree-menu li a:hover {
  background: #2972a2;
  color: #fff;
}
.politika-page .tree-menu ul {
  display: none;
  position: relative;
  width: 100%;
  background: #4b92c1;
  padding-left: 15px;
}
.politika-page .tree-menu ul ul {
  background: #35518a;
}
.politika-page .tree-menu ul ul li {
  line-height: 25px;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 0;
}
.politika-page .tree-menu ul ul li a {
  background: #f4f4f4;
  color: #898989;
}
.politika-page .tree-menu li.active ul {
  display: block;
}
.politika-page .tree-menu li.active ul ul {
  display: none;
}
.politika-page .tree-menu ul li ul {
  display: none;
  background: #dadada;
}
.politika-page .tree-menu ul > li a:before {
  display: none;
}
.politika-page .tree-menu i {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  -webkit-transition: all 300ms ease-in 0s;
  -moz-transition: all 300ms ease-in 0s;
  -o-transition: all 300ms ease-in 0s;
  transition: all 300ms ease-in 0s;
  color: #fff;
}
.politika-page .tree-menu ul li:hover i {
  color: #fff;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.owl-new .owl-nav {
  margin-top: 10px;
  position: absolute;
  top: 37%;
  width: 100%;
  left: 0;
}
.owl-new .owl-nav span {
  font-size: 58px;
  background: transparent;
  font-weight: 400;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #0e64ad;
}
.owl-new .owl-nav [class*=owl-]:hover {
  background: none;
  opacity: 0.8;
  color: #108673;
}
.owl-new .owl-nav button:focus {
  outline: none !important;
}
.owl-new .owl-nav .owl-prev {
  position: absolute;
  left: -42px;
}
.owl-new .owl-nav .owl-next {
  position: absolute;
  right: -42px;
}

.navbar {
  padding: 5px 0 !important;
  height: 82px;
}

.navbar-expand-xl .navbar-collapse {
  position: relative;
  background: transparent;
  z-index: 99;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.navbar-dark .navbar-nav .nav-link {
  font-size: 0.9em;
  font-weight: 600;
  color: #ffffff;
  padding: 20px 30px;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
}
.navbar-dark .navbar-nav .nav-link:hover {
  border-radius: 5px;
}
.navbar-dark .navbar-nav .nav-link:before {
  position: absolute;
  left: 0;
  content: "";
  width: 0px;
  background: #fff;
  bottom: 0;
  height: 3px;
  opacity: 0;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-dark .navbar-nav .nav-link:hover:before {
  opacity: 1;
  width: 100%;
}

.navbar-brand  {
    height: 100%;
    
}

.navbar-brand img {
    max-height: 100%;
    display: inline-block;
}

.nav-item.show .nav-link:before {
  opacity: 1;
  width: 100%;
}

.noPadding {
  padding: 0;
}

a:hover {
  text-decoration: none;
}

.carousel-indicators {
  bottom: 140px;
  right: 9vw;
  left: initial;
  margin-right: 65px;
  display: table-cell;
  vertical-align: middle;
  float: none;
}

.carousel-indicators li {
  display: block;
  opacity: 1;
  background: transparent;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.5em;
  position: relative;
  margin-bottom: 23px;
}
.carousel-indicators li:before {
  content: "\f0da";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  left: -30px;
  color: #fff;
  font-size: 1em;
  top: 0px;
  opacity: 0;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.carousel-indicators .active:before {
  opacity: 1;
}

.lang-drop ul li {
  padding: 5px;
  border: 1px solid #f2f2f2;
  height: 54px;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.lang-drop ul li:hover {
  background: #f3f3f3;
}
.lang-drop ul li .search {
  position: relative;
  top: -7px;
  left: -5px;
}
.lang-drop ul li:nth-child(2) {
  border-right: 0;
  border-left: 0;
}

.navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
  color: #003149 !important;
}

/* adds some margin below the link sets  */
.navbar .dropdown-menu div[class*="col"] {
  margin-bottom: 1rem;
}

.navbar .dropdown-menu {
  border: none;
  z-index: 9;
  background-color: transparent !important;
  width: 400px;
  right: 0;
  margin: 0 auto;
  margin-top: 32px;
  left: 0;
  transition: height 0.3s ease-out;
  border: none !important;
  height: 0;
  overflow: hidden;
  padding-bottom: 0;
}
.navbar .dropdown-menu h6 {
  font-size: 1em;
  font-weight: 600;
  color: #0b3e8a;
  text-transform: uppercase;
}
.navbar .dropdown-menu .bg-grey {
  background-color: #ffffff;
  padding-top: 25px;
}
.navbar .dropdown-menu .bg-grey .nav-item {
  padding: 0 !important;
  margin: 0;
  position: relative;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar .dropdown-menu .bg-grey .nav-item a {
  font-size: 1em;
  font-weight: 500;
  color: #003149;
  padding: 15px 0;
  display: block;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border-bottom: 1px solid #dcdcdc;
}
.navbar .dropdown-menu .bg-grey .nav-item a:hover {
  color: #95c121;
}
.navbar .dropdown-menu .bg-grey .nav-item .nav-link {
  display: block;
  width: 100%;
  position: relative;
  height: 100%;
  z-index: 99;
}
.navbar .dropdown-menu .bg-grey .nav-item:hover:before {
  opacity: 1;
}
.navbar .dropdown-menu .bg-grey .nav-item img {
  margin-bottom: 15px;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.navbar .dropdown-menu .bg-grey .nav-item h6 {
  margin-bottom: 10px;
  min-height: 31px;
  font-size: 1em;
  font-weight: 500;
  color: #e8e8e8;
}
.navbar .dropdown-menu .bg-grey .nav-item p {
  font-size: 1em;
  font-weight: 400;
  color: #e8e8e8;
  line-height: 20px;
}
.navbar .dropdown-menu .bg-grey .nav-item .box-img-first {
  background: #e8e8e8;
}
.navbar .dropdown-menu .bg-grey .nav-link {
  padding: 0 !important;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.index-page header {
  z-index: 9;
  background: #fff;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.content {
  position: relative;
  z-index: 1;
}
.index-page{
  padding-top: 123px;
}
.lang-drop {
  margin-top: 8px;
}

.padRight {
  padding-right: 0;
}

.index-page .section-one {
  padding-top: 90px;
  position: relative;
  padding-bottom: 50px;
}
.index-page .section-one:after {
  content: "";
  width: 485px;
  height: 190px;
  position: absolute;
  top: 50px;
  right: 0;
  background: url("../img/ritim.png");
  background-position: no-repeat;
  background-size: 100% 100%;
}
.index-page .section-one img {
  margin-bottom: 20px;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  overflow: hidden;

}
.index-page .section-one img:hover{
 box-shadow:0px 2px 16px rgba(0, 0, 0, 0.61);
}

.index-page .section-one .photo-left {
  text-align: right;
  padding-top: 80px;
}
.index-page .section-one .text {
  text-align: right;
  margin-top: 210px;
}
.index-page .section-one .text .caption {
  margin-bottom: 50px;
}
.index-page .section-one .text p {
  font-size: 1.1em;
  font-weight: 500;
  color: #9b9b9b;
  line-height: 35px;
}
.index-page .section-one .text .btn-cstm {
  margin-top: 50px;
}
.index-page .section-two {
  background: #f4f4f4;
}
.index-page .section-two .caption {
  overflow: auto;
  position: relative;
}
.index-page .section-two .caption h4 {
  float: left;
  z-index: 2;
  padding: 6px 0;
  padding-left: 70px;
}
.index-page .section-two .caption h4:hover:before {
  width: 100%;
}
.index-page .section-two .caption h4:before {
  content: "";
  /* background: var(--third); */
  width: 40%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.index-page .section-two .text {
  text-align: left;
  padding: 100px 0;
}
.index-page .section-two .text .caption {
  margin-bottom: 50px;
}
.index-page .section-two .text p {
  font-size: 1.1em;
  font-weight: 500;
  color: #9b9b9b;
  line-height: 35px;
}
.index-page .section-two .text .btn-cstm {
  margin-top: 50px;
}

    .index-page .section-two .image {
        height:100%;
    }
    .index-page .section-two .image img {
        height: 100%;
        width:100%;
        object-fit:cover;
    }
.index-page .section-two .video-popup {
  position: relative;
}
.index-page .section-two .video-popup img {
  width: 100%;
}
.index-page .section-two .video-popup a {
  display: block;
  height: 100%;
  width: 100%;
}
.index-page .section-two .video-popup i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--third);
  font-size: 5em;
}
.index-page .section-three {
  background: var(--secondary);
  padding: 50px 0;
}
.index-page .section-three .caption {
  text-align: center;
  margin-bottom: 50px;
  padding: 10px 0;
}
.index-page .section-three .caption h4 {
  color: #fff;
}
.index-page .section-three .item {
  text-align: center;
  margin-bottom: 30px;
}
.index-page .section-three .item .name h3 {
  font-size: 1em;
  font-weight: 300;
  color: #fff;
  line-height: 24px;
}
.index-page .section-three .item:hover .image img {
  transform: scale(1.09);
}
.index-page .section-three .image {
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  /*height: 231px;
  max-width: 231px;*/
  overflow: hidden;
}
.index-page .section-three .image img {
  overflow: hidden;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  /*height: 231px;
  max-width: 231px;*/
  margin: 0 auto;
}
.index-page .section-four {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 70px 0;
    background-size: cover !important;
    background-position: right !important;
}
.index-page .section-four .box {
  padding: 35px 50px;
  background: #fff;
}
.index-page .section-four .box .caption {
  margin-bottom: 45px;
}
.index-page .section-four .box .text p {
  font-size: 1em;
  font-weight: 500;
  color: #949494;
  line-height: 24px;
}
.index-page .section-five {
  position: relative;
}
.index-page .section-five .caption {
  margin-bottom: 45px;
}
.index-page .section-five .text {
  text-align: right;
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 9;
  padding-left: 160px;
}
.index-page .section-five .text p {
  font-size: 1em;
  font-weight: 500;
  color: #949494;
  line-height: 24px;
}
.index-page .section-six {
  background: #f7f7f7;
  padding-top: 55px;
  padding-bottom: 40px;
}
.index-page .section-six .prev-slide {
  width: 24px;
  height: 14px;
}
.index-page .section-six .prev-slide:before {
  content: "\f30a";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #003149;
}
.index-page .section-six .next-slide {
  width: 24px;
  height: 14px;
}
.index-page .section-six .next-slide:before {
  content: "\f30b";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #003149;
}
.index-page .section-six .owl-theme .owl-nav [class*=owl-]:hover {
  background: none;
}
.index-page .section-six .owl-nav {
  position: absolute;
  top: -46px;
  left: 0;
}
.index-page .section-six .caption {
  text-align: center;
  margin-bottom: 40px;
}
.index-page .section-six .text-right a {
  font-size: 1.1em;
  font-weight: 400;
  color: #003149;
  margin-bottom: 25px;
  display: block;
}
.index-page .section-six .text-right a i {
  margin-left: 20px;
}
.index-page .section-six .text {
  background: #fff;
  padding: 40px 80px;
  position: relative;
  padding-right: 50px;
  z-index: 2;
  margin-bottom: 80px;
}
.index-page .section-six .text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  top: 0;
  right: -300px;
}
.index-page .section-six .text h5 {
  font-size: 1.3em;
  font-weight: 500;
  color: #444444;
  margin-bottom: 15px;
  line-height: 40px;
  padding-right: 170px;
}
.index-page .section-six .text p {
  font-size: 1em;
  font-weight: 500;
  color: #444444;
  padding-right: 210px;
  line-height: 30px;
}
.index-page .section-six .text span {
  text-align: right;
  display: block;
  margin-top: 30px;
}
.index-page .section-six .image {
  position: relative;
  z-index: 9;
  top: 50px;
}
 .section-seven {
  background: var(--secondary);
  padding: 42px 0;
}
 .section-seven a {
  font-size: 1em;
  font-weight: 400;
  color: #fff;
  margin: 0 30px;
}

button:focus {
  outline: none !important;
}

.index-page .caption {
  overflow: auto;
  position: relative;
}
.index-page .caption h4{
  float: left;
  z-index: 2;
  padding: 6px 0;
  position: relative;
}
.index-page .caption h4:before {
  content: "";
  /* background: var(--third); */
  width: 70%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  color: #fff;
}
.index-page .caption h4:hover:before{
  width: 100%;
}
.index-page .section-one .my-auto:hover .caption h4:before{
  width: 100%;
}
.index-page .section-two .my-auto:hover .caption h4:before{
  width: 100%;
}
.index-page .section-four .mr-auto:hover .caption h4:before{
  width: 100%;
}
.index-page .section-five .mr-auto:hover .caption h4:before{
  width: 100%;
}
.hvr-bef:before{
  width: 100% !important;
}
.caption span {
  font-size: 1.5em;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 2;
}
.caption span:before {
  content: "";
  /* background: var(--third); */
  width: 91%;
  height: 110%;
  position: absolute;
  left: -80px;
  top: -1px;
  z-index: -1;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.section-three .caption span:hover:before{
  width: 170%;
}
.caption h4 {
  font-size: 24px;
  font-weight: 500;
  color: #003149;
}
.caption h4 span {
  font-size: 24px;
  font-weight: 500;
  color: #003149;
}

.corporate-page #kimiz {
  margin-top: 50px;
}

header {
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
  z-index: 9;
  position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: #fff;
    box-shadow: 0px 0px 10px #c5c5c5;
}

header.darkHeader {
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
  background: #0a5587;
}
header.darkHeader .search .fa-search:before {
  color: #fff;
}
header.darkHeader .navbar-brand img {
  filter: brightness(0) invert(1);
}
header.darkHeader .navbar-dark .navbar-nav .nav-link {
  color: #fff;
}
header.darkHeader .navbar-dark .navbar-nav .nav-link:hover {
  background: #fff;
  color: #0a5587 !important;
  border-radius: 5px;
}
header.darkHeader .navbar-dark .navbar-nav .bg-grey .nav-link:hover {
  background: transparent;
  color: #fff !important;
}

@media screen and (min-width: 992px) {
  /* remove the padding from the navbar so the dropdown hover state is not broken */
  /* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
  .navbar .nav-item {
    padding: 0 1px;
    margin: 0 .25rem;
  }

  /* makes the dropdown full width  */
  .navbar .dropdown {
    position: relative;
  }

  .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff;
  }

  /* shows the dropdown menu on hover */
  .navbar .dropdown .dropdown-menu.show {
    height: auto;
    transition: height 0.3s ease-in;
    margin-top: 5px;
    margin-left: 0;
    width: 630px;
  }

  .darkHeader .navbar .dropdown .dropdown-menu.show {
    margin-top: -2px;
  }

  .darkHeader .navbar .dropdown .dropdown-menu {
    margin-top: -2px;
  }

  .navbar .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fff;
  }
}
.box-img-first {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.box-img-first img {
  max-height: 200px;
}

/* #Progress
================================================== */
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(249, 121, 121, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: 'unicons';
  content: '\e84b';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #2272a7;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: 'unicons';
  content: '\e84b';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background-image: linear-gradient(298deg, var(--red), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: #2272a7;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #0a5587;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.noPad {
  padding: 0;
}

.slider {
  height: 640px;
  position: relative;
  margin-top: 0;
}
.slider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 35, 58, 0.4);
  z-index: 9;
}
.slider .image {
  text-align: center;
  height: 100%;
}
.slider .image img {
  height: 640px;
  width: 100%;
}
.slider .slide-item-section {
  height: 100%;
}
.slider .image-second {
  padding-top: 0;
  height: 100%;
  background: url("../img/slide-right.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
}
.slider .image-second img {
  max-height: 560px;
  height: auto;
  max-width: 100%;
  width: auto;
  position: relative;
  left: 999px;
  transition: left 1.8s;
  transition-timing-function: ease-out;
}
.slider .slide {
  height: 100%;
}
.slider .slide .carousel-inner {
  height: 640px;
}
.slider .slide .carousel-item {
  height: 100%;
}
.slider .carousel-item.active .slide-text {
  right: -170px;
  opacity: 1;
}
.slider .carousel-item.active .image-second img {
  left: 0;
}
.slider .slide-text {
  z-index: 9;
  width: 445px;
  padding: 35px;
  padding: 0 35px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 9.3%;
  background: #fff;
  height: 85%;
}
.slider .slide-text .text-bottom {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  padding: 0 30px;
}
.slider .slide-text h4 {
  font-size: 2.3em;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 40px;
  padding-left: 0;
}
.slider .slide-text p {
  font-size: 1em;
  font-weight: 400;
  color: #949494;
  line-height: 25px;
}
.slider .slide-text a {
  font-size: 1.1em;
  font-weight: 400;
  color: #004075;
  padding: 10px 58px;
  border: 1px solid #004075;
  background: transparent;
  margin-top: 50px;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.slider .slide-text a:hover {
  background: #004075;
  color: #fff;
}
.slider .slide-text a:after {
  display: none;
}

.politika {
  text-align: center;
}
.politika a {
  font-size: 0.8em;
  font-weight: 400;
  color: #fff;
  margin: 0 15px;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
}
.politika a:before {
  position: absolute;
  left: 0;
  content: "";
  width: 0px;
  background: #fff;
  bottom: -10px;
  height: 2px;
  opacity: 0;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.politika a:hover:before {
  opacity: 1;
  width: 40px;
}

.lizbon {
  position: relative;
  float: right;
}
.lizbon:before {
  position: absolute;
  left: 0;
  content: "";
  width: 0px;
  background: #fff;
  bottom: -10px;
  height: 2px;
  opacity: 0;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.lizbon:hover:before {
  opacity: 1;
  width: 40px;
}

.btn.focus, .btn:focus {
  box-shadow: none;
}

.btn-cstm {
  font-size: 0.9em;
  font-weight: 400;
  color: #fff;
  margin-top: 40px;
  padding: 12px 60px;
  border-radius: 0;
  background: var(--secondary);
  position: relative;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.index-page .btn-cstm {
  padding-left: 40px;
  padding-right: 25px;
  font-size: 0.9em;
  font-weight: 600;
  color: #fff;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.index-page .btn-cstm:hover {
  background: var(--primary);
  color: #fff;
}
.index-page .btn-cstm i {
  margin-left: 30px;
}
.index-page .green-btn .btn-cstm {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  cursor:pointer;
}
.index-page .green-btn .btn-cstm:hover {
  color: var(--third);
  background: transparent;
}
.index-page .owl-pro .text span {
  font-size: 1em;
  font-weight: 600;
  color: #003149;
}
.index-page .owl-pro .text span i {
  margin-left: 30px;
}

footer .logo img {
  filter: brightness(0) invert(1);
}
footer .social-list {
  margin-top: 40px;
  margin-left: 40px;
}
footer .social-list i {
  color: #5b5b5b;
}
footer .social-list li {
  margin: 0 5px;
}
footer .f-logo img {
  width: 195px;
}
footer .footer-top {
  background: #ffffff;
  padding: 20px 0;
  padding-top: 40px;
  overflow: hidden;
  border-top: 5px solid #167dbf;
}
footer .footer-top .dark-blue {
  position: relative;
}
footer .footer-top .dark-blue:after {
  content: "";
  width: 620%;
  height: 119%;
  position: absolute;
  left: 0;
  bottom: -20px;
  background: #235983;
  z-index: 1;
}
footer .footer-top .dark-blue .f-list {
  position: relative;
  z-index: 9;
  padding-left: 50px;
}
footer .footer-top b {
  margin-bottom: 15px;
  display: block;
  font-size: 1em;
  font-weight: 600;
  color: #ffffff;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
}
footer .footer-top b:before {
  position: absolute;
  left: 0;
  content: "";
  width: 0px;
  background: #fff;
  bottom: -10px;
  height: 2px;
  opacity: 0;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
footer .footer-top b:hover:before {
  opacity: 1;
  width: 40px;
}
footer .footer-top .f-list label {
  font-size: 0.9em;
  font-weight: 600;
  color: #0e64ad;
  margin-bottom: 20px;
}
footer .footer-top .f-list a {
  font-size: 0.9em;
  font-weight: 400;
  color: #7b7b7b;
  line-height: 33px;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
}
footer .footer-top .f-list a:before {
  content: "-";
  opacity: 0;
  position: absolute;
  left: -10px;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
footer .footer-top .f-list a:hover:before {
  opacity: 1;
}
footer .c-item {
  margin-bottom: 5px;
}
footer .c-item b {
  margin-bottom: 15px;
  font-size: 1.1em;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
}
footer .c-item img {
  margin-right: 15px;
}
footer .c-item p {
  font-size: 0.9em;
  font-weight: 400;
  color: #eeeeee;
  line-height: 25px;
  margin-left: 35px;
}
footer .c-item span {
  font-size: 0.9em;
  font-weight: 400;
  color: #1c5179;
  position: relative;
  line-height: 23px;
}
footer .c-item span:before {
  position: absolute;
  left: 0;
  content: "";
  width: 0px;
  background: #fff;
  bottom: -10px;
  height: 2px;
  opacity: 0;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
footer .c-item span:hover:before {
  opacity: 1;
  width: 40px;
}
footer .c-item i {
  color: #1c5179;
  margin-right: 25px;
}
footer .f-bottom {
  background: #002232;
  padding: 15px 0;
}
footer .f-bottom .hak span {
  font-size: 0.8em;
  font-weight: 400;
  color: #fff;
}

.btn.focus, .btn:focus {
  box-shadow: none;
}

.lizbon img {
  width: 50px;
}

.padLeft {
  padding-left: 0;
}

.padRight {
  padding-right: 0;
}

.about-page {
  padding-bottom: 100px;
}
    .about-page .banner {
        position: relative;
        height: 352px;
        background: var(--secondary);
    }
.about-page .banner img {
  width: 100%;
  height: 100%;
}
.about-page .banner .banner-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.about-page .banner .banner-text .text {
  padding: 40px;
  background: #f7f7f7;
  position: relative;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.16);
  top: 50px;
}
.about-page .banner .banner-text .text {
  font-size: 2em;
  font-weight: 400;
  color: var(--secondary);
  line-height: 56px;
}
.about-page .section-one .about-sec .text {
  padding-right: 170px;
  margin-top: 50px;
  margin-bottom: 130px;
}
.about-page .section-one .about-sec .text .caption {
  margin-bottom: 50px;
}
.about-page .section-one .about-sec .text .caption h5 {
  font-size: 2.4em;
  font-weight: 500;
  color: #897591;
}
.about-page .section-one .about-sec .text {
  font-size: 1.3em;
  font-weight: 500;
  color: #414141;
  line-height: 35px;
}
.policies .about-sec .text{font-size: 0.9em !important;line-height:30px !important;}
.about-page .sidebar {
  background: #FFFFFF;
  padding: 100px;
  margin-top: 100px;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.16);
  position: sticky;
  top: 180px;
}
.about-page .sidebar ul > li > a {
  font-size: 0.9em;
  font-weight: 500;
  color: #003149;
  line-height: 30px;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid #dcdcdc;
}
.about-page .sidebar ul > li > a:hover {
  color: var(--secondary);
}

.new-page .reverse .image {
  text-align: right;
}
.new-page .section-one .caption {
  margin: 50px 0;
}
.new-page .section-one .caption h4 {
  font-size: 2.6em;
  font-weight: 500;
  color: #222;
}
.new-page .section-one a:hover .bg-grey {
  background: #dedede;
}
.new-page .section-one .text-all {
  padding: 30px 0;
  height: 100%;
}
.new-page .section-one .text-all .btn-cstm {
  font-size: 1em;
  font-weight: 600;
  color: #fff;
  background: #003149;
  margin-right: 30px;
  display: block;
  float: right;
}
.new-page .section-one .bg-grey {
  background: #fbfbfb;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.new-page .section-one .wh-100 {
  width: 100%;
  height: 295px;
}
.new-page .section-one .wh-100 img {
  width: 100%;
  height: 100%;
}
.new-page .section-one .text {
  padding-right: 100px;
  padding-left: 40px;
}
.new-page .section-one .text h2 {
  font-size: 1.3em;
  font-weight: 500;
  color: #444444;
  display: block;
  line-height: 30px;
  margin-bottom: 25px;
}
.new-page .section-one .text p {
  font-size: 1em;
  font-weight: 500;
  color: #444444;
  line-height: 23px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.new-page .section-one .new-item {
  margin-bottom: 30px;
  padding-left: 15px;
}

.new-detail-page .detail .image {
  height: auto;
  width: auto;
}
.new-detail-page .detail .image img {
  height: auto;
  width: auto;
}
.new-detail-page .section-one .text {
  padding-left: 0;
  padding-right: 70px;
  font-size: 1em;
    font-weight: 500;
    color: #444444;
    line-height: 23px;
}
.new-detail-page .caption h3 {
  font-size: 1.3em;
  font-weight: 400;
  color: #444444;
}

.belge-page .section-one .new-item .image{
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.16);
    -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.belge-page .section-one .new-item:hover .image{
 box-shadow:0 0 38px 0 rgba(0, 0, 0, 0.2);
}

.belge-page .section-one .new-item {
  margin-bottom: 100px;
   -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.belge-page .caption h4 {
  margin-bottom: 20px;
}
.belge-page .caption p {
  font-size: 1.1em;
  font-weight: 400;
  color: #444444;
  line-height: 23px;
}
.belge-page .all-left {
  padding-right: 100px;
}
.belge-page .all-left .text {
  padding-left: 0;
  padding-right: 0;
}
.belge-page .all-left .text h3 {
  font-size: 1.2em;
  font-weight: 400;
  color: #444444;
  display: block;
  line-height: 25px;
  margin-bottom: 25px;
  margin-top: 30px;
}
.belge-page .all-left .text p {
  font-size: 0.9em;
  font-weight: 400;
  color: #444444;
  line-height: 23px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sss-page .all-left {
  padding-right: 100px;
}
.sss-page .card {
  border: none;
}
.sss-page .btn-link {
  text-align: left;
  font-size: 1.2em;
  font-weight: 500;
  color: #fff;
  display: block;
  padding: 20px;
  background: var(--secondary);
  width: 100%;
}
.sss-page .btn-link:hover {
  text-decoration: none;
}
.sss-page .btn-link.focus, .sss-page .btn-link:focus {
  text-decoration: none !important;
}
.sss-page .card-body p {
  font-size: 1em;
  font-weight: 500;
  color: #5e5e5e;
  line-height: 30px;
}
.sss-page .card-header {
  padding: 0;
  background: transparent;
  margin: 0;
  margin-bottom: 10px;
}

.lava-page .text-lava {
  padding: 80px;
  background: #f6f6f6;
}
.lava-page .text-lava .caption {
  margin-top: 0;
}
.lava-page .text-lava .caption h4 {
  font-size: 2.6em;
  font-weight: 500;
  color: #222;
}
.lava-page .text-lava{
  font-size: 1.3em;
  font-weight: 400;
  color: #444444;
  line-height: 33px;
}

.noPadRight {
  padding-right: 0;
}

.noPadLeft {
  padding-left: 0;
}

.search-page .page-title {
  position: relative;
  top: -100px;
}
.search-page .page-title h6 {
  float: left;
  font-size: 2em;
  font-weight: 400;
  color: #fff;
}
.search-page .page-title h6:before {
  right: 0;
  left: initial;
}
.search-page .text {
  margin-top: 50px;
  padding-left: 20px;
  margin-bottom: 250px;
}
.search-page .text span {
  font-size: 1.3em;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  display: block;
}
.search-page .text h6 {
  font-size: 1.1em;
  font-weight: 600;
  color: #2C363B;
  margin-bottom: 10px;
}
.search-page .text .item {
  margin-bottom: 20px;
  margin-left: 30px;
  position: relative;
}
.search-page .text .item:before {
  content: "-";
  position: absolute;
  left: -15px;
  top: -3px;
}
.search-page .text .item b {
  font-size: 0.9em;
  font-weight: 600;
  color: #2C363B;
  margin-bottom: 8px;
  display: block;
}
.search-page .text .item a {
  margin-bottom: 8px;
  font-size: 0.9em;
}

.contact-page .map b {
  font-size: 1.4em;
  font-weight: 500;
  color: #0e64ad;
  margin-bottom: 15px;
  display: block;
}
.contact-page .fa-whatsapp {
  font-size: 1.2em;
}
.contact-page .contact-adress {
  padding-top: 50px;
}
.contact-page .contact-adress b {
  display: block;
  font-size: 2em;
  font-weight: 600;
  color: #2C363B;
  margin-bottom: 45px;
  position: relative;
  margin-left: 15px;
}
.contact-page .contact-adress b:before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: -15px;
  top: 0;
  background: var(--secondary);
}
.contact-page .contact-adress li {
  font-size: 1em;
  font-weight: 400;
  color: #272727;
  line-height: 20px;
  margin-bottom: 20px;
}
.contact-page .contact-adress li a {
  font-size: 1em;
  font-weight: 400;
  color: #272727;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.contact-page .contact-adress li a:hover {
  color: #f4b335;
}
.contact-page .contact-adress li i {
  margin-right: 15px;
}
.contact-page .last-tel {
  margin-left: 20px;
}
.contact-page .content-contact .contact-form {
  padding: 50px;
  background: #fafafa;
}
.contact-page .form-check {
    height: 50px;
}
.contact-page .content-contact .contact-form .form-check-label:focus{
  top:initial;
}
.contact-page .content-contact .contact-form .form-check{
    margin-top: 20px;
}
.contact-page .content-contact .contact-form .form-check-label{
  top:4px !important;
}
.contact-page .content-contact .contact-form .btn-send {
  font-size: 1em;
  font-weight: 600;
  color: #fff;
  background: var(--secondary);
  width: 100%;
  border-radius: 0;
  padding: 10px 0;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.contact-page .content-contact .contact-form .btn-send:hover {
  opacity: 0.8;
}
.contact-page .content-contact .contact-form .caption b {
  display: block;
  font-size: 2em;
  font-weight: 600;
  color: #2C363B;
  margin-bottom: 45px;
  position: relative;
  margin-left: 15px;
}
.contact-page .content-contact .contact-form .caption b:before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: -15px;
  top: 0;
  background: var(--secondary);
}
.contact-page .content-contact .contact-form .sec-code img {
  top: 0;
    position: absolute;
    width: 81px;
    right: 0;
}
.contact-page .content-contact .contact-form label {
  font-size: 0.9em;
  font-weight: 400;
  color: #a7a7aa;
  margin-bottom: 0;
  position: absolute;
  left: 21px;
  transition: all 300ms;
  top: -3px;
  line-height: 21px;
  color: #333333;
}

input[type=checkbox], input[type=radio] {
    position: relative;
    z-index: 99;
}
.contact-page .content-contact .contact-form textarea:focus + label, .contact-page .content-contact .contact-form input:focus + label, .contact-page .content-contact .contact-form label.active {
  top: -15px;
  left: 15px;
}
.contact-page .content-contact .contact-form textarea {
  min-height: 100px !important;
}
.contact-page .content-contact .contact-form label.input-has-value {
  top: -15px;
  left: 15px;
}
.contact-page .content-contact .contact-form .form-control {
  border: 0;
  border-bottom: 1px solid;
  border-radius: 0;
  width: 100%;
  display: inline-block;
  float: left;
  position: relative;
  z-index: 1;
  background: transparent;
  padding: .7rem .75rem;
  border-color: #e5e5e5;
  height: 45px !important;
  font-size: 0.9em;
  font-weight: 400;
  color: #636365;
}
.contact-page .content-contact .contact-form .form-control:focus {
  box-shadow: none;
}
.contact-page .content-contact .contact-form .form-item {
  margin-bottom: 40px;
}
.contact-page .content-contact .contact-form .sec-code {
  position: relative;
}
.contact-page .content-contact .contact-form .sec-code span {
  position: absolute;
  right: 0;
  padding: 15px;
  background: #f3f3f3;
  bottom: 10px;
  color: #000;
}
.contact-page .content-contact .contact-form .invalid-feedback {
  position: relative;
  top: 13px;
}
.contact-page .content-contact .contact-form .valid-feedback {
  position: relative;
  top: 13px;
}
.contact-page .aydinlatma-metni p {
  font-size: 0.8em;
  font-weight: 400;
  color: #272727;
  line-height: 18px;
}
.contact-page .aydinlatma-metni a {
  display: block;
}
.contact-page .form-check {
  margin-top: 15px;
}
.contact-page .form-check label {
  font-size: 0.8em;
  font-weight: 400;
  color: #272727;
  position: relative;
  top: initial !important;
  left: initial !important;
  line-height: 26px !important;
  right: initial !important;
}
.contact-page .btn-center {
  margin-top: 20px;
}

.navbar-dark .navbar-toggler-icon {
  background: transparent;
}
.navbar-dark .navbar-toggler-icon:after {
  content: "\f0c9";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #fff;
  font-size: 30px;
}

.social-xs {
  display: none;
}

.mt-up {
    margin-top: 80px;
}
.contact-page .contact-form .sec-code label{
  left:5px;
}
.contact-page .mt-up {
    margin-top: 80px;
}
@media (min-width: 1680px) {
  .container {
    max-width: 1600px;
  }
}
@media (min-width: 768px) and (max-width: 1680px) {
  .about-page .banner .banner-text .text{
    font-size: 1.8em;
    font-weight: 400;
    color: #026bbf;
    line-height: 49px;
  }
}
@media (min-width: 1441px) and (max-width: 1680px) {
  .container {
    max-width: 1350px;
  }
}
@media (min-width: 1366px) and (max-width: 1440px) {
  .container {
    max-width: 1300px;
  }
  .slider .slide-text h4 {
      font-size: 19px;
  }
}
@media (min-width: 1200px) and (max-width: 1366px) {
  .container {
    max-width: 1200px;
  }
  .slider .slide-text h4 {
      font-size: 17px;
  }
   .index-page {  
      padding-top: 112px; 
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  .navbar .dropdown-menu .bg-grey .nav-item a{  
    font-size: 12px;  
  }
}
@media (min-width: 992px) and (max-width: 1250px) {
  .caption h4 {
    font-size: 18px;
    font-weight: 500;
    color: #003149;
  }

  .caption h4 span {
    font-size: 18px;
    font-weight: 500;
    color: #003149;
  }

  .index-page .section-four .box .caption {
    margin-bottom: 15px;
  }

  .index-page .section-one:after {
    display: none;
  }

  .index-page .section-one .text {
    text-align: right;
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .index-page .section-five .text {
    text-align: right;
    position: absolute;
    top: 70px;
    right: 0;
    z-index: 9;
    padding-left: 110px;
  }
  header .blue-top .social li a i {
    color: #FFF;
    position: relative;
    top: 3px;
}
  header .blue-top .social li:nth-child(1) a {
      padding-top: 12px;
  }
  body {
    font-size: 15px;
  }

  .index-page .section-one .text .caption {
    margin-bottom: 50px;
  }

  .index-page .section-one:after {
    content: "";
    width: 305px;
    height: 120px;
  }

  .index-page .section-one .text .btn-cstm {
    margin-top: 50px;
  }

  .index-page .section-one {
    padding-top: 30px;
    position: relative;
    padding-bottom: 30px;
  }

  .slider .slide-text h4 {
    font-size: 1.8em;
    font-weight: 400;
    color: #026bbf;
    margin-bottom: 30px;
    padding-left: 0;
    line-height: 40px;
  }

  .index-page .section-one .text p {
    font-size: 1em;
    line-height: 28px;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 0.9em;
    padding: 20px 11px;
  }

  header .blue-top .link a {
    padding: 10px 0;
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #fff;
  }

  header .blue-top .social {
    position: absolute;
    right: 0;
    top: 14px;
    width: 100%;
    text-align: right;
  }

  header .blue-top .social li a i {
      color: #FFF;
      font-size: 15px;
     
  }

  header .blue-top .social a {
    background: #95c121;
    font-size: 12px;
    font-weight: 600;
     background: #fd5d5d;
    color: #003149;
    display: block;
  }
  .slider {
    height: 460px;
  }
  .slider .image {
    text-align: center;
    height: 100%;
  }
  .slider .image img {
    height: 460px;
    width: 100%;
  }
  .slider .slide {
    height: 100%;
  }
  .slider .slide .carousel-inner {
    height: 460px;
  }
  .slider .slide .carousel-item {
    height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1441px) {
  .slider .slide-text {
    left: 3.7%;
  }

  .index-page .section-two .text p {
    font-size: 1em;
    line-height: 28px;
  }

  .index-page .section-two .text .btn-cstm {
    margin-top: 50px;
  }

  .index-page .section-two .text .caption {
    margin-bottom: 40px;
  }

  .index-page .section-two .text {
    text-align: left;
    padding: 70px 0;
  }

  .index-page .section-six .text h5 {
    font-size: 1em;
    font-weight: 500;
    color: #444444;
    margin-bottom: 15px;
    line-height: 27px;
    padding-right: 60px;
  }

  .index-page .section-six .text {
    background: #fff;
    padding: 40px 40px;
    position: relative;
    padding-right: 50px;
    z-index: 2;
    margin-bottom: 80px;
  }

  .index-page .section-six .text p {
    font-size: 0.8em;
    font-weight: 500;
    color: #444444;
    padding-right: 10px;
    line-height: 20px;
  }

  .index-page .section-six .text-right a {
    font-size: 1em;
  }
}
@media (min-width: 769px) and (max-width: 1800px) {
  .navbar {
    padding-right: 0;
    padding-left: 0;
  }

  .navbar-dark .navbar-brand {
    width: 252px;
  }
}
@media (max-width: 1200px) {
      .language-m{  
    margin-bottom: 15px;  
  } 
  .navbar .dropdown-menu .bg-grey { 
      background-color: #ffffff;  
      padding-top: 0; 
  } 
  .navbar .dropdown .dropdown-menu.show{  
    width: 100%;  
    text-align: center; 
  } 
   .box-img-first{  
      display: none;  
   }
	.lava-page .text-lava {
	    padding: 30px;
	    background: #f6f6f6;
	    margin-top: 90px;
	}
	.cd-auto-hide-header {
	    height: 95px !important;
	}
  header {
    position: initial;
  }

  .navbar-brand {
    width: 50%;
  }

  .navbar .dropdown-menu.show {
    display: block;
    overflow: visible;
  }

  .navbar .dropdown-menu {
    overflow: hidden;
    display: none;
    position: initial !important;
    margin-top: 0;
    height: auto;
  }

  .navbar-dark .navbar-toggler {
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
    background: #0b3e8a;
  }

  .lang {
    margin-top: 25px;
  }
  .lang a {
    color: #fff !important;
    font-size: 15px;
  }

  .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #fff !important;
  }

  .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
    color: #494949;
  }

  header .logo {
    position: relative;
    top: 0;
    padding-top: 20px;
  }
  header .logo img {
    width: 160px;
    max-width: auto;
    max-width: initial;
  }

  .navbar-dark .navbar-toggler {
    float: right;
    position: relative;
    z-index: 999;
    top: -5px;
    border: none;
  }

  .navbar-collapse {
    width: 100% !important;
  }

  .navbar-nav {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin: 0 auto !important;
    text-align: center;
    padding: 40px 0;
    width: 100%;
    padding-bottom: 20px;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 1em;
    font-weight: 400;
    color: #fff;
  }
}
@media (max-width: 1200px) {
  .social {
    display: none;
  }

  .social-xs {
    display: block;
  }

  .new-detail-page .section-one .text {
    padding-right: 0;
  }

  .navbar {
    display: block;
  }

  .navbar-dark .navbar-toggler {
    float: right;
    background: transparent;
  }

  .index-page .section-one:after {
    display: none;
  }

  .navbar-dark .navbar-brand {
    position: absolute;
    left: 0;
  }
  .navbar-dark .navbar-brand img {
    width: 185px;
  }

  .navbar-expand-xl .navbar-collapse {
    top: 0;
    background: var(--secondary);
    width: 100vw !important;
    height: 100vh !important;
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding-top: 48px;
  }

  .navbar-dark .close-btn .navbar-toggler-icon:after {
    content: "\f00d";
    color: #fff;
  }

  .navbar-dark .navbar-toggler {
    float: right;
    margin-top: 12px;
  }

  .navbar .dropdown-menu .bg-grey .nav-item h6 {
    margin-bottom: 15px;
    min-height: auto;
  }

  .navbar .dropdown-menu .bg-grey .nav-item img {
    margin-bottom: 80px;
  }

  .navbar .dropdown-menu {
    width: 100%;
  }

  .social-xs {
    text-align: center;
  }

  .social a {
    color: #fff;
    font-size: 19px;
    margin: 0 5px;
  }
  .social .btn-secondary:not(:disabled):not(.disabled).active, .social .btn-secondary:not(:disabled):not(.disabled):active, .social .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: transparent !important;
    border-color: transparent !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin: 0 0;
    top: -3px;
    position: relative;
  }
}
@media (max-width: 768px) {
      .navbar-dark .navbar-nav .nav-link{ 
    padding:15px 30px;  
  } 
  .navbar .dropdown-menu .bg-grey .nav-item a{  
    font-size: 12px !important; 
  } 
  .index-page { 
    padding-top: 97px;  
  }
  .contact-page .content-contact .contact-form {
      padding: 30px;
      background: #fafafa;
  }
  .search-page .page-title {
      position: relative;
      top: -20px;
  }
	.cd-auto-hide-header {
	    height: 111px !important;
	    background: var(--primary);
	}
	.lava-page .text-lava {
	    padding: 28px;
	    background: #f6f6f6;
	}
	.lava-page .section-one{
		margin-top: 70px;
	}
	.lava-page .section-one .caption {
	    margin: 50px 0;
	    margin-top: 10px;
	    margin-bottom: 20px;
	}
  .social-xs {
    text-align: center;
  }

  .social a {
    color: #fff;
    font-size: 14px;
    margin: 0 5px;
  }
  .social .btn-secondary:not(:disabled):not(.disabled).active, .social .btn-secondary:not(:disabled):not(.disabled):active, .social .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: transparent !important;
    border-color: transparent !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin: 0 0;
    top: -3px;
    position: relative;
  }

  .new-photos .image {
    margin-bottom: 10px;
  }

  .new-detail-page .detail .image {
    text-align: center;
  }
  .new-detail-page .detail .image img {
    height: 350px;
  }

  .about-page {
    padding-bottom: 0;
  }

  .about-page .banner .banner-text .text {
    font-size: 1.4em;
    font-weight: 400;
    color: #026bbf;
    line-height: 26px;
    padding:20px;
  }

  .new-page .section-one .caption h4 {
    font-size: 1.8em;
  }
  .new-page .section-one .caption {
    margin: 50px 0;
    margin-top: 10px;
    margin-bottom: 20px;
  }
.lava-page .text-lava {
    padding: 30px;
    background: #f6f6f6;
    margin-top: 30px;
}
  .new-page .section-one .text {
    padding-right: 0;
    padding-left: 0;
  }

  .new-page .section-one .new-item .image img {
    width: 100%;
  }

  .new-page .section-one .wh-100 {
    width: 100%;
    height: auto;
  }
  .new-page .section-one .wh-100 img {
    object-fit: cover;
    width: 100%;
  }

  .new-page .section-one .new-item {
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .new-page .section-one .text-all .btn-cstm {
    width: 100%;
    text-align: center;
    float: initial;
    display: block;
  }

  .about-page .banner {
    position: relative;
    height: 210px;
    margin-bottom: 60px;
  }

  .about-page .section-one .about-sec .text p {
    font-size: 1.2em;
    font-weight: 500;
    color: #414141;
    line-height: 31px;
  }

  .about-page .section-one .about-sec .text .caption {
    margin-bottom: 15px;
  }

  .about-page .section-one .about-sec .text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .navbar {
    display: block;
  }
  .about-page .section-one .about-sec .text .caption h5 {
      font-size: 26px;
      font-weight: 500;
      color: #95c121;
  }
  .contact-page .contact-adress {
      padding-top: 0;
  }

  .navbar-dark .navbar-toggler {
    top: 19px;
    float: right;
    background: transparent;
  }

  .index-page .section-one:after {
    display: none;
  }

  .navbar-dark .navbar-brand {
    position: absolute;
    left: 0;
  }
  .navbar-dark .navbar-brand img {
    width: 185px;
  }

  .navbar-expand-xl .navbar-collapse {
    top: 0;
    background: var(--secondary);
    width: 100vw !important;
    height: 100vh !important;
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding-top: 48px;
  }

  .navbar-dark .close-btn .navbar-toggler-icon:after {
    content: "\f00d";
    color: #fff;
  }

  .navbar-dark .navbar-toggler {
    float: right;
  }

  .navbar .dropdown-menu .bg-grey .nav-item h6 {
    margin-bottom: 15px;
    min-height: auto;
  }

  .navbar .dropdown-menu .bg-grey .nav-item img {
    margin-bottom: 80px;
  }

  .navbar .dropdown-menu {
    width: 100%;
  }

  .padRight {
    padding-right: 15px;
  }

  .index-page .section-one .text .btn-cstm {
    margin-top: 50px;
    width: 100%;
  }

  .index-page .section-one .text p {
    line-height: 29px;
  }

  .index-page .section-one .text {
    text-align: right;
    margin-top: 20px;
  }

  .index-page .section-one .text .caption {
    margin-bottom: 40px;
  }

  .slider .carousel-item.active .slide-text {
    right: 0;
    opacity: 1;
    position: relative;
    top: -150px;
    padding-right: 0;
    width: 100%;
    height: auto;
  }

  .slider .slide-text h4 {
    font-size: 1.3em;
    font-weight: 400;
    color: #026bbf;
    margin-bottom: 25px;
  }

  .slider .slide-text .text-bottom {
    background: #fff;
    padding: 17px 30px;
    margin-right: 80px;
  }

  .slider .slide-text h4 {
    font-size: 1.3em;
    font-weight: 400;
    color: #026bbf;
    margin-bottom: 20px;
    padding-left: 0;
  }

  .slider .image img {
    height: 300px;
  }

  .politika ul {
    display: block !important;
  }
  .politika ul li {
    line-height: 20px;
  }

  .pad-custom {
    padding: 0 0;
  }

  .index-page .section-four li a {
    font-size: 1.1em;
    line-height: 20px;
    text-align: center;
  }

  .carousel-indicators {
    bottom: 130px;
    margin-right: 17px;
    bottom: 30px;
    right: -710px;
  }

  .slider .slide-text {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
    padding-right: 19px;
    color: #000;
  }

  .slider .slide-text h5 span:last-child {
    margin-bottom: 0;
  }

  .slider .slide-text h5 b {
    font-size: 0.9em;
    margin-bottom: 10px;
  }

  .slider .slide-text p {
    font-size: 1em;
    line-height: 17px;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .index-page .text-sec {
    position: relative;
  }

  .slider .slide-text h6 {
    font-size: 1.4em;
  }

  .btn-cstm {
    padding: 17px 29px;
  }

  .slider .slide-text a {
    font-size: 1em;
    padding: 8px 5px;
    margin-top: 11px;
  }

  .index-page .section-one {
    padding-top: 27px;
    position: relative;
    padding-bottom: 30px;
  }

  .index-page .section-seven {
    background: #003149;
    padding: 32px 0;
  }
  .index-page .section-seven .text-center {
    text-align: left !important;
  }
  .index-page .section-seven ul {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    display: block !important;
  }
  .index-page .section-seven ul a {
    margin: 0 10px;
    margin-bottom: 10px;
    display: block;
  }

  .positions {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .person-page .section-one {
    padding: 0 20px;
    padding-bottom: 18px;
  }

  .person-page .text {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .corporate-page .left-sec img {
    width: 200px;
  }

  .corporate-page .right-sec .text p {
    font-size: 1.1em;
    font-weight: 400;
    color: #5d5d5d;
    line-height: 23px;
    margin-bottom: 16px;
  }

  .person-page .section-one {
    margin: 40px 0;
  }

  .slider .image-second img {
    max-height: 230px;
  }

  .owl-pro .owl-item img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #000;
  }

  .slider {
    overflow: hidden;
  }

  .owl-pro .owl-nav {
    position: absolute;
    top: -50px !important;
  }

  .index-page .section-one .tab-content {
    padding-left: 15px;
    padding-top: 40px;
    padding-right: 15px;
  }

  .slider .slide-text h5 {
    font-size: 1.4em;
    font-weight: 400;
    color: #e3e3e3;
    margin-bottom: 12px;
  }

  .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    opacity: 1;
    background: transparent;
    border: 1px solid #ffffff;
    margin-bottom: 15px;
  }

  .slider {
    height: 300px;
  }

  .slider .slide {
    height: 300px;
  }

  .slider .slide .carousel-inner {
    height: 300px;
  }

  .index-page .section-three .owl-carousel .nav-btn {
    height: 68px;
    width: 49px;
    cursor: pointer;
    background-size: cover;
  }

  .box-img-first {
    height: 82px;
    display: none;
  }

  .index-page header {
    position: relative;
    text-align: center;
    height: 98px;
  }

  .index-page .section-two .text {
    text-align: left;
    padding: 30px 0;
  }

  .index-page .section-two .text .caption {
    margin-bottom: 20px;
  }

  .index-page .section-two .text .btn-cstm {
    margin-top: 30px;
    width: 100%;
  }

  .index-page .green-btn .btn-cstm {
    width: 100%;
  }

  .index-page .section-two .text p {
    font-size: 1.1em;
    font-weight: 500;
    color: #9b9b9b;
    line-height: 25px;
  }

  .index-page .section-six .text p {
    font-size: 1em;
    font-weight: 500;
    color: #444444;
    padding-right: 0;
    line-height: 30px;
  }

  .caption h4 {
    font-size: 18px;
    font-weight: 500;
    color: #003149;
  }

  .index-page .section-four {
    background: url(../img/lavatop.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 30px 0;
  }

  .index-page .section-four .box .caption {
    margin-bottom: 5px;
  }

  .index-page .section-six .text h5 {
    font-size: 1.2em;
    font-weight: 500;
    color: #444444;
    margin-bottom: 15px;
    line-height: 25px;
    padding-right: 0;
  }

  .index-page .section-four .box {
    padding: 25px 30px;
    background: #fff;
  }

  .index-page .section-six .image {
    top: 0;
  }

  .index-page .section-five .text {
    text-align: right;
    position: relative;
    top: 20px;
    right: 0;
    z-index: 9;
    padding-left: 0;
  }

  .index-page .section-six .text {
    background: #fff;
    padding: 30px 30px;
    position: relative;
    padding-right: 50px;
    z-index: 2;
    margin-bottom: 0px;
  }

  .secon-drop .box-img {
    display: none;
  }

  .lizbon {
    text-align: center;
    margin-top: 15px;
    float: initial;
  }

  .road-cstm a {
    line-height: initial !important;
  }

  .index-page .section-one .bg-slide {
    height: 300px;
  }
  .index-page .section-one .bg-slide img {
    height: 300px;
    object-fit: cover;
    width: 100%;
  }

  .index-page .section-one .owl-box .owl-item .photos-text .product {
    bottom: -20px;
  }

  .lang .one {
    position: relative;
    right: -30px;
  }
  .lang .two {
    text-align: center !important;
  }
  .lang .three {
    position: relative;
    left: -30px;
  }

  .progress-wrap {
    display: none;
  }

  .top-section .tab-content img {
    height: 400px;
  }

  .h100 {
    height: 400px;
  }

  footer .footer-top b {
    margin-bottom: 0;
    display: block;
    font-size: 1em;
    font-weight: 400;
    color: #ffffff;
    border-bottom: 1px solid #fff;
    margin-top: 12px;
    padding-bottom: 7px;
  }

  .politika a {
    color: #000;
  }

  .lizbon img {
    filter: invert(100%);
  }

  header .contact-top {
    display: none;
  }

  .top-section .tab-content {
    height: auto;
  }
.contact-page .mt-up {
    margin-top: 170px;
}
.contact-page .mt-up.btn-center{
  margin-top: 15px;
}
.map{
      margin-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
}
  .lang {
    display: block;
  }

  footer {
    padding-top: 30px;
  }

  .bg-black .wrap {
    display: none;
  }

  #search {
    display: none;
  }

  .search-lang {
    background: transparent;
    padding-top: 13px;
    display: none;
  }

  footer .footer-top .f-list a {
    line-height: 32px;
  }

  footer .footer-top {
    padding-bottom: 0;
    padding-top: 0;
    padding: 0;
    background-size: cover;
  }
  footer .footer-top .logo {
    margin-top: 0;
    margin-top: 10px;
    margin-bottom: 12px;
    text-align: center;
  }
  footer .footer-top .logo img {
    width: 120px;
  }

  footer .footer-top .f-list {
    padding: 0 0;
    margin: 10px 0;
  }

  .owl-kalite .owl-nav {
    position: absolute;
    top: -21px;
  }

  .caption h6 {
    font-size: 2em;
    font-weight: 500;
    color: #0e64ad;
  }

  .f-logo {
    text-align: center;
  }
  .f-logo img {
    width: 120px;
  }

  footer .social-list {
    margin-top: 40px;
    margin-left: 0;
    text-align: center;
  }

  body {
    font-size: 0.8em;
  }

  .s-mobile {
    display: block !important;
  }

  header .logo {
    padding: 10px 0;
  }

  header .bg-black {
    background: #2e2e2e;
  }

  .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
    color: #494949;
  }

  .lang {
    margin-top: 25px;
  }
  .lang a {
    color: #fff !important;
    font-size: 15px;
  }

  footer .f-bottom {
    position: relative;
    z-index: 999;
    background: #fff;
  }

  header .logo {
    position: relative;
    top: 0;
    padding-top: 20px;
  }
  header .logo img {
    width: 160px;
    max-width: auto;
    max-width: initial;
  }

  .navbar-dark .navbar-toggler {
    float: right;
    position: relative;
    z-index: 999;
    top: -5px;
    border: none;
  }

  .navbar-collapse {
    width: 100% !important;
  }

  .navbar-nav {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin: 0 auto !important;
    text-align: center;
    padding: 40px 0;
    width: 100%;
    padding-bottom: 20px;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 1em;
    font-weight: 400;
    color: #fff;
  }
}
@media (min-width: 1200px) and (max-width: 1441px) {
  .about-page .sidebar {
    background: #FFFFFF;
    padding: 60px;
    margin-top: 100px;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.16);
    position: sticky;
    top: 180px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .contact-page .mt-up {
      margin-top: 120px;
  }
  .about-page .sidebar {
    background: #FFFFFF;
    padding: 30px;
    margin-top: 100px;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.16);
    position: sticky;
    top: 180px;
  }

  .about-page .section-one .about-sec .text p {
    font-size: 1em;
    font-weight: 500;
    color: #414141;
    line-height: 28px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slider .slide-text a {
    margin-top: 20px;
  }

  .search-lang {
    display: none;
  }

  .lang {
    display: block;
  }

  .lang {
    margin-top: 25px;
  }
  .lang a {
    color: #fff !important;
    font-size: 15px;
  }

  .about-page .banner .banner-text .text {
    font-size: 1.3em;
    font-weight: 400;
    color: #026bbf;
    line-height: 33px;
  }
}
@media (max-width: 321px) {
  .product-detail-page .nav-tabs .nav-item {
    font-size: 0.8em;
  }

  .slider .slide-item-section {
    top: 48%;
  }

  .product-detail-page .nav-tabs .nav-item .nav-link {
    background: #ececec;
    border-radius: 5px;
    padding: 12px 7px;
    font-size: 0.8em;
    text-align: center;
    line-height: 16px;
  }

  .carousel-indicators {
    bottom: 130px;
    margin-right: 17px;
    bottom: 30px;
    right: -750px;
  }
}


/* REVÃ„Â°ZELER */

.index-page .section-one .photo-left p{
    margin-bottom: 20px;
}
.index-page .section-one .photo-right p{
    margin-bottom: 20px;
}
.index-page .section-three .item{
  position: relative;
}
.index-page .section-three .item .image{
    position: relative;
  }
  .index-page .section-three .item .image:before{
      content:"";
      position: absolute;
      top:0;
      width: 100%;
      opacity: 0;
      -moz-transition:all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
      height: 100%;
      left:0;
      right:0;
      margin:0 auto;
      z-index:1;
      background: rgba(255, 255, 255, 0.7);
  }
.index-page .section-three .item .name{
    position: absolute;
     top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left:0;
    z-index: 9;
      -moz-transition:all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    opacity: 0;
    right:0;
 }
.index-page .section-three .item .name  h3{
    color:#000;
    font-weight:500;
    font-size: 1.3em;

}
.index-page .section-three .item:hover .image:before{
  opacity: 1;
}
.index-page .section-three .item:hover .name{
  opacity: 1;
}
.w-change img{
  width: 83%;
}
.w-changetwo img{
    width: 80%;
}
.slider .slide-text{
  right:5%;
  left:initial;
}
.slider .carousel-item.active .slide-text{
  right:52px;
}
.slider .slide-text{
  background: transparent;
  width: 650px;
  text-align: center;
  transform:initial;
  top:0;
    height: 100%;
    padding-top: 30px;
}
.slider .slide-text .text-bottom{
  transform:initial;
  position: relative;
  top:initial;
  padding:0;
  height: 100%;
}
.slider .slide-text h4{
  font-size: 2.2em;
}
.slider .slide-text a{
  position: absolute;
  bottom:40px;
  width: 163px;
  left:0;
  right:0;
  text-align: center;
  margin:0 auto;
  padding:10px 0;
}
.slider:before{
  display: none;
}
.slider .slide .carousel-inner{
  height:auto;
}
.slider .image{
  height: auto;
}
.slider .image img{
  height: auto;
}
.mobile-slider{
  display: none;
}
@media (max-width: 1440px) and (min-width: 768px){
  .slider {
    height: auto;
  }
  .cd-auto-hide-header {
	    height: 111px;
	    background: var(--primary);
	}
}

@media (max-width: 768px){
  .about-page .sidebar{
    padding:10px;
  }
  .slider .slide{
    height: auto;
  }
  .slider{
    height: auto;
  }
  .mobile-slider{
    display: block;
  }
  .desktop-slider{
    display: none;
  }
  .slider .slide-text a {
    position: absolute;
    bottom: 15px;
    width: 104px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    padding: 5px 0;
  }
  .slider .slide-text a{
    width: 83px;
  }
  .slider .slide-text h4 {
     font-size: 15px;
     line-height: 19px;
       display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  .slider .slide-text .text-bottom{
    background: transparent;
    margin-right: 0;
  }

  .slider .carousel-item.active .slide-text {
    right: 0;
    opacity: 1;
    padding-right: 0;
    width: 35%;
    z-index: 99;
    margin-left: 0;
    padding-left: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 30px;
    height: 100px;
    top: initial;
    display: none;
  }
}
@media (min-width: 1441px) and (max-width: 1600px) {
  .slider .slide-text h4{
    font-size: 20px;
  }
  .slider .carousel-item.active .slide-text{
    right:0;
  }
}
  @media (min-width: 768px) and (max-width: 993px) {  
  .index-page { 
      padding-top: 88px;  
  } 
}
@media (min-width: 1201px) and (max-width: 1441px) {
  .slider .slide-text h4{
    font-size: 19px;
    line-height: 30px;
  }
  .slider .carousel-item.active .slide-text{
    right:-30px;
  }
}

@media (min-width: 500px) and (max-width: 992px) {
  .slider .carousel-item.active .slide-text {
      bottom: 30px;
    }
      .navbar .dropdown-menu .bg-grey .nav-item a { 
        font-size: 12px;  
    }
}
@media (min-width: 769px) and (max-width: 1201px) {
  .mobile-slider{
    display: block;
  }
  .index-page {
      padding-top: 88px;
  }
  .desktop-slider{
    display: none;
  }
    .slider .slide-text a {
    position: absolute;
    bottom: -40px;
    width: 104px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    padding: 5px 0;
  }
  .slider .slide-text a{
    width: 103px;
  }
  .slider .slide-text h4 {
     font-size: 25px;
     line-height: 33px;
       display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  .slider .slide-text .text-bottom{
    background: transparent;
    margin-right: 0;
  }

  .slider .carousel-item.active .slide-text {
    right: 0;
    opacity: 1;
    padding-right: 0;
    width: 37%;
    z-index: 99;
    margin-left: 0;
    padding-left: 0;
    padding: 0;
    position: absolute;
    bottom: 150px;
    left: 80px;
    height: 100px;
    top: initial;
    display: none;
  }
}

.table2 {
    table-layout: fixed;
    width: 100%;
    margin: 0;
}
.tac {
    text-align: center!important;
}
.table2 tr td, .table2 tr th {
    color: #404040;
    background: #f7f7f7;
    padding: 10px 5px!important;
    border: 1px solid #efefef;
    font-size:0.8em;
    line-height:20px;
}
header .blue-top .social li:nth-child(1) a, header .blue-top .social li:nth-child(2) a {
    font-size: 14px;
    background: #95c121;
    color: #003149;
}
header .blue-top .social li:nth-child(1), header .blue-top .social li:nth-child(2) {
    display: flex;
    border-right: 1px solid rgb(134, 174, 29);
}
header .blue-top .social li {
    display: flex;
    border-right: 1px solid rgb(244, 80, 80);
}
header .blue-top .social li:last-child{border:none;}
header .blue-top .social li a i {
    color: #FFF;
}
@media (min-width: 769px) and (max-width: 992px) {
  .slider .carousel-item.active .slide-text{
    bottom:110px;
  }
}

.table2 {
    table-layout: fixed;
    width: 100%;
    margin: 0;
}
.tac {
    text-align: center!important;
}
.table2 tr td, .table2 tr th {
    color: #404040;
    background: #f7f7f7;
    padding: 10px 5px!important;
    border: 1px solid #efefef;
    font-size:0.8em;
    line-height:20px;
}

header .blue-top .social li:nth-child(1) a, header .blue-top .social li:nth-child(2) a {
  font-size: 14px;
  background: var(--secondary);
  color: #fff;
}
header .blue-top .social li:nth-child(1) a{
  padding-top: 15px !important;
}
header .blue-top .social li:nth-child(1), header .blue-top .social li:nth-child(2) {
    display: flex;
    border-right: 1px solid #fff;
}


header .blue-top .social li {
    display: flex;
    border-right: 1px solid rgb(244, 80, 80);
}

header .blue-top .social li:last-child{border:none;}

header .blue-top .social li a i {
    color: #FFF;
}

@media (max-width: 1200px) {
  .sss-page .all-left {
  padding-right: 0;
}
}