/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #2b798f;
  text-decoration: none;
}

a:hover {
  color: #3e9bb5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #3e9bb5;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 20px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 0%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2b798f;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3e9bb5;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #292929;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #3e9bb5;
}

.navbar .ustbilgi-button,
.navbar .ustbilgi-button:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid white;
  font-weight: 600;
}

.navbar .ustbilgi-button:hover,
.navbar .ustbilgi-button:focus:hover {
  color: #fff;
  background: #3e9bb5;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;

}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-shadow: 2px 2px 4px black;
}

#hero h1 span {background-color: #3e9bb5; color: #FFF;border-radius: 50px;border:#3e9bb5 solid 5px;}

#hero h3 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
  text-shadow: 2px 2px 4px black;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #3e9bb5;
}

#hero .btn-get-started:hover {
  background: #2b798f;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #3e9bb5;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


@media (min-width: 991px) {
  .slider-ml-50 {margin-left:50px;}
  .slider-img-ml-50 {margin-left:-50px;}
  
    }
@media (max-width: 991px) {
  .slider-ml-50 {margin-top:-50px;}

    }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  color: #424242;
}

.section-title2 h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  color: #2b798f;
  padding-top: 0px;

}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #2b798f;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Paydaşlarımız
--------------------------------------------------------------*/
.paydaslarimiz {
  padding: 12px 0;
  text-align: center;
}

.paydaslarimiz img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.paydaslarimiz img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .paydaslarimiz img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# hakkimizda Us
--------------------------------------------------------------*/
.hakkimizda .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.hakkimizda .content ul {
  list-style: none;
  padding: 0;
}

.hakkimizda .content ul li {
  padding-left: 28px;
  position: relative;
}

.hakkimizda .content ul li+li {
  margin-top: 10px;
}

.hakkimizda .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2b798f;
  line-height: 1;
}

.hakkimizda .content p:last-child {
  margin-bottom: 0;
}

.hakkimizda .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.hakkimizda .content .btn-learn-more:hover {
  background: #3e9bb5;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Hakkında Bilgisi
--------------------------------------------------------------*/
.hakkinda-bilgisi .content {
  padding: 60px 100px 0 100px;
}

.hakkinda-bilgisi .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #424242;
}

.hakkinda-bilgisi .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.hakkinda-bilgisi .content p {
  font-size: 15px;
  color: #848484;
}

.hakkinda-bilgisi .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.hakkinda-bilgisi .accordion-list {
  padding: 0 100px 60px 100px;
}

.hakkinda-bilgisi .accordion-list ul {
  padding: 0;
  list-style: none;
}

.hakkinda-bilgisi .accordion-list li+li {
  margin-top: 15px;
}

.hakkinda-bilgisi .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.hakkinda-bilgisi .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.hakkinda-bilgisi .accordion-list span {
  color: #3e9bb5;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.hakkinda-bilgisi .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.hakkinda-bilgisi .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.hakkinda-bilgisi .accordion-list .icon-show {
  display: none;
}

.hakkinda-bilgisi .accordion-list a.collapsed {
  color: #343a40;
}

.hakkinda-bilgisi .accordion-list a.collapsed:hover {
  color: #3e9bb5;
}

.hakkinda-bilgisi .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.hakkinda-bilgisi .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .hakkinda-bilgisi .content,
  .hakkinda-bilgisi .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .hakkinda-bilgisi .img {
    min-height: 400px;
  }

  .hakkinda-bilgisi .content {
    padding-top: 30px;
  }

  .hakkinda-bilgisi .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .hakkinda-bilgisi .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# yetenekler
--------------------------------------------------------------*/
.yetenekler .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #424242;
  font-family: "Poppins", sans-serif;
}

.yetenekler .content ul {
  list-style: none;
  padding: 0;
}

.yetenekler .content ul li {
  padding-bottom: ;
}

.yetenekler .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}

.yetenekler .content p:last-child {
  margin-bottom: 0;
}

.yetenekler .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.yetenekler .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}

.yetenekler .progress .skill .val {
  float: right;
  font-style: normal;
}

.yetenekler .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.yetenekler .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# cozumlerimiz
--------------------------------------------------------------*/
.cozumlerimiz .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.cozumlerimiz .icon-box .icon {
  margin-bottom: 10px;
}

