/*!
 * Designed by Post Ajans (https://www.postajans.com.tr)
 * Developer: Berat Çelik
*/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
:root {
  --primary-color: #008EB7 !important;
  --secondary-color: #595B5D !important;
  --third-color: #79B435 !important;
  --gray: #4A4A4A;
  --light-gray: #A5A5A5;
  --dark-gray: #2B2B2B;
  --white: #fff !important;
  --white-2: #F4F4F4;
  --text-color: #AAAAAA;
}

body {font-family: "Quicksand", sans-serif !important;}
a {text-decoration: none !important;}

/*** Properties ***/
.site-container { width: 90%; max-width: 90%; margin: 0 auto;}
.site-margin{margin-top: 5%; margin-bottom: 5%;}
.site-padding{padding-top: 7%; padding-bottom: 7%;}
/* Text Color */
.color-st{color: var(--primary-color) !important;}
.color-nd{color: var(--secondary-color) !important;}
.color-th{color: var(--third-color) !important;}
.color-gray{color: var(--gray) !important;}
.color-d-gray{color: var(--dark-gray) !important;}
.color-l-gray{color: var(--light-gray) !important;}
.color-text{color: var(--text-color) !important;}
/* Text Color End */
/* BG Color */
.primary-bg{background-color: var(--primary-color) !important;}
.secondary-bg{background-color: var(--secondary-color) !important;}
.third-bg{background-color: var(--third-color);}
.gray-bg{background-color: var(--dark-gray);}
/* BG Color End */
/* Font-Size */
.fs-79{font-size: 79px;line-height: 99px; letter-spacing: -2.37px;}
.fs-72{font-size: 72px;line-height: 90px;}
.fs-60{font-size: 60px;line-height: 75px; letter-spacing: -1.8px;}
.fs-54{font-size: 54px;line-height: 71px;}
.fs-48{font-size: 48px;line-height: 62px;}
.fs-43{font-size: 43px;line-height: 55px;}
.fs-36{font-size: 36px;line-height: 46px;}
.fs-30{font-size: 30px;line-height: 46px;}
.fs-24{font-size: 24px;line-height: 35px;}
.fs-20{font-size: 20px;line-height: 30px;}
.fs-18{font-size: 18px;line-height: 36px;}
.fs-16{font-size: 16px;line-height: 25px;}
.fs-14{font-size: 14px;line-height: 18px;}
/* Font-Size End */

/*** Button Designs ***/
/* Genel stil */
.second-btn{
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  padding: 7px 30px;
  color: var(--primary-color);
  transition: all .4s;
}
.second-btn:hover{
  background-color: var(--primary-color);
  color: var(--white);
}
.second-btn-gray-border{
  border-radius: 50px;
  border: 1px solid var(--secondary-color);
  background-color: var(--white);
  padding: 7px 30px;
  color: var(--primary-color);
  transition: all .4s;
}
.second-btn-gray-border:hover{
  background-color: var(--primary-color);
  color: var(--white);
}
.circle-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 16px;
  transition: color 0.3s ease;
}

.circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  background-color: transparent;
  transition: border-color 0.3s ease;
}

.custom-arrow {
  position: absolute;
  top: 50%;
  left: -25px;
  width: 60px;
  height: 1px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.custom-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 1px solid;
  border-right: 1px solid;
  transition: border-color 0.3s ease;
}

.button-text {
  letter-spacing: 7px;
  transition: all 0.3s ease;
}

/* ----- Colors ----- */

/* White */
.white-border .circle {
  border: 1px solid var(--white);
}

.white-border .custom-arrow {
  background-color: var(--white);
  left: -25px;
}

.white-border .custom-arrow::after {
  border-top-color: var(--white);
  border-right-color: var(--white);
}

.white-border .button-text {
  color: var(--white);
}

.white-border:hover .circle {
  border-color: var(--secondary-color);
}

.white-border:hover .custom-arrow {
  background-color: var(--secondary-color);
  left: -10px;
}

.white-border:hover .custom-arrow::after {
  border-top-color: var(--secondary-color);
  border-right-color: var(--secondary-color);
}

.white-border:hover .button-text {
  color: var(--secondary-color);
  letter-spacing: 12px;
}
/* White End */
/* White */
.white-border-two .circle {
  border: 1px solid var(--white);
}

.white-border-two .custom-arrow {
  background-color: var(--white);
  left: -25px;
}

