@font-face {
  font-family: 'GothamBook';
  src:  url('../fonts/Gotham/GothamBook.ttf') format('truetype');
}



@font-face {
  font-family: 'CaviarDreams';
  src:  url('../fonts/Gotham/CaviarDreams.ttf') format('truetype');
}

@font-face {
  font-family: 'CaviarDreams';
  src:  url('../fonts/Gotham/Gotham-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'CaviarDreams';
  src:  url('../fonts/CaviarDreams/CaviarDreams.ttf') format('truetype');
}


@font-face {
  font-family: 'CaviarDreams_Bold';
  src:  url('../fonts/CaviarDreams/CaviarDreams_Bold.ttf') format('truetype');
}


@font-face {
  font-family: 'CaviarDreams_BoldItalic';
  src:  url('../fonts/CaviarDreams/CaviarDreams_BoldItalic.ttf') format('truetype');
}



@font-face {
  font-family: 'CaviarDreams_Italic';
  src:  url('../fonts/CaviarDreams/CaviarDreams_Italic.ttf') format('truetype');
}


@font-face {
  font-family: 'MazzardBlack';
  src:  url('../fonts/Mazzard/MazzardH-Black.otf') format('opentype');
}

@font-face {
  font-family: 'MazzardBold';
  src:  url('../fonts/Mazzard/MazzardH-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'MazzardExtraLight';
  src:  url('../fonts/Mazzard/MazzardH-ExtraLight.otf') format('opentype');
}



@font-face {
  font-family: 'HousttelySignature';
  src:  url('../fonts/HousttelySignature.ttf') format('truetype');
}

@font-face {
  font-family: 'europa';
  src:  url('../fonts/Inter-4.1/InterVariable.ttf') ;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --blue_color_1: #ffa66a;
  --blue_color_2: #4184f3;;
  --blue_color_mix: #4184f3;;
}


body {     
  font-family: "europa" ;
  color: #444;
  background: #f9f9f9;
  -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
 
a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: var(--blue_color_mix);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "europa";
}

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

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #4154f1;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}
 
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 9;
  /*background: var(--blue_color_mix);*/
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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


.back-to-top:hover {
  transform: scale(1.1);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 5;
  padding: 20px 0;
}

.header.header-scrolled { 
  padding: 10px 0;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  background: #f9f9f9; 
  /*
  background: #4B00A7
  7700B5
  130060

  */
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  
  margin-top: 3px;
}

/*--------------------------------------------------------------
# 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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 60px;
  font-size: 16px;
  font-weight: 500;
  color: #444;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: var(--blue_color_mix);
}

.navbar .getstarted {
  background: #4154f1;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #5969f3;
}

.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: 15px;
  text-transform: none;
  font-weight: 600;
  color: #4154f1;
}

.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: #4154f1;
}

.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: #3d3d3d;
  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(1, 22, 61, 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 {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

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

.navbar-mobile .getstarted {
  margin: 15px;
}

.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: #4154f1;
}

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


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  width: 100%;
  height: 100vh;
  background: url(../images/bgFix.png) 20% 0% no-repeat;
  /* background-size: cover; */
  align-items: center;
  background-size: auto 60%;
  background-position: 80%;
}

.heroOverlay{
  /*width: 100%;
  height: 100vh; 
  background: rgba(61, 61, 61, .1);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 85%);
  position: absolute;*/
}

.hero .heroTitle {
  color:#3d3d3d;
  font-size: 4rem;
  font-weight:500;
  line-height:1.2em;
}

.hero .heroTitle2 {
  color: var(--blue_color_2);
  font-size: 5rem;
  font-weight:600;
  line-height:1.2em;
margin-top:-30px;
}

.hero .heroTitleDesc {
  color:#3d3d3d;
  font-size: 1.1rem;
}

.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.hero .btn-get-started span {
  
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
}
 
#fixTopDesc{
  width: 50%;
}

/* HERO BG */

@media (max-width: 1024px) {
  .hero {
    /*background-attachment: fixed;*/
    background: url(../images/bgFix.png) 20% 0% no-repeat;
        align-items: flex-start;
        background-size: auto 60%;
        background-position: 50% 100%;
  }

  .hero .heroTitle2{
    font-size: 3.5em;
  }
  #fixTopDesc{
    text-align:center;
    padding: 0 20px;
    padding-top: 2rem;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .hero {  
    background: url(../images/bgFix.png) 20% 0% no-repeat;
    background-size: auto 60%;
    background-position: 50% 90%;
  } 
  .hero .heroTitleDesc {
    font-size: 1rem;
  }
  .hero .heroTitle {
    font-size: 3rem;
  }
  #fixTopDesc{
    padding-top: 3rem;
    width: 100%;
  }
}


