* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
/* ANIMATIONS */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Back To Top */
#buttonToTop {
  display: inline-block;
  background-color: #323c6f;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#buttonToTop i::before {
  color: #ffffff;
}
#buttonToTop::after {
  content: "";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 36px;
  color: #fff;
}
#buttonToTop:hover {
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#buttonToTop:hover i::before {
  color: #323c6f;
}
#buttonToTop:active {
  background-color: #555;
}
#buttonToTop.showTheTop {
  opacity: 1;
  visibility: visible;
}
/*NAVBAR*/
.sticky-menu {
  position: fixed;
  width: 100%;
  background: #ffffff;
  top: 0;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding-top: 0;
  padding-bottom: 0;
  z-index: 9999;
}
@media only screen and (max-width: 480px) {
  .sticky-menu {
    position: relative;
    animation: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .nav-link {
    padding: 33px 5px !important;
  }
}

.nav-background {
  background-color: #323c6f;
}
.navbar {
  padding: 0 !important;
  height: 90px;
  box-shadow: 0px 1px 10px #999;
}
.navbar-brand {
  padding: 0 !important;
}
.navbar .nav-item .dropdown-menu {
  /* display: block; */
  animation: 300ms ease-in-out 0s normal none 1 running fadeInUp;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

@media only screen and (max-width: 480px) {
  .navbar .nav-item::after {
    display: inline-block;
  }
  .navbar {
    padding: 10px 0 !important;
  }
}
.nav-item > .active {
  color: #CDB07F !important;
}

.nav-link {
  font-size: 16px !important;
  padding: 33px 17px !important;
  font-weight: 700 !important;
  color: #CDB07F !important;
  position: relative;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1) !important;
  cursor: pointer;
  user-select: none;
}
@media only screen and (max-width: 992px) {
  .nav-link {
    padding: 15px 10px !important;
    border-bottom: 1px solid #323c6f !important;
    text-align: center;
  }
  .nav-border {
    border-top: 1px solid #323c6f !important;
  }
}
.nav-link:focus {
  color: #CDB07F !important;
}
/* .nav-link:hover {
  background-color: #ffffff;
  color: #323c6f !important;
}  */

.nav-link:before,
.nav-link:after {
  content: "";
  position: absolute;
  transition: inherit;
  z-index: -1;
}

.nav-link:hover {
  color: #ffffff !important;
  transition-delay: 0.2s !important;
}

.nav-link:hover:before {
  transition-delay: 0s;
}

.nav-link:hover:after {
  background: #CDB07F;
  transition-delay: 0.2s;
}
/* From Top */
.from-top i::before {
  margin-left: 0.25rem;
  font-weight: 900;
  font-size: 16px;
}
.from-top:before,
.from-top:after {
  left: 0;
  height: 0;
  width: 100%;
}

.from-top:before {
  bottom: 0;
  border: 1px solid #CDB07F;
  border-top: 0;
  border-bottom: 0;
}

.from-top:after {
  top: 0;
  height: 0;
}

.from-top:hover:before,
.from-top:hover:after {
  height: 100%;
}

.dropdown-menu {
  font-size: 14px !important;
  padding: 1rem !important;
  border-radius: 0 !important;
  background-color: #323c6f !important;
  margin-top: -1px !important;
  margin-left: -1px !important;
  width: 100% !important;
  min-width: 200px !important;
}
.dropdown-item {
  color: #ffffff !important;
  padding: 15px 20px 15px 10px !important;
  border-bottom: 1px solid #ffffff !important;
}
.dropdown-menu li:first-child {
  border-top: 1px solid #ffffff !important;
}
.dropdown-item:hover {
  background-color: rgba(159, 171, 206, 0.1) !important;
}
.dropdown:hover>.dropdown-menu {
  display: block;
}
#menu {
  display: none;
}
#menu {
  width: 35px;
  height: 30px;
  cursor: pointer;
  border: none;
  background-color: #323c6f;
}
.bar,
.change .bar {
  background-color: #CDB07F;
}

.bar {
  height: 4px;
  width: 25px;
  display: block;
  border-radius: 5px;
  transition: 0.3s;
}
#bar1 {
  transform: translateY(-4px);
}
#bar3 {
  transform: translateY(4px);
}
#menu-bar {
  z-index: 2;
}
.change #bar1 {
  transform: translateY(4px) rotateZ(-45deg);
}
.change #bar3 {
  transform: translateY(-4px) rotate(45deg);
}
.change #bar2 {
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  #menu {
    display: inline-block;
  }
  #menu {
    float: right;
    margin: 43px 20px;
  }
  #menu-bar {
    width: 100%;
  }
  .navbar {
    padding: 10px 0;
    height: auto;
  }
}