.white-border-two .custom-arrow::after {
  border-top-color: var(--white);
  border-right-color: var(--white);
}

.white-border-two .button-text {
  color: var(--white);
}

.white-border-two:hover .circle {
  border-color: var(--primary-color);
}

.white-border-two:hover .custom-arrow {
  background-color: var(--primary-color);
  left: -10px;
}

.white-border-two:hover .custom-arrow::after {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
}

.white-border-two:hover .button-text {
  color: var(--primary-color);
  letter-spacing: 12px;
}
/* White End */
/* Primary */
.primary-border .circle {
  border: 1px solid var(--primary-color);
}

.primary-border .custom-arrow {
  background-color: var(--primary-color);
  left: -25px;
}

.primary-border .custom-arrow::after {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
}

.primary-border .button-text {
  color: var(--primary-color);
}

.primary-border:hover .circle {
  border-color: var(--secondary-color);
}

.primary-border:hover .custom-arrow {
  background-color: var(--secondary-color);
  left: -10px;
}

.primary-border:hover .custom-arrow::after {
  border-top-color: var(--secondary-color);
  border-right-color: var(--secondary-color);
}

.primary-border:hover .button-text {
  color: var(--secondary-color);
  letter-spacing: 12px;
}

/* Secondary */
.secondary-border .circle {
  border: 1px solid var(--secondary-color);
}

.secondary-border .custom-arrow {
  background-color: var(--secondary-color);
  left: -25px;
}

.secondary-border .custom-arrow::after {
  border-top-color: var(--secondary-color);
  border-right-color: var(--secondary-color);
}

.secondary-border .button-text {
  color: var(--secondary-color);
}

.secondary-border:hover .circle {
  border-color: var(--primary-color);
}

.secondary-border:hover .custom-arrow {
  background-color: var(--primary-color);
  left: -10px;
}

.secondary-border:hover .custom-arrow::after {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
}

.secondary-border:hover .button-text {
  color: var(--primary-color);
  letter-spacing: 12px;
}
/*** Button Designs End ***/

/* Menu */
.logo{width: 190px;height: auto;}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  height: 150px;
  margin: auto !important;
  right: 0;
  left: 0;
  z-index: 9;
}
.navbar.scrolled {
  background-color: rgb(157 157 157 / 40%);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 0 0 12px 12px;
  opacity: 1;
  z-index: 9;
}
.navbar.scrolled .navbar-brand img {
  content: url('/assets/images/logo.svg')
}
.nav-item {padding: 0 30px;}
.nav-link{color: var(--white) !important; transition: all .4s; font-size: 20px !important;}
.nav-link:hover{color: var(--primary-color) !important;}
/* .navbar.scrolled .nav-link{color: var(--secondary-color) !important;} */
.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: 0.4s all !important;
  transition: all .4s !important;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
}
.dropdown-menu {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  width: 100%;
}
.navbar-toggler {
  padding: 0;
  line-height: 0;
  border: none !important;
  background-color: var(--white) !important;
  border-radius: 50px !important;
  width: 48px !important;
  height: 48px !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.navbar-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}
.dropdown-menu.flag a:hover {
  background-color: transparent;
}
.change-lang{
  border: 1px solid var(--white);
  padding: 3px 0px;
  border-radius: 50px;
}
.change-lang a{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px; 
  margin: 0px 5px 0 5px;
  width: 35px; height: 35px;
  border-radius: 50px;
}
.change-lang a.active{
  background-color: var(--primary-color) !important;
  color: var(--white);
  font-weight: bold;
}
/* Menu End */

