/*
01- GENERAL
02- PRELOADER
03- HEADER
04- SEARCH
05- CTAS & MODALS
06- SLIDER
07- SERVICES
08- MOTTO
09- REFERENCES
10- ABOUT
11- CONTACT
12- BLOG
13- SEARCH
14- FOOTER
99- RESPONSIVE
*/

/* #region* 01- GENERAL */
@font-face {
  font-family: 'Agenor Regular';
  src: url('../fonts/agenor-regular-webfont.eot');
  src: url('../fonts/agenor-regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/agenor-regular-webfont.woff') format('woff'),
       url('../fonts/agenor-regular-webfont.ttf') format('truetype'),
       url('../fonts/agenor-regular-webfont.svg#Agenor Regular') format('svg');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Futura Regular';
  src: url('../fonts/futura_regular-webfont.eot');
  src: url('../fonts/futura_regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/futura_regular-webfont.woff') format('woff'),
       url('../fonts/futura_regular-webfont.woff2') format('woff2'),
       url('../fonts/futura_regular-webfont.ttf') format('truetype'),
       url('../fonts/futura_regular-webfont.svg#Futura Regular') format('svg');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Futura Light';
  src: url('../fonts/futura_light-webfont.eot');
  src: url('../fonts/futura_light-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/futura_light-webfont.woff') format('woff'),
       url('../fonts/futura_light-webfont.woff2') format('woff2'),
       url('../fonts/futura_light-webfont.ttf') format('truetype'),
       url('../fonts/futura_light-webfont.svg#Futura Light') format('svg');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}

:root {
  --primary-color-one: #ee1b22;
  --primary-black: #303030;
  --primary-bg: #f1f1f1;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
}

body {
  color: #303030;
  font:15px/1.7em 'Hind', sans-serif
}

body.no-scroll{
  overflow:hidden !important
}

@media (min-width: 1400px) {
  .container {
    max-width: 1220px;
  }
}

h1, h2 {
  letter-spacing: 2.5px;
  font-family: 'Agenor Regular', sans-serif;
}
h1 {font-size: 3.333em;}
h2 {font-size: 3em;}

a {
  text-decoration: none;
}

.mt-20 {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  font-size: .8rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .5s;
}
.btn-lg {
  font-size: 1rem;
}
.btn-ghost {
  color: var(--primary-color-one);
  border: 1px solid var(--primary-color-one);
}
.btn-ghost:hover {
  outline: none;
  background-color: var(--primary-color-one);
  border-color: var(--primary-color-one);
  color: #fff;
}
.btn-ghost.text-white {
  border-color: #fff;
}
.btn-ghost.text-white:hover {
  color: var(--primary-color-one) !important;
}

.btn-link {
  color: var(--primary-color-one);
  text-transform: none;
  font-size: 18px;
  padding-left: 0;
  transition: font-weight .5s;
  text-decoration: none;
  line-height: normal;
}
.btn-link::after {
  content: ' > ';
  transition: padding .5s;
}
.btn-link:hover {
  font-weight: 700;
  color: var(--primary-color-one);
}
.btn-link:hover::after {
  padding-left: 5px;
}

.primary-bg {
  background-color: var(--primary-bg);
}

.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.horizontal-center {
  display: flex;
  justify-content: center;
}

.theme-section {
  padding: 90px 0;
}

.instagram-section {
  padding: 90px 0 40px;
}

.section-heading {
  margin-bottom: 20px;
  text-align: center;
}
.section-title {
  margin-top: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--primary-black);
  letter-spacing: 2.5px;
  font-size: 2.6em;
}
.section-description {
  margin-bottom: 0;
  font-size: 1.2em;
  color: var(--primary-black);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: initial;
}
.section-description strong {
  font-weight: 700;
}

