@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: #ed1d26;
  --blue_color_mix: #ed1d26;
}

body {
  font-family: "europa";
  color: #333;
  background: #efefef;
}

* {
  -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: 30px 0;
  overflow: hidden;
  background: #efefef;
}

.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;
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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: #efefef;
}

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

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

.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;
}

/**
* 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;
}

.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%;
  align-items: center;
  padding-bottom: 0;
  padding-top: 100px;
}

.hero .heroTitle {
  color: var(--blue_color_2);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1.2em;
}

.hero .heroTitle2 {
  color: var(--blue_color_2);
  font-size: 4rem;
  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%;
}

#features_image_video {
  background: #efefef;
  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;
  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, 0.4),
    rgba(255, 36, 113, 0.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 p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

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

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

@-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));
  }
}

#entegrasyon {
  background-image: src();
  color: #f3f3f3;
  background-color: var(--blue_color_2);
}

#entegrasyon h2 {
  font-size: 3.5rem;
}

#entegrasyon .col-4 {
  padding-right: 6px;
  padding-left: 6px;
}

.entegrationImage {
  padding-bottom: 10px;
}

.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;
}

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

.our-brands_img {
  width: 200px;
  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: 0.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);
}

#indexContactUs {
  background: #ffffff;
}

#indexContactUs .left img {
  z-index: 2;
}

#indexContactUs .left {
  align-items: end;
  display: flex;
  justify-content: center;
  position: relative;
}

#indexContactUs .left .halfDiv {
  z-index: 1;
  position: absolute;
  align-items: end;
  display: flex;
  height: 500px;
  width: 100%;
  bottom: -250px;
  border-radius: 50%;
  background: #efefef;
}

#indexContactUs .left img {
  height: 400px;
}

.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.9rem;
  color: var(--blue_color_2);
  font-weight: bold;
}

.contact_us_head_sub_title {
  display: block;
  color: var(--blue_color_2);
  font-size: 24px;
  font-weight: bold;
}

.contact_us_input {
  background: #efefef;
  padding: 1rem;
  border: none;
  border-radius: 10px;
}

.customBtn2 {
  padding: 0.5rem 2rem;

  border-radius: 10px;
  background: var(--blue_color_2);
  color: #fff;
  transition: linear 0.2s all;
  border: 0;
}

.customBtn1 {
  display: block;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  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;
  width: 100%;
  margin-bottom: 20px;
}

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

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

.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[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield;
}

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: 0.9rem;
}

.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 {
  padding-top: 40px;
  background-color: var(--blue_color_2);
}

.SMWrapper {
  padding: 0 20px;
}

#contacts {
  padding-bottom: 40px;
}
.copyright-div {
  text-align: center;
  background: #ba1a21;
  padding: 10px 0;
}

.footerTitle {
  width: 7em;
  border-bottom: solid white 2px;
}

.footerTitle h2 {
  color: #f3f3f3;
}

footer .footer-social a {
  color: #21409a !important;
}

.submitBtn:hover {
  background: #193968;
}

.button {
  border-radius: 20px;
  background: #ddd;
  margin: 10px;
  padding: 20px 0px 20px 0px;
  text-align: center;
}

#footer {
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 30em;
}

.footerTitle {
  padding-bottom: 0.3em;
}

.footer-logo {
  padding-bottom: 30px;
}

.footerContactLogos {
  height: 40px;
}
.footer-logo img {
  height: 100px;
}
.footerLinksWrapper {
  display: flex;
  justify-content: center;
}
.footerLinks {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

.footerLinks ul {
  padding-left: 0;
}
.footerLinks ul li {
  list-style: disc;
  color: #f3f3f3;
  margin-bottom: 0.14em;
}

.footerContacts {
  text-align: left;
}
.footerContacts ul {
  padding-left: 0;
}
.footerContacts ul {
  list-style: none;
}

.footerContacts b {
  color: #ddd;
}

.footerContactTitle {
  margin-bottom: 0.3em;
  font-weight: 700;
  color: #f3f3f3;
  font-size: 20px;
}

footer li a:hover {
  color: inherit;
}

.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: #efefef;
  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: 0.8rem;
  margin: 0.5rem;
  font-weight: bold;
}

.addressText {
  margin: 0.5rem;
  font-size: 0.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: 250px;
  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;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

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

#viewSMPhotoMap {
  height: auto;
  background: var(--blue_color_2);
  padding: 0;
  color: #fff;
}

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

#payten .wrapper {
  position: relative;
}
#payten .text {
  color: #fff;
  position: absolute;
  width: 45%;
  left: 50px;
  top: 40px;
  height: 100%;
  padding: 20px;
  font-size: 20px;
}

#payten .text .logo {
  margin-bottom: 20px;
  height: 100px;
  padding-left: 40px;
}

#viewSMPhotoMap .left {
  color: #fff;
}
#viewSMPhotoMap .left a {
  margin-top: 20px;
}

.ios-android img {
  width: 70%;
}
#distroIntegrations .our-brands_img {
  width: 200px;
}

.cross {
  height: 20px;
  transform: rotate(0deg);
  transition: linear 0.2s all;
}
.collapsed .cross {
  height: 20px;
  transform: rotate(45deg);
}

#faq .card-header {
  background: #ffffff;
  border-bottom: 0;
}

#faq .card {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 15px;
  border: none;
}

#faq button.btn {
  color: var(--blue_color_2);
  text-decoration: none;
  background: #ffffff;
  font-size: 35px;
  width: 100%;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
#faq button.btn .left {
  white-space: normal;
}
#faq button.btn .right {
  display: flex;
  align-items: center;
  justify-content: end;
}

#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: #efefef;
  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;
  width: 100%;
}

.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;
  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: 1.5rem;
}

/* 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;
}

.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;
}

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

@media (max-width: 1024px) {
  .gridPaketler {
    grid-template-columns: repeat(4, minmax(230px, 1fr));
  }
  .bigTitle1 {
    font-size: 3.5rem !important;
  }
  .hero {
    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%;
  }

  .brandsTitleIcon {
    width: 150px;
    height: 150px;
  }
  #faq button.btn {
    font-size: 20px;
  }
}

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

@media (max-width: 991px) {
  * {
    text-align: center;
  }

  #viewSMPhotoMap {
    font-size: 20px;
    padding-top: 20px;
  }

  #viewSMPhotoMap h2 {
    font-size: 40px;
  }

  #indexContactUs .left {
    display: none;
  }
  .image-grid {
    width: 100%;
    height: 180px;
  }

  #entegrasyon .right {
    margin-top: 20px;
  }
  .gridPaketler {
    grid-template-columns: repeat(4, minmax(230px, 1fr));
  }
  .commentHeadText {
    font-size: 2rem;
  }
  .commentFooterText {
    font-size: 1rem;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .navbar-mobile ul {
    display: block;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
  .headerDiv {
    justify-content: space-around;
  }
  #indexContentUs .left {
    display: none;
  }
}

@media (max-width: 768px) {
  .our-brands_img  {
    width: 150px;
  }
  
  #distroIntegrations .our-brands_img {
    width: 150px;
}

  .commentHeadText {
    font-size: 1rem;
  }
  .commentFooterText {
    font-size: 0.5rem;
  }
  #say_hello .questionmark {
    display: none;
  }
  .gridPaketler {
    grid-template-columns: repeat(3, minmax(230px, 1fr));
  }
  .projelerTitle {
    font-size: 2.6rem !important;
  }
  .brandsTitleIcon {
    display: none;
  }
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
  .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;
  }
  .features_div {
    width: 45%;
  }
  .bigTitle1 {
    font-size: 2.6rem !important;
  }
  .hero {
    height: 100vh;
    /* height: auto; */
    background-size: auto 60%;
    background-position: 50% 95%;
  }
  .hero .heroTitleDesc {
    font-size: 0.9rem;
  }
  .hero .heroTitle {
    font-size: 2rem;
  }

  .hero .hero-img img {
    width: 100%;
  }

  #viewSMPhotoMap .ios-android {
    margin-top: 20px;
  }
  footer .left {
    margin-bottom: 20px;
  }
  .footerLinks ul li {
    list-style: none;
  }
  .footerLinks,
  .footerContacts {
    text-align: center;
  }
  .footer-logo img {
    height: auto;
  }
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