/* Slider */
.main-slider{
  width: 100%;
  height: 925px;
  object-fit: cover;
}
.slider-video {
  object-position: center center;
  width: 100vw
}
.main-slider img, .main-slider .slider-video {
  height: 925px;
  max-height: 100vh;
  object-fit: cover;
}
.slider-text-box{
  position: absolute;
  left: 5%;
  bottom: 25%;
  width: 35%;
}
.slider-overlay {
  background: transparent linear-gradient(-270deg, #008EB7 0%, #54545400 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slider-overlay-2 {
  background: transparent linear-gradient(0deg, #008EB7 0%, #54545400 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 535px;
  z-index: 2;
  /* transform: matrix(-1, 0, 0, -1, 0, 0); */
}
.social-icons {
  position: absolute;
  left: 5%;
  z-index: 2;
  bottom: 60px;
  display: flex;
  align-items: center;
}
.social-icons a{
  color: var(--white);
  margin-right: 15px;
  transition: all .4s;
}
/* Slider End */

/* Counter */
.progress-circle {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-circle svg {
  transform: rotate(-180deg);
}

.progress-circle circle {
  fill: none;
  stroke-width: 20;
}

.progress-bar {
  stroke: var(--primary-color);
  stroke-linecap: round;
  stroke-dasharray: 691.15;
  stroke-dashoffset: 691.15;
  transition: stroke-dashoffset 1s ease;
}
.second-bar{
  stroke: var(--secondary-color);
  stroke-dasharray: 565.48; /* r=90 için çevre */
  stroke-dashoffset: 565.48;
}

.progress-text {
  position: absolute;
}
/* Counter End */

/* Projects */
.project-card{
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.project-card img{
  aspect-ratio: 1;
  object-fit: cover;
}
.project-overlay {
  background: transparent linear-gradient(30deg, #000000 30%, #ffffff00 70%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/* Projects End */

/* We Works */
.work-card {
  border: 1px solid rgba(112, 112, 112, .35);
  border-radius: 0;
  padding: 30px 50px;
  height: 300px;
}

/* Radius classları */
.radius-top-left {
  border-top-left-radius: 50px;
}
.radius-top-right {
  border-top-right-radius: 50px;
}
.radius-bottom-left {
  border-bottom-left-radius: 50px;
}
.radius-bottom-right {
  border-bottom-right-radius: 50px;
}
/* We Works End */

/* Parallax */
.parallax-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 650px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: start;
}
.parallax-overlay{
  background: transparent linear-gradient(-270deg, #008EB7 0%, #54545400 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.parallax-container .site-container{
  margin-top: 20%;
}
/* Parallax End */

/* Media */
.media-card{
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 35px 50px;
}
.media-overlay {
  background-color: #E5E5E5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  mix-blend-mode: multiply;
}
/* Media End */

/* Newsletter */
/* .newsletter{
  height: 250px;
  padding: 40px 50px;
  position: relative;
  background-color: var(--primary-color);
} */
.newsletter input{
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 15px;
  border: none;
  width: 400px;
  font-size: 14px;
}
.newsletter input:focus{
  outline: none;
}
.newsletter input::placeholder{
  color: var(--white-2);
}
/* Newsletter End */

/* Footer */
.footer a{color: var(--white);transition: all .4s;}
.footer a:hover{color: var(--primary-color);}
.footer-social a{
  width: 30px; height: 30px; background-color: var(--primary-color); color: var(--white); border-radius: 50%; 
  display: flex; align-items: center; justify-content: center;
  margin-right: 15px;
}
.footer-social a:hover{
  background-color: var(--white); color: var(--primary-color);
}
.media-card-social a{
  width: 40px; height: 40px; background-color: var(--white); color: var(--primary-color); border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; transition: all .4s;
  margin-right: 15px;
}
.media-card-social a:hover{
  background-color: var(--primary-color); color: var(--white);
}
/* Footer End */

/* Breadcrumb */ 
.banner-bread{
  display: flex;
  align-items: end;
  float: inline-end;
  z-index: 4;
  position: relative;
}
.banner li{
  text-align: center;
  padding: 15px 10px;
  font-weight: 900;
}
.banner li+li::before {
  content: "|";
  padding: 0 20px 0 0;
  color: var(--primary-color);
}
.banner li a{
  padding: 5px;
}
/* Breadcrumb End */ 

/** Media Page End **/
.news-image{
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}
.new-detail-img{
  height: 600px;
  object-fit: cover;
  object-position: center;
}
.latest-post{transition: all .4s;}
.latest-post img{width: 75px; height: 75px; object-fit: cover; object-position: center;}
.latest-post:hover{background-color: var(--white);}
/** Media Page End **/

/** Contact Page **/
.contact-form input, .contact-form textarea{
  width: 100%;
  background-color: transparent !important;
  border: 1px solid var(--dark-gray);
  padding: 15px 25px;
}
.contact-form input:focus, .contact-form textarea:focus{
  border: 1px solid var(--primary-color);
  outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder{
  color: var(--dark-gray) ;
}
.contact-form input:focus::placeholder, .contact-form textarea:focus::placeholder{
  color: var(--primary-color) ;
}
.contact-info a{
  color: var(--dark-gray);
  transition: all .4s;
}
.contact-info a:hover{
  color: var(--primary-color);
  transition: all .4s;
}
/** Contact Page End **/