.line-lg {
  margin: 10px 0;
  opacity: 0.5;
}
.line-lg span {
  display: block;
  width: 90px;
  height: 1px;
  margin: 0;
  border-bottom: 1px solid #909090;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/* #endregion* 01- GENERAL */

/* #region* 02- PRELOADER */
@keyframes moveRight{
  to{
      transform:translateX(20px)
  }
}
@keyframes moveLeft{
  to{
      transform:translateX(-20px)
  }
}
.pageload-overlay::after,.pageload-overlay::before{
  content:'';
  position:fixed;
  top:50%;
  left:50%;
  z-index:10001;
  width:20px;
  height:20px;
  margin:-10px 0 0 -10px;
  visibility:hidden;
  border-radius:50%;
  opacity:0;
  transition:opacity 0.25s
}
.pageload-overlay::after{
  background:#ee1b22;
  transform:translateX(-20px);
  animation:moveRight 0.6s linear infinite paused alternate
}
.pageload-overlay::before{
  background:#ee1b22;
  transform:translateX(20px);
  animation:moveLeft 0.6s linear infinite paused alternate
}
.pageload-loading.pageload-overlay::after,.pageload-loading.pageload-overlay::before{
  visibility:visible;
  transition:opacity 0.3s;
  animation-play-state:running
}
.pageload-loading.pageload-overlay::after{
  opacity:1
}
.pageload-loading.pageload-overlay::before{
  opacity:0.5
}
#page-preloader{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  top:0;
  visibility:hidden;
  z-index:-1;
  opacity:0;
  transition:z-index 0.1s 1s,opacity 1s
}
#page-preloader.pageload-loading{
  z-index:100000;
  opacity:1
}
#page-preloader.pageload-overlay{
  display:block;
  visibility:visible
}
.pageload-loading .preloader-circle{
  transform:scale(0.7) translate3d(0, 0, 0);
  background-color:#fff;
  box-shadow:0px 0px 0px 195vw #fff inset
}
.preloader-circle{
  position:absolute;
  transform:scale(10) translate3d(0, 0, 0);
  transform-style:preserve-3d;
  backface-visibility:hidden;
  will-change:transform;
  margin:auto;
  height:400vw;
  width:400vw;
  left:-150vw;
  top:calc(-200vw + 50vh);
  border-radius:50%;
  box-shadow:0px 0px 0px 190vw #fff inset;
  background-color:transparent;
  transition:box-shadow 0.2s,background-color 0.2s,transform 1s
}
/* #endregion* 02- PRELOADER */

/* #region* 03- HEADER */
header.main-header {
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 100%;
  height: auto;
  padding: 15px 0;
}
header.header-fixed {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  padding: 10px 0;
}
.main-menu {
  width: 100%;
  display: flex;
  padding: 0;
}
.main-menu-content {
  display: flex;
  gap: 25px;
  align-items: center;
}
.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
.navbar-nav a {
  color: var(--primary-black);
}
.navbar-nav a:hover {
  opacity: .5;
  transition: opacity .5s;
}

header nav .search i, .searchform button i {
  font-size: 20px;
}

header nav .language a {
  color: var(--primary-black);
  font-weight: 700;
  /* background-color: #dedede; */
  padding: 15px 10px;
  border-radius: 10px;
  transition: all .5s;
}
header nav .language a img {
  padding: 4px;
  background-color: #dedede;
  border-radius: 50%;
  transition: background-color 1s;
}
header nav .language a:hover img {
  padding: 4px;
  background-color: var(--primary-color-one);
}

header nav .lang a {
  font-size: 20px;
  color: var(--primary-black);
  position: relative;
  display: block;
}
header nav .lang a::after {
  content: "";
  display: block;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-one);
  transition: width .5s;
}
header nav .lang a:hover::after {
  width: 100%;
}