@media (max-width: 500px) {
  .SMWrapper.d-flex {
    padding :5px 50px;
  }
  .contact_us_input {
    text-align:left;
  }

  .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%;
  }
  .gridPaketler {
    grid-template-columns: repeat(1, minmax(230px, 1fr));
  }

  .hero .heroTitleDesc {
    font-size: 1rem;
  }
  .hero .heroTitle {
    font-size: 3rem;
  }
  #fixTopDesc {
    padding-top: 3rem;
    width: 100%;
  }
  .projelerTitleParentDiv {
    display: none;
  }
  .projelerTitleMobile {
    display: block;
  }
  .projeShortText {
    font-size: 0.75rem !important;
  }
  .dahaFazlaBtn {
    font-size: 0.75rem;
  }

  #dots {
    padding-left: 1rem !important;
  }
  .dot {
    width: 35px !important;
    height: 35px !important;
  }
  .modul_div {
    width: 160px;
  }
  #viewSMPhotoMap .title {
    font-size: 1.5rem !important;
  }

  #viewInstagram .title {
    font-size: 1.5rem !important;
  }

  .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;
  }

  #entegrasyon h2 {
    font-size: 2.6em;
  }
  .globalTitleDesc {
    margin-right: 30px;
    margin-left: 30px;
    width: auto;
  }
  #faq button.btn {
    width: 110%;
    padding-left:0;
  }
  #faq .card-body {
    text-align:left;
  }
  #payten .text {
    width:100%;
    left:0;
    top:20px;
  }
  #payten .text ul{
    padding-left:30px;
    text-align:left;
  }
  #payten .text .logo {
    padding-left:0;
    height:70px;
  }
  #payten .text li {
    list-style-type: disc;
    text-align:left;
  }

}

@media (max-width: 400px) {
  .hero {
    height: 100vh;
    background-size: auto 40%;
    background-position: 50% 90%;
    align-items: end;
  }
  .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; */
    text-align: center;
  }
  .hero .heroTitleDesc {
    font-size: 0.8rem;
  }
  .hero .heroTitle {
    font-size: 1.3rem !important;
  }
  #fixTopDesc {
    padding-top: 1rem;
    width: 100%;
  }
}
/* HERO BG */

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