.cozumlerimiz .icon-box .icon i {
  color: #3e9bb5;
  font-size: 36px;
  transition: 0.3s;
}

.cozumlerimiz .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.cozumlerimiz .icon-box h4 a {
  color: #3e9bb5;
  transition: ease-in-out 0.3s;
}

.cozumlerimiz .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.cozumlerimiz .icon-box:hover {
  transform: translate (-10px) 0.4s;
}

.cozumlerimiz .icon-box:hover h4 a {
  color: #3e9bb5;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-item-ic {
    margin: 10px;
    padding: 30px;
    border-radius: 50px 0 50px 0 ;
    box-shadow: 0px 0 10px rgba(68, 68, 68, 0.08);
    background-color: white;
    
}

.portfolio-item-ic:hover {

    box-shadow: 5px 5px  5px rgba(68, 68, 68, 0.08);
    
}

@media (max-width: 1000px) {
.urun-duz-filtre{display: none;}
}


@media (min-width: 1000px) {

.urun-dropdown-filtre{display: none;}
    
    
    
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li { box-shadow: 3px 3px  3px rgba(68, 68, 68, 0.08);}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
    
}


.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li{
  background: #ffff;
  color: #444444;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #3e9bb5;
  color: #fff;
}}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio-img {
  border-radius: 50px 0 50px 0 ;
    box-shadow: 5px 5px  5px rgba(68, 68, 68, 0.08);
}


.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: 3;
  right: 0px;
  transition: all 0.3s;
  background: #3e9bb5;
  padding: 10px 20px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info a {
  font-size: 4px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .detay-link {
  position: absolute;
  right: 40px;
  font-size: 15px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .detay-link:hover {
  color: whitesmoke;
}

.portfolio .portfolio-item .portfolio-info .detay-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio detay
--------------------------------------------------------------*/
.portfolio-detay {
  padding-top: 40px;
}

.portfolio-detay .portfolio-detay-slider img {
  width: 100%;
}

.portfolio-detay .portfolio-detay-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-detay .portfolio-detay-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-detay .portfolio-detay-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-detay .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-detay .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-detay .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-detay .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-detay .portfolio-description {
  padding-top: 30px;
}

.portfolio-detay .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-detay .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# takimimiz
--------------------------------------------------------------*/
.takimimiz .ekip-uyesi {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.takimimiz .ekip-uyesi .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.takimimiz .ekip-uyesi .pic img {
  transition: ease-in-out 0.3s;
}

.takimimiz .ekip-uyesi:hover {
  transform: translateY(-10px);
}

.takimimiz .ekip-uyesi .ekip-uyesi-info {
  padding-left: 30px;
}

.takimimiz .ekip-uyesi h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.takimimiz .ekip-uyesi span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.takimimiz .ekip-uyesi span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.takimimiz .ekip-uyesi p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.takimimiz .ekip-uyesi .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.takimimiz .ekip-uyesi .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.takimimiz .ekip-uyesi .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.takimimiz .ekip-uyesi .social a:hover {
  background: #47b2e4;
}

.takimimiz .ekip-uyesi .social a:hover i {
  color: #fff;
}

.takimimiz .ekip-uyesi .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Fiyatlandırma ve Ücretlendirme
--------------------------------------------------------------*/
.ucretlendirme .row {
  padding-top: 40px;
}

.ucretlendirme .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.ucretlendirme h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #3e9bb5;
}

.ucretlendirme h4 {
  font-size: 48px;
  color: #3e9bb5;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.ucretlendirme h4 sup {
  font-size: 28px;
}

.ucretlendirme h4 span {
  color: #3e9bb5;
  font-size: 18px;
  display: block;
}

.ucretlendirme ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.ucretlendirme ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.ucretlendirme ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.ucretlendirme ul .na {
  color: #ccc;
}

.ucretlendirme ul .na i {
  color: #ccc;
}

.ucretlendirme ul .na span {
  text-decoration: line-through;
}

.ucretlendirme .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #3e9bb5;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #3e9bb5;
}

.ucretlendirme .buy-btn:hover {
  background: #3e9bb5;
  color: #fff;
}

.ucretlendirme .featured {
  border-top-color: #3e9bb5 ;
}

.ucretlendirme .featured .buy-btn {
  background: #3e9bb5;
  color: #fff;
}

.ucretlendirme .featured .buy-btn:hover {
  background: #2b798f;
}

    .md100vh {min-height:100vh;}

@media (max-width: 992px) {
  .ucretlendirme .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
    section {padding:0;}
    
    #hero {
  width: 100%;
}
}