.main-menu-content .mobile-menu-btn {
  display: none;
  cursor: pointer;
}
.main-menu-content .mobile-menu-btn span{
  position:relative;
  top:0;
  display:block;
  width:25px;
  height:3px;
  margin-top:4px;
  background-color:#000;
  box-shadow:none;
  -webkit-transition:0.5s;
  -moz-transition:0.5s;
  transition:0.5s
}
.main-menu .mobile-menu-btn.active span{
  -webkit-transition:0.5s;
  -moz-transition:0.5s;
  transition:0.5s
}
.main-menu .mobile-menu-btn.active span:nth-child(1){
  -webkit-transform:rotate(45deg);
  -moz-transform:rotate(45deg);
  -ms-transform:rotate(45deg);
  -o-transform:rotate(45deg);
  transform:rotate(45deg);
  top:5px
}
.main-menu .mobile-menu-btn.active span:nth-child(2){
  opacity:0
}
.main-menu .mobile-menu-btn.active span:nth-child(3){
  -webkit-transform:rotate(-45deg);
  -moz-transform:rotate(-45deg);
  -ms-transform:rotate(-45deg);
  -o-transform:rotate(-45deg);
  transform:rotate(-45deg);
  top:-9px
}
/* #endregion* 03- HEADER */

/* #region* 04- SEARCH */
header nav .search {
  cursor: pointer;
}

.searchform {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  margin-bottom:30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.searchform.show {
  opacity: 1;
  visibility: visible;
}

.searchform .screen-reader-text {
  display:none
}
.searchform input {
  display:inline-block;
  width: 100%;
  height:45px;
  padding:0 10px 0  35px;
  line-height:45px;
  border:1px solid #dfdfdf;
  border-radius: 3px;
  outline:none;
  vertical-align:middle
}
input::placeholder {
  font-weight: 400;
}
.searchform input[type="submit"]{
  width:37%
}
.searchform form {
  position: relative;
}
.searchform button {
  position: absolute;
  left: 10px;
  top: 13px;
  border: none;
  background: none;
}
.searchform button i {
  font-size: 20px;
}

.autocomplete-list {
  position: absolute;
  background: white;
  max-height: 200px;
  overflow-y: auto;
  width: calc(100% - 2px);
  list-style: none;
  padding: 0;
  margin: 5px 0 0;
  z-index: 1000;
}
.autocomplete-list.has-items {
  border: 1px solid #ddd;
}
.autocomplete-list li {
  padding: 10px;
  cursor: pointer;
}
.autocomplete-list li:hover,
.autocomplete-list .active {
  background-color: #f0f0f0;
}
/* #endregion* 04- SEARCH */

/* #region* 05- CTAS & MODALS */
#duyuru-popup .modal-dialog {
  width: 50%;
  top: 80px;
  text-align: center;
  max-width: none;
}
#duyuru-popup .modal-dialog .modal-content {
  width: 80%;
  left: 10%;
}
#duyuru-popup .modal-dialog .modal-content .btn-close {
  position: absolute;
  z-index: 1;
  right: -12px;
  top: -12px;
  font-size: 12px;
  padding: 8px;
  background-color: #ee1b22;
  color: #fff;
  border-radius: 15px;
}
#duyuru-popup .modal-dialog .modal-body {
    padding: 0;
}

.right-mail {
  position: fixed;
  top: calc(50% - 300px);
  right: 0;
  overflow: visible;
  z-index: 999;
}
.right-mail a#right-mail-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 165px;
  height: 45px;
  line-height: 50px;
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: #fff;
  padding-right: 10px;
  padding-left: 60px;
  background: #25D366;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition-duration: .5s;
  transform-origin: right bottom;
  transform: rotate(-90deg);
  cursor: pointer;
  direction: ltr;
  z-index: 33;
}
.right-mail a#right-mail-action:before {
  content: "\f0e0";
  font: normal normal normal 24px / 1 FontAwesome;
  position: absolute;
  top: 12px;
  left: 22px;
  transform: rotate(90deg);
}

