/* ===================================
    Table of Content
====================================== */

/*  - Fonts
    - Scrollbar
    - General   
    - Loader
    - Navbar
    - Side Menu
    - Banner
    - About-us-section
    - portfolio Section
    - Portfolio-2
    - Comment Section
    - Footer
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* ===================================
    Scrollbar
====================================== */

::-webkit-scrollbar {
  width: 18px;
}

::-webkit-scrollbar-track {
  width: 5px;
  background: white;
  border-left: 9px solid white;
  border-right: 9px solid white;
}

::-webkit-scrollbar-thumb {
  background: #202020;
  width: 0;
  border-left: 7px solid white;
  border-right: 6px solid white;
}

/* ===================================
    General
====================================== */

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

p {
  font-size: 18px;
  color: #696969;
  font-family: 'Roboto', sans-serif;
}

span {
  font-weight: 400;
}


a {
  text-decoration: none;
}

.padding-top {
  padding-top: 70px;
}

.ustyazi {
    font-size: 48px;
    color: #202020;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
	line-height: 1.2;
}


/*Button*/
.btn {
  z-index: 2;
  font-size: 17px;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 500;
  overflow: hidden;
  position: sticky;
  line-height: inherit;
  display: inline-block;
  border: 2px solid transparent;
  text-transform: capitalize;
  -webkit-appearance: initial;
  transition: all .5s ease !important;
}

.btn.button {
  font-size: 12px !important;
  padding: 9px 34px !important;
  line-height: 1.8em !important;
  font-family: 'Montserrat', sans-serif;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.trans-btn {
  background: transparent;
  border-color: #202020;
  color: #202020;
}

.btn.trans-2-btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn.white-btn {
  background: #fff;
  border-color: #fff;
  color: #202020;
}


/*Button Hover bg*/
.btn.btn-hvr:hover,
.btn.btn-hvr:focus {
  color: #fff;
  border-color: #202020;
  background: transparent !important;
}

.btn.btn-white-hvr:hover,
.btn.btn-white-hvr:focus {
  color: #202020;
  border-color: #fff;
  opacity: 1;
  background: #fff !important;
}

.btn-hvr-setting {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

.btn-hvr-setting-inner {
  position: relative;
  display: block;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0
}

.btn-hvr-effect {
  position: absolute;
  top: -5px;
  width: 25%;
  height: 100%;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s !important;
  background: #18191d;
  border-color: #18191d;
}

.btn-hvr-effect:nth-child(1) {
  left: 0;
  transition-delay: 0s !important;
}

.btn-hvr-effect:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s !important;
}

.btn-hvr-effect:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s !important;
}

.btn-hvr-effect:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s !important;
}

.btn-hvr-setting:hover .btn-hvr-effect,
.btn:hover .btn-hvr-effect,
.btn:active .btn-hvr-effect,
.btn:focus .btn-hvr-effect {
  transform: translateZ(0) scale(1.7) !important;
}


/*images Overlay*/
.overlay-image {
  position: relative;
  overflow: hidden;
}

.overlay-image img {
  transition: all 0.7s;
}

.overlay-image:hover img {
  transform: scale(1.1);
  transition: all 0.7s;
}

.overlay-image:hover {
  cursor: pointer;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient( rgba(32, 32, 32, 0.8), rgba(32, 32, 32, 0.8));
  opacity: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: .7s ease;
}

.overlay-image:hover .overlay {
  transform: scale(1);
}

.text {
  color: white;
  opacity: 1;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.small-text a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.small-text p {
  font-size: 11px !important;
  margin-bottom: 0 !important;
}

.text p {
  color: #fff;
  font-size: 15px;
  padding-top: 10px;
}

/*Image Hover*/
.hover-effect::before,
.hover-effect::after {
  content: "";
  background: #202020;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  -webkit-transition-duration: 1.3s !important;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s !important;
}

.hover-effect::before {
  right: 0;
  opacity: 1;
  bottom: 0;
}

.hover-effect::after {
  top: 0;
  opacity: .7;
  left: 0;
}

.hover-effect:hover::after,
.hover-effect:hover::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}

/* ===================================
    Loader
====================================== */

.loader-area {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #202020;
  z-index: 999999;
}