@media (max-width: 767px) {
  .hero {
    height: 100vh;
    /* height: auto; */
    background-size: auto 60%;
    background-position: 50% 95%;
  } 
  .hero .heroTitleDesc {
    font-size: .9rem;
  }
  .hero .heroTitle {
    font-size: 2rem; 
  }
}

@media (max-width: 500px) {
  .hero {
    height: 100vh;
    /* height: auto; */
    background-size: auto 45%;
    background-position: 50% 90%;
  } 
  .hero .heroTitleDesc {
    font-size: 1rem;
  }
  .hero .heroTitle {
    font-size: 1.8rem !important; 
  }
  #fixTopDesc{
    padding-top: 1rem;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .hero {
    height: 100vh;
    /* height: auto; */
    background-size: auto 40%;
    background-position: 50% 90%;
  } 
  .hero .heroTitleDesc {
    font-size: 1rem;
  }
  .hero .heroTitle {
    font-size: 1.8rem !important; 
  }
  #fixTopDesc{
    padding-top: 1rem;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .hero {
    height: 100vh;
    /* height: auto; */
    background: url(../images/bgFixMobile.png) center center no-repeat;
    background-size: cover !important;
    text-align: center;
  } 
  .hero .heroTitleDesc {
    font-size: .8rem;
  }
  .hero .heroTitle {
    font-size: 1.3rem !important; 
  }
  #fixTopDesc{
    padding-top: 1rem;
    width: 100%;
  }
}
/* HERO BG */

@media (max-width: 991px) { 
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 767px) {  
  .hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .bigTitle1 {  
    font-size: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .features_div{ 
    width: 45%;
  }
  .bigTitle1 {  
    font-size: 2.6rem !important;
  }
}

@media (max-width: 320px) {
  .bigTitle1 {  
    font-size: 2.5rem !important;
  }
} 

#features_image_video{
  background:#f9f9f9;
  color:#2D2D2D;
  height: auto;
}  