a.bottom-call {
  display: none;
  position: fixed;
  width: 100%;
  background-color: #25D366;
  z-index: 999;
  bottom: 0;
  text-align: center;
  font-size: 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  padding: 8px 0 10px;
  color: #fff;
}
a.bottom-call span {
  display: block;
  font-size: 16px;
  font-weight: normal;
}
a.bottom-call:before {
  content: "\f095";
  font: normal normal normal 40px/1 FontAwesome;
  position: absolute;
  top: 19px;
  left: 15px;
}
/* #endregion* 05- CTAS & MODALS */

/* #region* 06- SLIDER */
.home-section {
  margin-top: -69px;
}

.slider {
  aspect-ratio: 1903 / 1070;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

.slider .slide .slide-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: var(--primary-black);
  border: none;
  font-size: 2.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
}
.slider-arrow.prev {
  left: 15px;
}
.slider-arrow.next {
  right: 15px;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}
/* #endregion* 06- SLIDER */

/* #region* 07- SERVICES */
#hizmetler .row {
  margin: 0 30px;
}

.service-section {
  background-color: var(--primary-bg);
  padding: 60px 0;
}
.services-col {
  padding: 20px 80px 20px 80px;
  text-align: center;
}
.serv-content {
  height: 100%;
  padding: 30px;
  min-height: 356px;
  border-radius: 30px;
  transition: box-shadow .5s;
  box-shadow: 10px 10px 38px 0px rgba(0, 0, 0, 0.3);
}
.serv-content:hover {
 box-shadow: 10px 10px 38px 0px rgba(0,0,0,0.5);
}
.serv-content img {
  width: 200px;
  margin-bottom: 15px;
}
.serv-content h5 {
  font-size: 25px;  
  font-family: 'Agenor Regular', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.3em;
}
.serv-content img, .serv-content h5 {
  transform:scale(1);
  transition: transform .5s;
}
.serv-content:hover img, .serv-content:hover h5 {
  transform:scale(1.05);
}

#hizmet.theme-section {
  padding-top: 20px;
}
#hizmet h1, #hizmetdetay h1 {
  font-size: 2.6em;
  margin-bottom: 30px;
}

.service-box {
  margin-bottom: 15px;
}
.service-box img {
  width: 100%;
  opacity: 1;
  transition: opacity .5s;
  border-radius: 25px;
  margin-bottom: 20px;
}
.service-box a:hover img {
  opacity: .7;
}
.service-box h3 {
  font-family: 'Baloo Tamma 2', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--primary-color-one);
  margin-bottom: 10px;
}
.service-box a:hover h3 {
  text-decoration: underline;
}
.service-box ul {
  padding-left: 0;
  list-style: none;
  font-family: Hind, sans-serif;
  font-size: 18px;
}

.color-black .section-title, .color-black .section-description, .color-black .service-box h3, .color-black .catalog p, .color-black .serv-content h5, .color-black .service-box .btn-link {color: var(--primary-black)}
.color-red .service-box h3, .color-red .service-box .btn-link {color: var(--primary-color-one)}
.color-turquoise .service-box h3, .color-turquoise .service-box .btn-link {color: #40E0D0}
.color-green .service-box h3, .color-green .service-box .btn-link {color: #008000}
.color-white .section-title, .color-white .section-description, .color-white .catalog p, .color-white .serv-content h5 {color: #fff}

#hizmetdetay.theme-section {
  padding-top: 20px;
}

#hizmetdetay article {
  width: 100%;
  margin: 0 0 30px;
  border-radius: 4px;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
}

.service-image-block > img {
  width: 100%;
}

.service-description-block {
  padding: 0 80px 20px;
}
.service-description-block .text-title {
  margin: 40px 0 20px;
  font-size: 22px;
  text-transform: uppercase;
}
.service-description-block .parameters {
  padding: 10px 20px;
  border: 1px solid #dedede;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.service-description-block .parameters span {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #dedede;
  font-size: 17px;
  font-family: Hind, sans-serif;
}
.service-description-block .parameters span strong {
  color: var(--primary-color-one);
}
.service-description-block .news-date {
  font-weight: bold;
}
.service-description-block .description {
  margin-bottom: 40px;
}
.service-description-block .description p {
  background: #eee;
  border: 1px solid #ccc;
  padding: 5px 10px;
  font-size: 16px;
  margin-bottom: 0;
}
.service-description-block ul.features {
  padding-left: 0;
}
.service-description-block ul.features li {
  font-family: 'Raleway', sans-serif;
  list-style: none;
  color: #000;
}
.service-description-block ul.features li i {
  color: #ee1b22;
  margin-right: 15px;
  width: 10px;
}
.service-video-block h5, .service-photos-block h5 {
  margin: 40px 0 20px;
  text-align: center;
  font-size: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
.service-video-block .service-video {
  position: relative;
  cursor: pointer;
  margin-bottom: 40px;
}
.service-video-block .service-video, .service-video-block .service-video img {
  width: 100%;
}
.service-video-block .service-video i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color-one);
  font-size: 80px;
  pointer-events: none;
}
.service-video-block .service-video i::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 50%;
  background-color: #fff;
  left: 10px;
  top: 20px;
  z-index: -1;
}