.spinning-area {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.spinner {
  border: 10px solid rgba(255, 255, 255, 0.2);
  border-top: 10px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  padding: 50px;
  -webkit-box-shadow: 0 0 180px #000;
  box-shadow: 0 0 180px #000;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ===================================
    Navbar
====================================== */

.navbar-top-default {
  position: absolute;
  top: 0;
  z-index: 99;
  overflow: hidden;
  height: 100px;
  width: 100%;
  transition: all .1s ease;
  background-color: #FFFFFF;
}

.header-appear .navbar-top-default {
  height: 100px;
  position: fixed;
  z-index: 999;
  background: #ffffff;
  animation-duration: 1s;
  animation-fill-mode: both;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.navbar-top-default .navbar-nav .nav-link {
  font-size: 16px;
  color: #202020;
  font-weight: 300;
  padding: 0 0 0;
  margin-right: 1.1rem;
  margin-left: 1.1rem;
  text-transform: capitalize;
  text-decoration: none;
}

.navbar-top-default img {
  padding-left: 0px;
}

.logo-dark,
.logo-default {
  width: 136px;
  height: auto;
}

.nav-radius .navbar-nav .nav-link {
  margin: 0 0.1rem;
}

.nav-radius .navbar-nav .nav-link {
  padding: 8px 18px;
  transition: .5s ease;
}

.search {
  vertical-align: sub;
}

.open_search {
  cursor: pointer;
  color: #313131;
  display: inline-block;
  padding: 10px;
  margin-right: 80px;
  font-size: 18px;
  position: relative;
}

.search_block {
  opacity: 0;
  display: none;
  text-align: center;
  height: 0;
  position: fixed;
  top: 50%;
  left: 35%;
  z-index: 1024;
  margin-top: -41px;
  margin-left: -150px;
}

.search_block.visible {
  opacity: 1;
  display: inline-block;
  height: auto;
}

.search_block.visible .search_box {
  opacity: 1;
  top: 0;
  transform: scale(1);
}

.search_block .overlayer {
  background-color: #313131;
  position: fixed;
  opacity: 0.9;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: url(../images/overlay-close.png), auto;
}

input,
select,
textarea {
  background-color: #313131;
  font-size: 20px;
}

.inner input,
select,
textarea::placeholder {
  color: #FFFFFF !important;
}

input::-webkit-input-placeholder {
  color: #FFFFFF !important;
}

input:-moz-placeholder {
  /* Firefox 18- */
  color: #FFFFFF !important;
}

input::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFFFFF !important;
}

input:-ms-input-placeholder {
  color: #FFFFFF !important;
}

.search_box {
  background-color: #313131;
  opacity: 0;
  display: inline-block;
  padding: 10px;
  position: relative;
  text-align: center;
  top: -120px;
  transform: scale(1.05);
  transition: all 0.4s ease 0s;
  z-index: 10;
}

.search_box .search_input {
  border: 3px solid #313131;
  border-bottom: 1px solid;
  box-sizing: border-box;
  display: inline-block;
  height: 80px;
  line-height: 2;
  min-width: 700px;
  outline: medium none;
  padding: 10px 10px 10px 0;
  width: 700px;
  transition: all 0.45s ease 0s;
  -webkit-appearance: none;
  border-radius: 0;
}

.search-form .search-input {
  font-size: 30px;
  font-weight: 200;
}

#search ::placeholder {
  color: #FFFFFF;
  opacity: 1;
}

.search_icon {
  background-color: transparent;
  border: medium none;
  color: #FFFFFF;
  font-size: 28px;
  left: 93%;
  line-height: 38PX;
  padding: 8px;
  position: absolute;
  top: 28px;
}

.search_icon:hover {
  color: #FFFFFF;
}

.search_icon:focus {
  color: #FFFFFF;
}

::-webkit-input-placeholder {
  color: #999;
  font-style: normal;
}

:-moz-placeholder {
  color: #999;
  font-style: normal;
}

::-moz-placeholder {
  color: #999;
  font-style: normal;
}

:-ms-input-placeholder {
  color: #999;
  font-style: normal;
}

input,
select,
textarea {
  margin: 0;
}

/*side menu button*/
.sidemenu_btn {
  width: 36px;
  padding: 6px;
  left: 40px;
  z-index: 999;
  margin-top: 12px;
  margin-left: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: all .3s linear;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background-color: black;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

.navbar .social-icons ul {
  margin-bottom: 0;
}

.navbar .social-icons {
  position: absolute;
  right: 20px;
}

.navbar .social-icons li {
  display: inline-block;
}

.navbar .social-icons ul li a:hover {
  background-color: #313131;
  transition: .8s ease;
}

.navbar .social-icons ul li a {
  border-radius: 50%;
  color: #313131;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  text-align: center;
}

.social-icons .hovr:hover {
  color: #fff;
}

/* ===================================
    Side Menu
====================================== */

.side-menu {
  width: 28%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(32, 32, 32, 0.9);
  z-index: 2032;
  height: 100%;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  overflow: hidden;
}

.side-menu .side-nav {
  margin-bottom: 30px;
  margin-top: 30px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 35px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}

.side-menu-opacity {
  opacity: 0;
}

.side-menu.left {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 1031;
  opacity: 0.4;
}

.image {
  position: absolute;
  top: 30px;
  right: 50px;
}

/* Footer menüsünü kapsayan container (div) */
.footer-menu.d-flex.justify-content-center {
  display: flex;            /* Muhakkak flex olsun */
  justify-content: center;  /* Yatayda ortala */
  align-items: center;      /* Dikeyde ortala (isteğe bağlı) */
}

/* Asıl menü (ul) sınıfları */
.footer-menu.d-flex.justify-content-center .navbar-nav {
  display: flex;
  flex-direction: row;        /* Yatay diziş */
  justify-content: center;    /* Ortala */
  align-items: center;        /* Dikey ortala */
  margin: 0;                  /* Varsayılan ul margin/padding sıfırlama */
  padding: 14px;
  list-style: none;           /* Madde işaretlerini kaldır */
}

.footer-menu.d-flex.justify-content-center .navbar-nav li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -10px; /* Çizginin li öğesinin sağına yerleşmesi için */
  color: #ccc;  /* Çizginin rengi */
}

/* Menü öğeleri (li) */
.footer-menu.d-flex.justify-content-center .navbar-nav li {
  position: relative;
  margin: 0 10px;
}

/* Link stili */
.footer-menu.d-flex.justify-content-center .navbar-nav li a {
  color: #333;                /* Renk (isteğe göre) */
  text-decoration: none;      /* Alt çizgiyi kaldır */
  transition: color 0.2s;
}

/* Hover efekti */
.footer-menu.d-flex.justify-content-center .navbar-nav li a:hover {
    color: #858585;
    text-decoration: none;
}


/*side close btn*/
.side-menu .btn-close {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 31px;
  left: 50px;
  cursor: pointer;
  border: solid 1px #fff;
}

.header-appear~.side-menu .btn-close {
  top: 50px;
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  position: absolute;
  left: 19px;
  content: ' ';
  height: 28px;
  width: 2px;
  background: #fff;
  top: 6px;
}

.side-menu .btn-close:before {
  transform: rotate(35deg);
}

.side-menu .btn-close:after {
  transform: rotate(-35deg);
}

.side-menu .inner-wrapper {
  padding: 3.5rem 5rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .navbar-nav {
  margin-bottom: 30px;
  display: block;
}

/*side menu footer */
.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #fff;
  font-size: 15px;
}

.side-menu-footer .banner-icons ul {
  margin-bottom: 0;
}

.side-menu-footer .banner-icons ul li {
  display: inline-block;
}

.side-menu-footer .banner-icons ul li i {
  color: #fff;
}

.side-menu-footer .banner-icons ul li a:hover {
  background-color: #fff;
  transition: all .8s ease;
}

.side-menu-footer .banner-icons ul li a {
  border-radius: 50%;
  color: #202020;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  text-align: center;
}

.side-menu-footer .banner-icons ul li a:hover i {
  color: #202020;
}

@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* ===================================
    Banner
====================================== */
.banner img {
  height: 100%;
  width: 100%;
}

/* ===================================
   About
====================================== */

.about-us {
  padding: 140px 0 50px 0;
  background-color: #f9f9f9;
}

.pages-us {
  padding: 120px 0;
  background-color: #f9f9f9;
}

.about-us .card {
  border: none;
  border-radius: 10px;
  transition: all .6s ease;
  box-shadow: 1px 1px 31px #e6e6e6;
}

.about-us .card .feature-icon {
  display: inline-block;
  position: absolute;
  top: -39px;
  left: 50%;
  transform: translateX(-50%);
}

.about-us .card .feature-icon i {
  display: block;
  font-size: 100px;
  color: #202020;
  transition: .6s ease;
}

.about-us .card:hover {
  background-color: #202020;
  cursor: pointer;
  transition: .5s ease;
}

.about-us .card:hover p {
  color: #fff;
}

.about-us .card:hover .feature-icon i {
  transform: translateY(60px);
  font-size: 50px;
  color: #fff;
}

.about-us .card-body {
  padding: 85px 49px;
  padding-bottom: 50px;
}

.about-us .card-body p {
  font-size: 24px;
  color: #202020;
}

.about-us p { 
	text-align:center;
}

/* ===================================
   Blog-Section
====================================== */


.blog img {
  width: 100%;
  height: 100%;
}

.blog .text-area .heading-line {
  left: 75px;
  width: 45px;
  position: absolute;
  margin-bottom: 70px;
  border-bottom: 3px solid #fff;
}

.blog .text-area {
  padding: 0 60px;
}

.blog .text-area-2 {
  padding: 0 60px;
}

.blog .sub-heading {
  color: #202020;
  font-size: 16px;
  font-weight: 300;
}

.blog h4 {
  color: #202020;
  font-size: 44px;
  font-weight: 400;
  margin-top: 20px;
}

.blog p {
  font-size: 16px;
  font-weight: 300;
}

.blog .btn {
  margin-top: 30px;
}

/* ===================================
    Portfolio
====================================== */

.portfolio {
  padding-top: 120px;
}

.portfolio p {
  margin-bottom: 50px;
}

.portfolio img {
  width: 100%;
}

/* ===================================
    Portfolio-2
====================================== */

.portfolio-2 {
  padding: 120px 0;
}

.portfolio-2 p {
  margin-bottom: 50px;
}

.portfolio-2 img {
  width: 100%;
}

/* ===================================
    Comment-section
====================================== */

.comment-section {
  padding: 120px 0;
  background-color: #f9f9f9;
}

.feature {
  text-align: center;
}

.comment-section .card {
  border: none;
  border-radius: 10px;
  transition: .6s ease;
  box-shadow: 1px 1px 31px #e6e6e6;
}

.comment-section .card .feature-icon {
  top: -39px;
  left: 50%;
  display: inline-block;
  position: absolute;
  transform: translateX(-50%);
}

.comment-section .card .feature-icon i {
  display: block;
  font-size: 100px;
  color: #202020;
  transition: .6s ease;
}

.comment-section .card:hover p {
  color: #fff;
}

.comment-section .card:hover {
  transition: all .5s ease;
  cursor: pointer;
  background-color: #202020;
}

.comment-section .card:hover .feature-icon i {
  transform: translateY(60px);
  font-size: 50px;
  color: #fff;
}

.comment-section .card-body {
  padding: 85px 49px;
  padding-bottom: 50px;
}

.comment-section .card-body p {
  font-size: 24px;
  color: #202020;
}

/* ===================================
   Get Started Popup
====================================== */

.quote-content {
  text-align: center;
  max-width: 900px;
  padding: 50px 150px;
  overflow: visible;
  background-color: #202020;
}

.quote-content .contact-form .form-control {
  border-radius: 0;
  padding: 0;
}

.quote-content #quote_submit_btn {
  margin-bottom: -120px;
}