.bigTitle1 { 
  padding-left: 2.2rem;
  text-transform: uppercase;
  font-size: 4.5rem;
  text-align: left;
  word-wrap:break-word;
  color: var(--blue_color_mix);
  background: -webkit-linear-gradient( var(--blue_color_1), var(--blue_color_2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  
  border-left: 10px solid var(--blue_color_mix);
  align-items: center; 
  word-break: break-word; 
} 


.gallery-list.col-md-12,
.gallery-list.col-md-6,
.gallery-list.col-md-4,
.gallery-list.col-md-3,
.gallery-list.col-md-2,
.gallery-list.col-md-1 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.image-grid {
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.image-grid * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*height: auto;
  transform: scale(4);*/
  
}

.image-grid .imageBlurOverlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  /*
--blue_color_1: #ffa66a;
  --blue_color_2: #ff2471;
  */
  background: -webkit-linear-gradient( rgba(255, 166, 106, .4),  rgba(255, 36, 113, .4) );
}

.image-grid .imageBlurOverlay i{
  color:#fff;
  font-size:2rem;
  opacity: 0.8;
}

.image-grid p {
  margin: 0;
  opacity: 0;
  letter-spacing: 1px;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.image-grid a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.image-grid:hover > img,
.image-grid.hover > img {
  
}

.image-grid:hover p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
} 

@media (max-width: 992px) { 

  .image-grid {
    width: 100%;
    height: 180px;
  }

}


@media (max-width: 768px) {
  .gallery.container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .gallery-list{
    padding: 0.1rem!important;
  }

  .gallery-list.col-md-12,
  .gallery-list.col-md-6,
  .gallery-list.col-md-4,
  .gallery-list.col-md-3,
  .gallery-list.col-md-2,
  .gallery-list.col-md-1 {
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-row.row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .gallery-row.row.pdtb-40 {
    padding-top: 10px;
  }

  .horizontal-nav {
    margin-bottom: 0;
  } 

}

.dahaFazlaBtn{
  background: #FFCE00;
  border:0;
  border-radius: 50px;
  font-size: 1rem;
  padding: 10px;
  margin: 0 auto;
  display: block;
  margin-top:1rem;
  margin-bottom:1rem;
}
 

@media (max-width: 768px) { 
  .projelerTitle {  
    font-size: 2.6rem !important;
  }
}

@media (max-width: 500px) { 
  .projelerTitleParentDiv {  
    display: none;
  }
  .projelerTitleMobile{   
    display: block;
  }
  .projeShortText{
    font-size: 0.75rem !important;
  }
  .dahaFazlaBtn{
    font-size: 0.75rem;
  }
  .features_title, .features_title_shadow{
    
  }

} 

.projeShortText{
  width: 100%;
  height: 100%; 
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size:1rem;
}

#brands, #comments{ 
  background:#f9f9f9;
  color:#2D2D2D;
  height: auto; 
} 

.brandsTitle{ 
  margin: 0 auto;
  display: inline-block;
  box-sizing: border-box;  
  text-transform: uppercase;
  font-size: 4rem;
  text-align: center;
  word-wrap:break-word;
  background: -webkit-linear-gradient( var(--blue_color_1), var(--blue_color_2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  /*border-bottom: 10px solid #FFCE00; */
  word-break: break-word;
  margin-bottom: 2rem;
}

.brandsTitleIcon{
  position: absolute;
  background: url(../images/brandTitleIcon.png) center center no-repeat;
  background-size: contain;
  width: 200px;
  height: 200px;
  margin-top:-220px;
  margin-left: 50px;
}


@media (max-width: 1024px) {
  .brandsTitleIcon{
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .brandsTitleIcon{
    display: none;
  }
}

@media (max-width: 500px) {
  .brandsTitleIcon{
    display: block;
    margin-left:10px;
    height: 100px;
    width: 100px;
  }
  .brandsTitle{
    
    font-size:3rem;
    position: relative;
    z-index: 1;
  }

  .globalTitle{
    
    font-size:2rem !important;
    position: relative;
    z-index: 1;
  }
  #say_hello .title{
    font-size: 3rem !important;
  }
}
 
@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
} 

.commentsSwiper {
  height: 100%;
}

.commentsSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  /*background: #fff; */

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.commentHeadText{
  font-size:1.7rem;
  color:#353535;
}

.commentFooterText{
  color:#777;
}

.commentFooterText::after{
  content: '’’';
}

.commentFooterText::before{
  content: '‘‘';
}


.commentsSwiper .swiper-button-next,
.commentsSwiper .swiper-button-prev {
  color:#353535; 
}



.commentsSwiper .swiper-button-next::after,
.commentsSwiper .swiper-button-prev::after {
  font-size: 2rem;
}


@media (max-width: 991px) {
  .commentHeadText{
    font-size: 2rem;
  }
  .commentFooterText{
    font-size: 1rem;
  }
  
}

@media (min-width: 991px) and (max-width:1024px) {
  #say_hello .questionmark{
    display: none;
  }
}

@media (max-width: 767px) {
  .commentHeadText{
    font-size: 1rem;
  }
  .commentFooterText{
    font-size: 0.5rem;
  }
  #say_hello .questionmark{
    display: none;
  }
}



@media (max-width: 320px) {
  .commentHeadText{
    font-size: 1rem;
  }
  #say_hello .questionmark{
    display: none;
  }
}

.panel_swiper img {
  border-radius:20px;
  border:4px solid #d3d3d3;
}

.our-brands_img{
  width:150px;
  margin: 0.5rem;
  display: flex;
  border-radius: 15px;
  padding: 0;

}

#our-brands .our-brands_img{
  width:200px;
  background: var(--blue_color_2);
  border-radius:20px;
  padding:15px;
}

.our-brands_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

#say_hello{
  background: linear-gradient(180deg, var(--blue_color_2) 0%, var(--blue_color_1) 100%);
  color:#2D2D2D;
  height: auto; 
  padding:2rem;
}

#say_hello .questionmark{
  width: 100px;
  height: 100px;
  width: 100px;
  height: 100px;
  /* position: absolute; */
  float: right; 
  margin-top: -125px;
  color: #FFCE00;
  font-size: 9rem;
  transform: rotate(25deg);
}

#say_hello .title{
  font-size:2.5rem;
  color:#fff;
  display: block;
  text-align: center;
}



.hemenTanisalimBtn{
  background: #FFCE00;
  border:0;
  border-radius: 50px;
  font-size: .9rem;
  padding: 10px 20px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
  margin: 0 auto;
  display: block;
  margin-top:1rem;
  margin-bottom:1rem; 
}



.footer_title{
  color:#777;
  font-size:1rem; 
  text-align: center;
}

.social_media_list{
  display: flex;
  justify-content: center;
}

.social_media_list .social_media_item{
  width:50px;
  height: 50px;
  margin:0.6rem 1rem;
  transition: linear 0.3s all; 
  text-align: center;
  padding: 0.1rem;
}

