body {
  font-family: "Barlow", sans-serif !important;
  background-color: #f3f3f3 !important;
}

.logo {
  width: 4%;
  margin-left: 3%;
}
.logo-custom {
  height: 8%;
  width: 15%;
  margin-top: -11px
}
.sabit-color {
color: #b544b5;
}

.logo:hover {
  animation-name: heart-beat;
  animation-duration: 2s;
}

.home-nav {
  background: #fff;
}

.home-nav a {
  cursor: pointer;
  text-decoration: none !important;
  color: black;
}

.home-nav a:hover {
  color: #fd6b13;
}

#about {
  animation-name: about-us;
  animation-duration: 2s;
}

.home-page-man {
  max-height: 86%;
}

.hamburger-menu {
  cursor: pointer;
}

#hamburger-button {
  display: none;
}

.dropdown-items {
  display: none;
  list-style-type: none;
}

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

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fd6b13;
  border-radius: 10px;
}

.service-card a:hover {
  color: #fd6b13;
}

.service-layout {
  background-color: #fd6b13;
}

.service-image {
  border-radius: 5%;
}

.service-image:hover {
  transform: scale(1.1);
  transition: all ease 0.5s;
}

.service-card .card {
  border: none !important;
}

.service-image-content {
  background-color: #fd6b13;
  color: #fff;
}
.service-image-content-grey {
  background-color: #f3f3f3 ;
  color: #000;
}

.service-image-content a {
  background-color: #fff;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  box-shadow: 0px 0 0 #fd6b13 inset;
}

.service-image-content a:hover {
  -webkit-box-shadow: -100px 0 0 #fd6b13 inset;
  color: #fff;
}

.product-layout {
  background-color: #111b56;
  color: #fff;
}

.carousel-inner img {
  width: 70%;
  height: 80vh;
  margin-left: 13%;
  margin-bottom: 11%;
  border-radius: 1%
}
.carousel-inner img:hover {
  box-shadow: 0px 3px 3px 3px #fff;
}

.cacrousal-prod-image {
  margin-left: 10%;
}

.carousel-control-prev {
  margin-left: 3%;
}

.carousel-control-next {
  margin-right: -3%;
}

.carousel-image-captio-orange {
	color: #fd6b13;
}

.explore-products-btn {
  color: #fd6b13 !important;
  background-color: #fff !important;
}

.explore-products-btn:hover {
  background-color: #fd6b13 !important;
  color: #fff !important;
  animation-name: explore-button;
  animation-duration: 1s;
}

.carousel-control-next {
  right: 10% !important;
}

.contactInput {
  margin-left: 25% !important;
}

.contact-layout {
  background-color: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.conect-text {
  text-align: center;
}

.form-control:focus {
  border-radius: 0;
  border: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid #fd6b13 !important;
}

.form-control {
  border-radius: 0;
  border: #fff !important;
  border-bottom: 1px solid #fd6b13 !important;
  font-size: small !important;
}

.connect-btn {
  color: #fd6b13 !important;
  background-color: #fff !important;
  border: 1px solid #fd6b13 !important;
  margin-left: 66% !important;
}

.connect-btn:hover {
  background-color: #fd6b13 !important;
  color: #fff !important;
}

.footer-logo {
  width: 5%;
}

.conservice-size {
  width: 100%;  
}

.poweredby {
  margin-left: 35%;
}

.mediaIcon {
  font-size: 1.5rem !important;
  background-color: #fd6b13 !important;
  color: #fff !important;
  padding: 8px !important;
  border-radius: 50% !important;
}

.mediaIcon:hover {
  color: #fd6b13 !important;
  background-color: #fff !important;
  box-shadow: 0px 8px 16px 0px #fd6b13;
  transform: rotate(45deg);
}

.contact-media {
  margin-left: 40%;
}

.show {
  display: none !important;
}

/* animation effect */
@keyframes about-us {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes explore-button {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes heart-beat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* media queries */
@media only screen and (max-width: 992px) {
  .show {
    display: block !important;
  }

  .logo {
    width: 7%;
    margin: 2%;
  }

  .nav-item {
    display: none;
  }

  #hamburger-button {
    display: block;
  }

  #hamburger {
    font-size: xx-large;
  }

  .dropdown-menu {
    display: block;
    right: 0;
  }

  .dropdown-items {
    display: block;
    font-size: 20px;
    margin: 3%;
    list-style-type: none;
    padding: 9px;
  }

  .ham-item {
    padding: 12px;
  }

  .home-title {
    margin: auto;
    max-width: 60vh !important;
  }

  .home-page-man {
    width: 91vw;
    max-height: 100%;
  }

  .home-text-1 {
    text-align: start;
    margin-right: 3%;
    position: inherit;
    letter-spacing: 2px;
    font-size: x-large;
  }

  .service-layout .service-card {
    margin-left: 0 !important;
  }

  .product-text h1 {
    font-size: larger;
    margin: 9%;
    padding: 0 !important;
  }

  .carousel-inner img {
    height: 38%;
    margin-bottom: 38%;
  }

  .product-layout {
    height: 95vh;
  }

  .carousel-control-prev {
    left: -5%;
  }

  .connect-btn {
    margin-left: 38% !important;
  }

  .poweredby {
    margin-left: 30%;
  }

  .footer-logo {
    width: 15%;
  }
}

.address-container {    
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-menu-font-size{
	font-size: 25px;
}