.service-photos-block img {
  margin-bottom: 30px;
}

.breadcrumb {
  display: flex;
  justify-content: space-between;
}
#hizmetdetay .breadcrumb-item+.breadcrumb-item::before {
  content: "";
}
.breadcrumb-item a {
  text-transform: none;
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
  position: relative;
}
.breadcrumb-item a:hover {
  color: var(--primary-color-one);
}
.breadcrumb-item.prev a:before, .breadcrumb-item.next a:after {
  content: "";
  width: 32px;
  height: 31px;
  background-size: 32px 31px;
  position: absolute;
  top: -3px;
}
.breadcrumb-item.prev a:before {
  background-image: url(../images/eddra_arrow_prev.png);
  left: 0;
}
.breadcrumb-item.next a:after {
  background-image: url(../images/eddra_arrow_next.png);
  right: 0;
}
.breadcrumb-item.prev a {
  text-align: right;
  padding-left: 40px;
}
.breadcrumb-item.next a {
  text-align: left;
  padding-right: 40px;
}


/* #endregion* 07- SERVICES */

/* #region* 08- MOTTO */
.motto {
  position: relative;
  max-width: 900px;
  background-color: #fff;
  padding: 45px 180px 25px 180px;
  border-radius: 5px;
}
.motto .fa  {
  position: absolute;
  width: 80px;
  height: 80px;
  padding-top: 18px;
  font-size: 40px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  background-color: var(--primary-color-one);
  border-radius: 50%;
}
.motto .fa:first-of-type {
  top: 45px;
  left: 30px;
}
.motto .fa:last-of-type {
  bottom: 45px;
  right: 30px;
}
.motto p, .catalog p {
  font-size: 1.5em;
  line-height: 1.5em;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}
.motto p {
  color: var(--primary-black);
}
.motto .post {
  font-size: 1.2rem;
  display: block;
  margin-top: 0px;
  margin-bottom: 15px;
  font-family: inherit;
  color: #909090;
  font-weight: 300;
}

#catalog {
  text-align: center;
}

.section-heading.catalog {
  padding: 49px 30px;
  margin-bottom: 0;
  border-radius: 10px;
  width: 100%;
}

.catalog p {
  margin-bottom: 30px !important;
  color: var(--primary-black);
}
.catalog .btn-ghost {
  border-color: var(--primary-black);
}
.catalog .btn-ghost:hover {
  border-color: var(--primary-black);
  background-color: #fff;
}
.catalog .btn-ghost.text-white {
  border-color: #fff;
}
.catalog .btn-ghost.text-white:hover {
  color: var(--primary-black) !important;
}

/* #endregion* 08- MOTTO */

/* #region* 09- REFERENCES */
.references {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  justify-content: space-between;
  gap: 30px;
}