/* FOOTER */
.footer-top-area {
  background-image: url("images/footerbg.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 30px 0;
}

.footer-top-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000a6;
  z-index: -1;
  opacity: 0.8;
}

.icons {
  padding-left: 12px;
}
.icons i:before {
  font-size: 16px;
}

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

.single-widget img {
  margin-top: -25px;
  margin-left: -25px;

}

.single-widget p {
  color: #c0cade;
  font-size: 14px;
}

.single-widget.contact a {
  text-decoration: none;
}

.single-widget.contact ul li {
  position: relative;
}

.single-widget.contact ul li i {
  position: absolute;
  left: -12px;
  top: 4px;
  font-size: 16px;
  fill: #ffffff;
  color: #ffffff;
  border-color: #ffffff;
  font-style: normal;
  font-weight: 600;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.single-widget.contact ul li span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.single-widget ul li span {
  color: #fff;
}

.single-widget ul li {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.single-widget a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
}

.single-widget a:hover {
  color: #000000a6;
}

.single-widget.contact ul li a {
  position: relative;
  color: #c0cade;
  font-size: 14px;
}

.single-widget .default-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.single-widget {
  padding: 30px 30px;
}
@media only screen and (max-width: 480px) {
  .single-widget {
    padding: 30px 15px;
  }
}

.footer-bottom-area {
  background-color: #323c6f;
  padding: 20px 0;
}

.footer-bottom-area .copy-right {
  text-align: center;
}

.footer-bottom-area .copy-right p {
  text-transform: capitalize;
  margin-bottom: 0;
  color: #fff;
}

.footer-bottom-area .copy-right p a {
  color: #fff;
  font-weight: 700;
}

.copy-right a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-widget h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.single-widget-fast {
  padding: 30px;
}
@media only screen and (max-width: 480px) {
  .single-widget-fast {
    padding: 30px 15px;
  }
}
.single-widget-fast h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.single-widget.contact ul li span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.single-widget-fast ul li span {
  color: #fff;
}

.single-widget-fast ul li {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.single-widget-fast a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.single-widget-fast a:hover {
  color: #323c6f;
}

.single-widget-fast.contact ul li a {
  position: relative;
  color: #c0cade;
  font-size: 14px;
}
/* STICKY PHONE */
.call-btn {
  position: fixed;
  right: -4px;
  z-index: 99;
}
.call-btn .call-btn-inner {
  width: 260px;
  position: absolute;
  right: -190px;
  background: #fff;
  top: 200px;
  padding: 0;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.call-btn .call-btn-inner span.call-icon {
  color: #fff;
  background-color: #323c6f;
  font-size: 22px;
  padding: 18px 24px 18px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50px 0 0 50px;
}
.call-btn .call-btn-inner span {
  color: #333;
  font-size: 20px;
  vertical-align: middle;
  font-weight: 700;
  background: #fff;
  padding: 15px 20px 15px 15px;
}
.call-btn a:hover {
  text-decoration: none !important;
  right: 0;
}
.call-btn .call-btn-inner-wp {
  width: 260px;
  position: absolute;
  right: -190px;
  background: #fff;
  top: 280px;
  padding: 0;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.call-btn .call-btn-inner-wp span.call-icon {
  color: #fff;
  background-color: #25d366;
  font-size: 34px;
  padding: 11px 18px 7px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50px 0 0 50px;
}
.call-btn .call-btn-inner-wp span {
  color: #333;
  font-size: 20px;
  vertical-align: middle;
  font-weight: 700;
  background: #fff;
  padding: 15px 20px 15px 15px;
}
.call-btn .call-btn-inner-insta {
  width: 300px;
  position: absolute;
  right: -230px;
  background: #fff;
  top: 360px;
  padding: 0;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.call-btn .call-btn-inner-insta span.call-icon {
  color: #fff;
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );

  font-size: 34px;
  padding: 11px 18px 7px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50px 0 0 50px;
}
.call-btn .call-btn-inner-insta span {
  color: #333;
  font-size: 20px;
  vertical-align: middle;
  font-weight: 700;
  background: #fff;
  padding: 15px 20px 15px 15px;
}
/* SLIDER */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #323c6f;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #323c6f;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.swiper-button-next,
.swiper-button-prev {
  color: #323c6f !important;
}
.houses-slider > .swiper-button-next,
.houses-slider > .swiper-button-prev {
  top: 42% !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
}
.swiper-pagination-bullet-active {
  background: #323c6f !important;
}
@media only screen and (max-width: 480px) {
  .swiper-button-next:after,
  .swiper-button-prev.swiper-button-prev:after {
    display: none;
  }
}
/* ABOUT US */
.about-us-area {
  margin: 60px 0;
  text-align: center;
  padding: 0 10px;
}
.about-us-area h4 {
  color: #323c6f;
  font-weight: 800;
  margin-top: 60px;
  letter-spacing: 1px;
}
.about-us-area p {
  letter-spacing: 1px;
  color: #000000a6;
  font-size: 16px;
  margin: 1rem 0 0 0;
  line-height: 1.2;
  font-weight: 500;
}
/* VIDEO AREA */
.video-area {
  padding: 60px 0 90px;
  background-image: url("images/bg2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  z-index: -1;
  opacity: 0.5;
}
.video-content {
  display: flex;
  align-items: end;
}
.videomain {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.video-img {
  border-radius: 8px;
  margin-bottom: 6px;
}
.quote-part {
  text-transform: uppercase;
  color: #323c6f;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 50px;
  display: flex;
  gap: 1rem;
  justify-content: center;
  text-align: center;
}
/* HOUSE AREA */
.house-area {
  margin-bottom: 60px;
  background-color: #efefef;
  padding: 60px 0 50px;
}
.house-area .swiper {
  padding-bottom: 40px;
}
.house-area > .container {
  max-width: 1200px !important;
}
.house-area h4 {
  font-size: 24px;
  color: #323c6f;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 60px;
}
/* YESILCAM KONUTLARI */
.content-area {
  background-image: url("images/yesilcam/lb3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 60px 0 40px;
}

.content-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  z-index: -1;
  opacity: 0.7;
}
@media only screen and (max-width: 480px) {
  .content-area {
    padding: 60px 10px;
  }
}
@media only screen and (max-width: 480px) {
  .yesilcam > .swiper-button-next:after,
  .yesilcam > .swiper-button-prev.swiper-button-prev:after {
    display: flex;
    font-size: 25px;
  }
}
.content-texts {
  padding: 0 10px;
}
.content-texts ul {
  list-style-type: none;
  padding-left: 0;
}
.content-texts ul li {
  font-size: 16px;
  letter-spacing: 1px;
  color: #000000a6;
  line-height: 2;
  font-weight: 500;
}
.content-texts ul li:before {
  content: "\00BB";
  margin-right: 5px;
  color: #323c6f;
}
.yesilcam {
  margin: 60px 0;
}
.yesilcam .swiper-pagination-bullet {
  background: #323c6f !important;
  opacity: 0.5 !important;
}
.yesilcam .swiper-pagination-bullet-active {
  background: #323c6f !important;
  opacity: 1 !important;
}
.swiper-slide:hover .overlay {
  opacity: 0.7;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.3s ease;
  background-color: #000;
}
.overlay > .icons {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.overlay > .icons i::before {
  font-size: 48px;
  color: #ffffff;
}

.swipder-slide:hover .overlay > .icons i::before {
  opacity: 1;
}
.yesilcam .swiper-slide img {
  max-height: 232px;
}
/* CONTACT US */
.google-maps {
  width: 100%;
  height: 50vh;
}
.contact-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
  margin: auto;
  height: 50vh;
  gap: 2rem;
  background-color: rgba(194, 159, 93, 0.3);
  padding: 0 20px;
}
.contact-parts {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-parts p {
  margin: 0;
  font-size: 18px;
  color: #000000a6;
  letter-spacing: 1px;
  font-weight: 700;
  word-break: break-word;
}
.icon-area {
  background-color: #323c6f;
  padding: 18px 23px 12px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 32px;
}
@media only screen and (max-width: 480px) {
  .icon-area {
    font-size: 24px;
    padding: 14px 20px 10px;
  }
  .contact-parts p {
    font-size: 16px;
  }
  .contact-area {
    margin-bottom: 10px;
  }
}