@media (max-width: 767px) {
  .ucretlendirme .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .ucretlendirme .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Sıkça Sorulan Sorular
--------------------------------------------------------------*/
.sss .sss-list {
  padding: 0 100px;
}

.sss .sss-list ul {
  padding: 0;
  list-style: none;
}

.sss .sss-list li+li {
  margin-top: 15px;
}

.sss .sss-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.sss .sss-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.sss .sss-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.sss .sss-list .icon-show,
.sss .sss-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.sss .sss-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.sss .sss-list .icon-show {
  display: none;
}

.sss .sss-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.sss .sss-list a.collapsed:hover {
  color: #47b2e4;
}

.sss .sss-list a.collapsed .icon-show {
  display: inline-block;
}

.sss .sss-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .sss .sss-list {
    padding: 0;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #292929;
}

#footer .footer-ustu {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-ustu h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #3e9bb5;
}

#footer .footer-ustu form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-ustu form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-ustu form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3e9bb5;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-ustu form input[type=submit]:hover {
  background: #2b798f;
}

#footer .footer-govde {
  padding: 60px 0 3px 0;
  background: #;
}

#footer .footer-govde .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-govde .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-govde .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-govde h4 {
  font-size: 16px;
  font-weight: bold;
  color: #3e9bb5;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-govde .footer-linkleri {
  margin-bottom: 30px;
}

#footer .footer-govde .footer-linkleri ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-govde .footer-linkleri ul i {
  padding-right: 2px;
  color: #3e9bb5;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-govde .footer-linkleri ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-govde .footer-linkleri ul li:first-child {
  padding-top: 0;
}

#footer .footer-govde .footer-linkleri ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-govde .footer-linkleri ul a:hover {
  text-decoration: none;
  color: black;
}

#footer .footer-govde .social-links a {
  font-size: 10px;
  display: inline-block;
  background: #3e9bb5;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}

#footer .footer-govde .social-links a:hover {
  background: #2b798f;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
    text-align: center;
}

#footer .copyright {}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

  #footer .logo {
    padding-top: 25%;
    padding-bottom: 25%;
  }
}


video {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
}

.card {border:none;}
.card-title-abs {position: absolute;margin-left: 0;top: 0;}
.card-body {padding: 0;}
.card-radius {border-radius: 100%;box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);transition: 0.5s;}
.card-radius:hover  {border-radius: 50px;box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.9);transition: 0.5s;}



.zoom1 {
  padding: 50px;
  transition: transform .2s;
  margin: 0 auto;
}

.zoom1:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
    
}


#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items:center;
  justify-content:center;
  background-color: #3e9bb5;
  z-index: 2000
} 

.loaderloader {
  margin: 100px auto 0;
  width: 50%;
  text-align: center;
}

.circleloader {
  background-color: #f3f5fa;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: scale-loader 1.4s infinite ease-in-out both;
  animation: scale-loader 1.4s infinite ease-in-out both;
  vertical-align: middle;
}

.smallloader {
  width: 20px;
  height: 20px;
  opacity: .3;
}

.mediumloader{
  width: 40px;
  height: 40px;
  opacity: .7;
}

.logoloader {
  fill: #f3f5fa;
  width:70px;
  height: 70px;
  opacity: 1;
  vertical-align: middle;
  display: inline-block;
  -webkit-animation: scale-loader 1.4s infinite ease-in-out both;
  animation: scale-loader 1.4s infinite ease-in-out both;
}

.smallloader {
  -webkit-animation-delay: -0.48s;
  animation-delay: -0.48s;
}

.mediumloader {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

@-webkit-keyframes scale-loader {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes scale-loader {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.urunler {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}


.urun-photo  {
  margin: 0;
    padding: 0;
    border: 0;
    border: 0;
}