.references .reference img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s, filter .5s;
  filter: grayscale(100%)
}
.references .reference:hover img {
  transform: scale(120%);
  filter: none;
}
/* #endregion* 09- REFERENCES */

/* #region* 10- ABOUT */
#hakkimizda .section-description {
  /* margin-top: 20px; */
  width: 70%;
}
#hakkimizda .section-description p {
  margin-bottom: 20px;
}
#hakkimizda .section-description p strong,
.about-first p strong {
  color: var(--primary-color-one);
  font-weight: bold;
}

.about-first {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
}
.about-first p {
  position: relative;
}
.about-first p:first-of-type {
  margin-top: 40px;
}
.about-first p:first-of-type::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 300px;
  height: 3px;
  background-color: var(--primary-color-one);
}

.about-content {
  margin-top: 60px;
}
.about-content .about-img {
  margin: 0 40px;
  position: relative;
}
.about-content .about-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 4px;
  height: 200px;
  background-color: var(--primary-color-one);
}
.about-content .about-img img {
  width: 100%;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  padding: 30px;
  gap: 20px;
  border-radius: 30px;
  transition: box-shadow .5s;
  box-shadow: 10px 10px 38px 0px rgba(0, 0, 0, 0.3);
}
.values:hover {
  box-shadow: 10px 10px 38px 0px rgba(0,0,0,0.5);
}
/* #endregion* 10- ABOUT */

/* #region* 11- CONTACT */
#contact .section-description {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'Futura Light', sans-serif;
}
#contact .section-description:first-child {
  border-right: 1px solid #909090;
  padding-right: 60px;
}
#contact .section-description:last-child {
  padding-left: 60px;
}
#contact .section-description p {
  font-size: 20px;
}
#contact .section-description a {
  color: var(--primary-black);
  transition: color .5s;
}
#contact .section-description a:hover {
  color: var(--primary-color-one)
}

.address-block:not(:last-of-type) {
  margin-bottom: 30px;
}
.address-block h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
}

#contact .section-description ul.social {
  list-style: none;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
}
#contact .section-description ul.social li {
  display: inline;
  margin-right: 15px;
}
#contact .section-description ul.social li a span {
  font-size: 30px;
  color: var(--primary-color-one);
  transition: transform .5s;
}
#contact .section-description ul.social li a:hover span {
  transform: scale(120%);
}
#contact .section-description i {
  color: var(--primary-color-one);
  margin-right: 15px;
}
#contact .section-description small {
  color: var(--bs-gray-600)
}

.contact-form  {
  padding: 49px 30px;
  border-radius: 30px;
  text-align: center;
}
.contact-form p {
  font-size: 2em;
  text-align: center;
  color: var(--primary-black);
  line-height: 1.5em;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 20px;
}
.contact-form button {
  border-color: rgba(0, 0, 0, 0.2);
  transition: all .5s;
  background-color: #fff;
  font-size: 20px;
  width: 100%;
}
.contact-form button:hover {
  color: #fff !important;
  background-color: #6d6d6d;
  border-color: #6d6d6d;
}

#map {
  background-color: var(--primary-bg);
}
/* #endregion* 11- CONTACT */

/* #region* 12- BLOG */
.blog-page article {
  width: 100%;
  margin: 0 0 30px;
  border-radius: 4px;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
}
.blog-page article header {
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  flex-wrap: wrap;
}
.blog-page article .news-header-date {
  height: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 8px;
  line-height: 30px;
  font-family: 'Lato', sans-serif;
  padding-right: 15px;
  border-right: 1px solid #dfdfdf;
}
.blog-page article .news-header-date a {
  color: var(--primary-black);
}
.blog-page article .news-header-date span {
  margin-right: 5px;
}
.blog-page article .news-header-title {
  padding: 15px;
  margin: 0;
  color: var(--primary-black);
  font-size: 1.5em;
  letter-spacing: 1px;
  font-family: 'Lato', sans-serif;
}
.blog-page article a {
  color: var(--primary-color-one);
  transition: opacity .5s;
}
.blog-page article a:hover {
  opacity: 0.7;
}
.blog-page article .news-img-block img {
  width: 100%;
}
.blog-page article .news-description-block {
  padding: 20px 20px 20px 20px;
}
.blog-page article p {
  color: var(--primary-black);
  font: 15px / 1.7em 'Raleway', sans-serif;
}
.blog-page article .news-description-block .btn {
  display: block;
  width: 140px;
  line-height: 35px;
  font-size: 12px;
  margin: 20px 0;
  padding: 0 20px;
  transition: all .5s;
}