.social_media_list .social_media_item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social_media_list .social_media_item:hover{
  transform: rotate(20deg) scale(1.1); 
}
 

@media (max-width: 991px) {

}

@media (max-width: 768px) {
   
}

@media (max-width: 500px) { 
  /*.leftNail, .rightNail {  
    display: none !important;
  }*/ 
  #dots{
    padding-left: 1rem !important;
  }
  .dot{
    width: 35px !important;
    height: 35px !important;
  }
} 


#contact-us-info{

}

.contactInfoDiv{
  display:flex;
  width:360px;
  flex-direction: column;
  flex-wrap: wrap; 
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-us-info-icon{
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.contact-us-info-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain; 
}

.contact-us-info-text{
  margin:1.5rem 0.5rem;
  text-align: center;
  font-weight: 700;
  color:#404040;
}

#contact-us-form{
  padding-top: 0;

}


.contact_us_head_title{
  display: block;
  font-size: 1.5rem;
  color:#3d3d3d;
  font-weight: bold;
}

.contact_us_head_sub_title{
  display: block;
  color:#888b8d;
}

.contact_us_input{
  background: transparent;
  padding: 1rem; 
  border:.1rem solid #AFAFAF;
  border-radius: 10px;
}


.customBtn1{
  display: block;
  padding:0.5rem 2rem;
  border-radius: 100px;
  background: var(--blue_color_2);
  color: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
  transition: linear 0.2s all;
  border:0;
}

.customBtn1:hover{ 
  color:#fff;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.65);
}

#contact-us-map{
  padding: 0;
}

.contact_map{
    
}

.contact_map iframe{
  /*width: 100%;
  height: 100%;
  object-fit: contain; */
  border-radius: 15px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
}

.customHR{
  width: 80%;
  height: 2px !important;
  display: block;
  margin: 1.5rem auto;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.3);
}

.aboutText{
  color:#303030;
  font-weight: 700;
  text-align: center;
}

#about_us_1{
  padding-bottom: 0;
}
 
input, textarea{
}

input[type=number] {
  -moz-appearance:textfield; /* Firefox */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input:focus, textarea:focus {
  outline: none !important; 
  border-color:transparent !important; 
  box-shadow: 0 0 2px 2px #b1b1b16b !important;
  border-radius: 10px;
}
 


#workDescriptionContainer .workDescLogo img{
  height: 50px;
  width: 100%;
  object-fit: contain;
}

#workDescriptionContainer .workDescriptionText{
  padding: 1.5rem;
  font-size:.9rem;
}


#workImgSliderPhone{

}

.phone-carousel {
  position:relative;
}
.phone-frame {
  height:105%;
  width:auto;
  position:absolute;
  top:-2.5%;
  left:50%;
  transform:translateX(-50%);
  background:url();
  background-size:contain;
  background-repeat:no-repeat;
  z-index:2;
}
img.screen {
  width:98%;
  border-radius: 15px 15px 30px 30px;
  margin-top: 3px;
  margin-bottom: 5px;
}
.phone-carousel .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: none;
}
.phone-carousel .swiper-slide {
    transform: scale(0.7);
    opacity: 0.7;
  cursor:pointer;
    transition: opacity 0.225s ease-in-out, transform 0.225s ease-in-out;
}
  

.phone-carousel .swiper-button-next,
.phone-carousel .swiper-button-prev {
  color:var(--blue_color_mix); 
  margin: 0 2rem;
}
 
.phone-carousel .swiper-button-next::after,
.phone-carousel .swiper-button-prev::after {
  color:var(--blue_color_mix); 
  margin: 1rem;
  font-size: 3rem !important;
}

.headerDiv{
  justify-content:space-between;
  display:flex;
  min-height: 35px;
}


#footer .container{
  border-top: 2px solid rgba(0, 0, 0, 0.2);
}

#global_address{

}

.globalAddresContainer{
  width:90%;
  padding: 1rem;
  border: 3px solid var(--blue_color_mix);
  border-radius: 10px;  
  display: inline-block;
  padding-top: 40px; 
  box-sizing: border-box;
}

.globalAdressLogo{
  width:200px;
  height: 100px;
  background: #f9f9f9;
  position: relative;
  left:0;
  right: 0;
  top:0;
  margin-bottom:-50px;
  padding:15px;
}

.globalAdressLogo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
 
.addressFlag{
  margin: 0.5rem;
}