.quote-content .form-check {
  padding: 50px 0 8px 0;
  text-align: center;
  margin-bottom: -15px;
}

.contact-form .form-control {
  border: none;
  border-bottom: 1px solid #797979;
  padding: 10px 0;
  background: transparent;
  font-weight: normal;
  border-radius: 0;
  box-shadow: none;
  height: 32px;
  color: #797979;
  font-size: 14px;
  position: relative;
  transition: border .9s ease;
}

.form-control:focus {
  color: #fff;
  border-color: #797979;
  outline: 0;
  box-shadow: 0 0 0 0.2rem transparent;
}

.quote-content .fancybox-close-small {
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  background: #fff;
  transition: all .2s ease-in-out;
}

.quote-content .fancybox-close-small:after {
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-top: -1px;
  font: initial;
  font-size: 35px;
  color: #202020;
}

.fancybox-close-small:focus:after {
  outline: none;
}

.quote-content .fancybox-close-small:hover:after,
.quote-content .fancybox-close-small:focus:after {
  background-color: transparent;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form textarea {
  min-height: 130px;
  resize: none;
}

.hidden {
  display: none;
}

.contact-form .button {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.contact-form .button:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 8px;
  right: -20px;
  transition: 0.5s;
  font-size: 20px;
}

.contact-form .button:hover {
  padding-right: 24px;
  padding-left: 8px;
}

.contact-form .button:hover:after {
  opacity: 1;
  right: 10px;
}

/* ===================================
    Footer
====================================== */

footer {
  padding: 40px 0;
}

footer .footer-social-icons ul {
  margin-bottom: 0;
  text-align: center;
}

.footer-social-icons ul li {
  margin-right: 5px;
  margin-left: 5px;
  font-size: 15px;
  display: inline-block;
}

.footer-social-icons ul li a {
  overflow: hidden;
  border-radius: 50%;
  display: block;
  color: #333333;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

.footer-social-icons ul li a:hover {
  color: #fff;
  background-color: #494949;
  transition: 0.5s ease;
}

footer p {
  font-size: 13px;
  color: #000;
}

/* ===================================
    Stand Alone
====================================== */

.standalone1-banner{
  background: linear-gradient( rgba(32, 32, 32, 0.4), rgba(32, 32, 32, 0.4)), url('../images/standalone-1-banner.jpg');
  height: 90vh;
  background-size: cover;
  display: flex;
  align-items: center;
}

.standalone2-banner{
  background: linear-gradient( rgba(32, 32, 32, 0.4), rgba(32, 32, 32, 0.4)), url('../images/standalone-2-banner.jpg');
  height: 90vh;
  background-size: cover;
  display: flex;
  align-items: center;
}

.banner-text {
  position: absolute;
  padding-top: 12rem;
  padding-left: 0;
  padding-right: 0;
}

.banner-text h2 {
  font-size: 60px;
  color: #fff;
  padding-bottom: 5px;
}

.page-breadcrumb li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.page-breadcrumb li a {
  color: #fff;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.page-breadcrumb li i {
  color: #fff;
}

/*Main Page Start*/
.main-page{
  padding: 120px 0;
}

.main-page .standalone-heading{
  padding-bottom: 100px;
}

 .main-page .sub-heading{
  font-size:16px;
  margin-bottom: 5px;
}

.main-page .heading{
 font-size:56px;
 margin-bottom: 20px;
}

.main-page .row-image{
  position: relative;
}

.main-page .row-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.standalone-area .standalone-row{
  margin-bottom: 40px;
}

.standalone-area .standalone-row:last-child{
  margin-bottom: 0;
}

.main-page .standalone-row .row-text{
  padding-left: 30px;
  text-align: center;
}

.standalone-row:nth-child(2) .row-text{
  padding-left: 0;
  padding-right: 30px;
}

/* ===================================
    Media Queries
====================================== */

@media (width: 1920px) {
  .navbar {
    padding: 50px;
  }
}

@media (max-width: 1200px) {
  /*Side Menu*/
  .side-menu {
    width: 50%;
  }

  /*About us*/
  .about-us .card-body p {
    font-size: 18px;
  }

  /*contact Section*/
  .comment-section .card-body p {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .small-text {
    font-size: 40px;
  }
  /*Navbar*/
  .sidemenu_btn {
    left: 0;
	border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #f8f9fa;
  }
  .navbar-top-default img {
    padding-left: 40px;
  }

  /*Side Menu*/
  .side-menu {
    width: 50%;
  }
  .side-nav .navbar-nav .nav-link {
    font-size: 30px;
  }

  /*Banner*/
  .banner .banner-image {
    margin-bottom: 0px;
  }

  /*About us */
  .about-us .card {
    margin-bottom: 40px;
  }

  /*Blog*/
  .blog .sub-heading {
    font-size: 18px;
  }
  .blog .text-area {
    text-align: center;
  }
  .blog p {
    text-align: center;
    font-size: 18px;
  }
  .blog .text-area-2 {
    text-align: center;
  }
  .overlay-image {
    margin-bottom: 20px;
  }

  /*Stand Alone page*/
  .main-page h2{
    font-size: 30px;
    margin-bottom: 10px;
   }
  .main-page p{
    font-size: 16px;
   }
  .main-page .standalone-heading{
    padding-bottom: 70px;
  }
  .main-page .standalone-row .row-text{
    padding-left: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .standalone-row:nth-child(2) .row-text{
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 33px;
  }
  .text {
    font-size: 25px;
  }
  .small-text {
    font-size: 19px;
  }
  .wow {
    visibility: visible !important;
    animation: none !important;
  }

  /*Navbar*/
  .navbar .social-icons {
    display: none;
  }
  .sidemenu_btn {
    left: 80%;
  }
  .navbar-top-default {
    height: 90px;
  }
  .navbar-top-default img {
    padding-left: 5px;
  }
  .header-appear .navbar-top-default {
    height: 90px;
  }
  .sidemenu_btn {
    top: 24px;
  }

  /*Side Menu*/
  .side-menu {
    width: 100%;
  }
  .side-nav .navbar-nav .nav-link {
    font-size: 25px;
  }
  .side-menu-footer p {
    font-size: 14px;
  }

  /*Blog*/
  .blog h4 {
    font-size: 38px;
  }
  .blog p {
    font-size: 16px;
    margin-top: 30px;
  }
  .blog .text-area-2{
    padding-top: 30px;
    padding-bottom: 30px
  }
  .blog .text-area{
    padding-top: 30px;
    padding-bottom: 30px
  }

  /*Contact Form*/
  .quote-content {
    padding: 52px 30px;
  }

  /*Stand Alone page*/
  .banner-text h2{
    font-size: 50px;
  }
  .main-page .heading{
    font-size:50px;
  }
  .main-page .standalone-heading{
    padding-bottom: 70px;
  }
  .main-page .standalone-row .row-text{
    padding-left: 0;
  }
 .standalone-row:nth-child(2) .row-text{
    padding-right: 0;
  }
}

@media (max-width: 360px) {
  h2 {
    font-size: 25px;
  }

  /*Side Menu*/
  .side-menu-footer p {
    font-size: 12px;
  }

  /*Contact form*/
  .quote-content {
    padding: 0 30px;
  }
  .quote-content #quote_submit_btn {
    margin-bottom: -15px;
  }
  .fancybox-slide>* {
    margin: 0;
  }
}

@media (max-width: 320px) {
  .small-text {
    font-size: 17px;
  }

  /*Side Menu*/
  .side-menu-footer p {
    font-size: 10px;
  }
  .side-nav .navbar-nav .nav-link {
    font-size: 19px;
  }
  .side-menu-footer .banner-icons ul li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.alignleft {
  float: left;
  margin: 0 1rem 1rem 0; 
	border-radius: 5px;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1rem;
	border-radius: 5px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
	border-radius: 5px;
}

/* Tüm başlıklar için ortak özellikler */
h1
h2
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif; /* Dilediğiniz fontu kullanabilirsiniz */
  color: #333;                         /* Başlık metin rengi */
  font-weight: 700;                    /* Başlıkların kalınlık değeri */
  line-height: 1.4;                    /* Satır yüksekliği */
  margin-top: 1.5rem;                  /* Üst boşluk */
  margin-bottom: 1rem;                 /* Alt boşluk */
  text-align:left;
}

h1 {
  font-size: 2.5rem; 
  font-weight: bold;
  text-align:center;
  line-height: 2em;
}

h2 {
  font-size: 2.0rem; 
  font-weight: bold;
}

h3 {
  font-size: 1.75rem;
  font-weight: bold;
}

h4 {
  font-size: 1.5rem;
  font-weight: bold;
}

h5 {
  font-size: 1.25rem;
  font-weight: bold;
}

h6 {
  font-size: 1rem;
  font-weight: bold;
}

strong {
  font-weight: 600; 
  color: #4c4c4cfa;  
}

.about-us h2 {
    font-size: 48px;
    color: #202020;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.overlay-image {
    position: relative;
    overflow: hidden;
    border: 1px solid #f6f6f6;
}