.pagination-block {
  display: block;
  text-align: center;
}
.pagination-block .pagination {
  display: block;
  margin: 0;
  line-height: 1;
}
.pagination-block .pagination > li {
  display: inline-block;
  margin: 0px 8px;
  overflow: visible;
  vertical-align: middle;
}
.pagination-block .pagination>li span, .pagination-block .pagination>li a {
  width: 20px;
  font-size: 22px;
  padding: 0;
  color: #303030;
  line-height: 40px;
  opacity: 1;
  border: none;
  background-color: transparent;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.pagination-block .pagination>li span.active, .pagination-block .pagination>li span:hover, .pagination-block .pagination>li span:focus, .pagination-block .pagination>li a.active, .pagination-block .pagination>li a:hover, .pagination-block .pagination>li a:focus {
  background-color: transparent;
  color: var(--primary-color-one);
}

.blog-page .breadcrumb {
  justify-content: left;
}
.blog-page .breadcrumb-item.next {
  padding-top: 10px;
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
}

.news-description-block.detail p {
  color: var(--primary-black);
}
.news-description-block.detail ul li {
  list-style: disc;
  margin-bottom: 10px;
}
/* #endregion* 12- BLOG */

/* #region* 13- SEARCH */
#arama .section-title {
  margin-bottom: 40px;
}
#arama .section-description {
  color: #707070;
}
.search-result {
  border: 1px solid #303030;
  padding: 20px;
  margin-bottom: 30px;
}
.search-result h5 {
  margin-bottom: 0;
}
.search-result span {
  margin-bottom: 7px;
  display: inline-block;
  color: #7e7d7d;
}
.search-result p {
  font: 15px / 1.7em 'Raleway', sans-serif;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li > a.active {
  color: var(--primary-color-one);
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  z-index: 3;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
/* #endregion* 13- SEARCH */

/* #region* 14- FOOTER */
footer {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  color: #fff;
  text-align: left;
  background-color: #000;
}
footer .footer-col {
  padding-bottom: 30px;
}
footer .footer-widget {
  padding-top: 30px;
}
footer a {
  color: #fff;
  transition: opacity .5s;
}
footer a:hover {
  color: #fff;
  opacity: 0.5;
}
footer .footer-widget .footer-logo {
  margin-bottom: 20px;
  width: 300px;
  height: auto;
  margin-bottom: 40px;
}
footer .footer-widget.social {
  padding-top: 5px;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer .footer-social {
  display: flex;
  width: 300px;
  justify-content: space-between;
  margin-bottom: 40px;
}
footer .footer-social li {
  display: inline-block;
}
footer .footer-social li a span {
  transition: 0.3s;
  font-size: 2rem;
}
footer .footer-social li a:hover span {
  color: var(--primary-color-one);
  transition: 0.3s;
}
footer .footer-copyright p {
  display: inline-block;
  margin: 0;
  font-size: 0.857em;
}
.footer-partner {
  margin-top: 20px;
}
.footer-partner a {
  font-weight: bold;
  margin-left: 7px;
  display: inline-block;
}
.footer-partner a .img-box {
  position: relative;
  width: 100px;
}
footer .footer-widget h4 {
  position: relative;
  padding-bottom: 15px;
  font-size: 2em;
  letter-spacing: 2px;
  font-family: 'Agenor Regular', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
footer .footer-widget h4:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 1px;
  width: 90px;
  background-color: #ee1b22;
}
footer .footer-col.text-center .footer-widget h4:after {
  left: 50%;
  transform: translateX(-50%);
}
footer .footer-col.text-right .footer-widget h4:after {
  left: auto;
  right: 0;
}
footer .footer-list, footer .footer-address {
  margin-top: 20px;
}
footer .footer-mail, footer .footer-tell, footer .footer-address, footer .footer-list a {
  display: block;
  margin-bottom: 10px;
  font-family: 'Hind', sans-serif;
  color: #fff;
  font-size: 1.267em;
  font-weight: 300;
}
footer .services-footer {
  display: block;
  margin-bottom: 10px;
  font-family: 'Hind', sans-serif;
  color: #fff;
  font-size: 1.267em;
  font-weight: 300;
}
.footer-col small {
  color: var(--bs-gray-500)
}
/* #endregion* 14- FOOTER */

/* #region* 99- RESPONSIVE */
@media (max-width: 1460px){
  .right-mail {
    top: 50%;
  }
  #hakkimizda .section-description {
    width: 80%;
  }
}

@media (max-width: 1370px){
  #hizmetler .row {
    margin: 0 20px;
  }
}

@media only screen and (max-width: 1024px) {
  ._menu-open {
    position: relative;
    z-index: 2;
    padding-right: 16px !important;
  }
  .navbar-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .main-menu-content .mobile-menu-btn {
    display: block;
    cursor: pointer;
  }
  ._menu-open .navbar-nav{
    max-height: 400px;
    padding: 20px 0;
    z-index: 2;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  .navbar-nav li {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.no-scroll {
    overflow: hidden;
  }

  ._menu-open {
    padding-right: 0 !important;
  }

  #hizmetler .row {
    margin: 0;
  }

  .services-col {
    padding: 20px 60px 20px 60px;
  }

  #duyuru-popup .modal-dialog {
    width: 100%;
  }

  .values img {
    max-width: 198px;
  }
}

@media only screen and (max-width: 820px) {  
  .services-col {
    padding: 0 10px;
  }

  .references {
    grid-template-columns: repeat(6, 1fr);
  }

  #hakkimizda .section-description {
    width: auto;
  }
  #hakkimizda .section-description p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 32px;
  }

  .values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px;
  }
  .values img {
    max-width: none;
  }
}