.addressHeadTitle{
  font-size:.8rem;
  margin: 0.5rem;
  font-weight: bold;
}


.addressText{
  margin: 0.5rem;
  font-size:.8rem;
}

.dot{
  width: 55px;
  height: 55px;
  border-radius: 100px;
  background:var(--blue_color_2);
  margin:0.25rem;
}
 
#comments .container {
  overflow: hidden;
}


/* NEW */
.modul_div{
  display: flex;
  width: 180px;
  height: auto;
  flex-direction: column;
  background: #fff;
  margin:0.7rem;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  text-align: center;
  padding: 0.5rem 0.7rem;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: ease-in-out 0.3s all;
}

.modul_div .modulImg{
  width: 100%;
  height: 100px; 
}


.modul_div .modulImg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modul_div .modulTitle{
  word-wrap: break-word;
}

.modul_div:hover{
  transform: scale(1.05) !important; 
}


@media (max-width: 500px) {
  .modul_div {  
    width:160px;
  }
  #viewSMPhotoMap .title{
    font-size: 1.5rem !important;
  }
  
  #viewInstagram .title{
    font-size: 1.5rem !important;
  }
}

.nav-link:focus, .nav-link:hover {
  color: var(--blue_color_mix)
}


#viewSMPhotoMap{
  color:#2D2D2D;
  height: auto; 
  background:var(--blue_color_2);
  padding:3rem;
} 

#viewSMPhotoMap .title{
  font-size:2.5rem;
  color:#fff;
  display: block;
  text-align: center;
}


#viewInstagram{
  background: url(../images/instaBanner.png) center left no-repeat;
  background-size: cover;
  color:#2D2D2D;
  height: auto; 
  padding:3rem;
} 

#viewInstagram .title{
  font-size:2.5rem;
  color:#fff;
  display: block;
  text-align: center;
}


.customBtnWhite{
  display: inline-block;
  padding:0.5rem 2rem;
  border-radius: 100px;
  margin:0 auto;
  background: #f9f9f9;
  color: var(--blue_color_2);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  transition: linear 0.2s all;
  border:0;
}

.customBtnWhite:hover{  
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
  font-weight:700;

}

.globalTitle{ 
  margin: 0 auto;
  display: inline-block;
  box-sizing: border-box;   
  font-size: 3.5rem;
  text-align: center;
  word-wrap:break-word;
  background: var(--blue_color_2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  /*border-bottom: 10px solid #FFCE00; */
  word-break: break-word;
  margin-bottom: 2rem;
  font-weight:600;
}

.videoContainer{  
  display: block;
  margin: 0 auto;
  max-width: 400px;
}

.videoContainer video{
  display: block; 
  border-radius: 15px;
  width: 100%; 
  object-fit: contain;
}

.globalTitleDesc{
  display: block;
  width: 100%;
  font-size:1rem;
}


/* MODAL CSS IMPORT */

.modal-header{
  border:0 !important;
}

.modal-title{
  margin:0 auto !important;
  font-weight: normal !important;
  font-size: 1.2rem !important;
}

.modal-body{
  padding: 2.5rem !important;
}

.modal-header .close{
  float:left !important;
  margin: -1rem -1rem -1rem -1rem !important;
}

.modal-content{
  border-radius: 1rem !important;
}
 

/* MODAL CSS IMPORT */

.gridPaketler{
  
  /*gap: 20px;
  grid-template-columns: repeat(5, minmax(230px, 1fr));
  justify-content: center;
  align-content: center;
  grid-auto-flow: row;*/
}


@media (max-width: 1024px) { 
  .gridPaketler{
    grid-template-columns: repeat(4, minmax(230px, 1fr));
  }
}

@media (max-width: 991px) { 
  .gridPaketler{
    grid-template-columns: repeat(4, minmax(230px, 1fr));
  }
}

@media (max-width: 768px) { 
  .gridPaketler{
    grid-template-columns: repeat(3, minmax(230px, 1fr));
  }
}

@media (max-width: 500px) { 
   
  .gridPaketler{
    grid-template-columns: repeat(1, minmax(230px, 1fr));
  }
} 

.appPaket{
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 210px;
  margin:0.3rem;
  border-radius: 10px;
  padding: 1.7rem;
  justify-items: center;
  align-items: center;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
}

.paket_title{
  color: var(--blue_color_mix);
  font-size:1.2rem;
}

.paket_desc{
  font-size: 0.85rem;
  margin:1rem 0rem;
}

.paket_footer .customBtnWhite{
  font-size: 0.8rem;
  padding: 0.5rem 1.5rem;
}