@media only screen and (max-width: 766px) {  
  .theme-section {
    padding: 50px 0;
  }
  
  .motto {
    padding: 30px;
  }
  .motto .fa:first-of-type {
    position: relative;
    top: 0;
    left: 0;
  }
  .motto .fa:last-of-type {
    bottom: 20px;
  }
  .motto p {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}


@media (max-width: 440px) {
  a.bottom-call {
    display: block;
  }
  .right-mail {
    display: none;
  }  

  .home-section {
    margin-top: 0;
  }

  .slider-arrow {
    top: 40%;
  }
  .slider-arrow.prev {
    left: 10px;
  }
  .slider-arrow.next {
    right: 10px;
  }
  .section-description {
    margin: 40px 0;
  }
  #hakkimizda .section-description {
    margin-bottom: 0;
  }

  .services-col {
    padding: 0 30px;
    margin-bottom: 40px;
  }

  .references {
    grid-template-columns: repeat(4, 1fr);
  }

  .values {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service-description-block {
    padding: 0 20px 20px;
  }

  #contact .section-description:first-child {
    border-right: none;
  }
  #contact .section-description:last-child {
    margin-top: 0;
    padding-left: 12px;
  }

  footer {
    padding-bottom: 60px;
  }
}
@media only screen and (min-device-width:300px) and (max-device-width:800px) and (orientation:landscape) {
  a.bottom-call {
    display: block;
  }
  .right-mail {
    display: none;
  } 
}
/* #endregion* 99- RESPONSIVE */