body {
  font-family: "Poppins", sans-serif;
}
.container {
  padding-right: 25px;
  padding-left: 25px;
}
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #ffe2ca;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #fd5e53;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f8a15a;
}

.scrollbar-container {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1; /* Kaydırıcı rengi ve iz rengi */
}

.container {
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

a {
  text-decoration: none;
}

.bg-page1 {
  background-image: url("./img/bg2.jpg");
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  justify-items: center;
  align-items: center;
  align-content: center;
}

/* FADE IN DOWN ANIMATION EFFECT ---1  */

#list {
  list-style: none;
  text-align: center;
}

#list p {
  text-align: center;
  /* line-height: 50px; */
  opacity: 0;
  font-size: 40px;
  color: #dadada;
  font-weight: 700;
}

#list p:nth-child(2) {
  animation-delay: 0.5s;
}

#list p:nth-child(3) {
  animation-delay: 1s;
}

#list p:nth-child(4) {
  animation-delay: 2s;
}

#list p:nth-child(5) {
  animation-delay: 3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* FADE IN DOWN ANIMATION EFFECT ---2 */

.imgButton {
  background-color: #fd5e53;
  width: 200px;
  height: 45px;
  color: white;
  align-content: center;
  display: grid;
  border-radius: 8px;
  border: none;
}

.imgButton:hover {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #fd5e53;
  color: white;
}

.box {
  text-align: center;
  /* line-height: 90px; */
  color: #dadada;
  font-size: 17px;
  border-radius: 8px;
}

.fadeInUp {
  animation: fadeInUp 1s ease backwards;
}

@keyframes fadeInUp {
  0% {
    transform: translate(0px, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}

#headingBtn {
  background-color: #fd5e53;
  border: 1px solid #fd5e53;
  width: 160px;
  padding: 10px 35px;
  color: white;
  margin-bottom: 40px;
}
#headingBtn:hover {
  background-color: rgba(255, 255, 255, 0);
  border-style: inset;
  border: 1px solid #fd5e53;
  color: #fd5e53;
}
btn:hover {
  background-color: rgba(255, 255, 255, 0);
}
.service_section {
  position: relative;
}

.service_section .box {
  margin-top: 30px;
  text-align: center;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
  padding: 25px 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: black;
}

.service_section .box .img-box {
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.service_section .box .img-box img {
  max-height: 100%;
  max-width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .detail-box {
  margin-top: 15px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
}

.service_section .box .detail-box p {
  margin: 0;
}

.service_section .box:hover {
  background-color: #fd5e53;
  color: #ffffff;
  cursor: default;
}

.service_section .box:hover .img-box i {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #fd5e53;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #fd5e53;
}

.service_section .btn-box a :hover {
  background-color: transparent;
  color: #fd5e53;
}
.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #fd5e53;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.img-box i {
  color: #003471;
}
.contact {
  padding: 70px 0;
}

.contact .heading h2 {
  font-size: 2 rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.contact .heading h2 span {
  color: #fd5e53;
  font-weight: bold;
}

.contact .heading p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #999999;
  margin: 20px 0 60px;
  padding: 0;
}

.contact .form-control {
  padding: 25px;
  font-size: 13px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border: 0;
  border-radius: 10px;
  /* background-color: #f3f3f3; */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.contact button.btn {
  padding: 10px;
  border-radius: 10px;
  font-size: 15px;
  background-color: #fd5e53;
  color: #ffffff;
  width: 100%;
}
.contact button.btn:hover {
  background-color: #fd5e5300;
  color: #fd5e53;
  width: 100%;
  border: 1px solid #fd5e53;
}

.contact .title h3 {
  font-size: 18px;
  font-weight: 600;
}

.contact .title p {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  line-height: 1.6;
  margin: 0 0 40px;
}

.contact .content .info {
  margin-top: 30px;
}
.contact .content .info i {
  font-size: 30px;
  padding: 0;
  margin: 0;
  color: #fd5e53;
  margin-right: 20px;
  text-align: center;
  width: 20px;
}
.contact .content .info h4 {
  font-size: 13px;
  line-height: 1.4;
  font-weight: bold;
}

.contact .content .info h4 span {
  font-size: 13px;
  font-weight: 300;
  color: #999999;
}

.portfolio_section {
  background-color: black; /*  #832f47 */
  color: #ffffff;
  padding-top: 45px;
}

.portfolio_section .heading_container {
  margin-bottom: 25px;
}

footer {
  background-color: black;
  color: white;
  padding-top: 20px;
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f9fb;
  transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader::after {
  content: "";
  width: 75px;
  height: 75px;
  border: 15px solid #dddddd;
  border-top-color: #fd5e53;
  border-radius: 50px;
  animation: loading 0.75s ease infinite;
}
@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

.alert-success {
  display: none;
}

.fun-facts {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 50px;
}

.fun-facts .counter {
  background-color: #fd5e5340;
  position: relative;
  border-radius: 10px;
  width: 270px;
  padding: 20px 0px;
  display: inline-block;
  margin-top: 40px;
}

.fun-facts .counter h2,
.fun-facts .counter p {
  display: inline-flex;
  vertical-align: middle;
  cursor: default;
}

.fun-facts .counter p {
  text-align: left;
  font-size: 16px;
  color: #1e1e1e;
  font-weight: 600;
  line-height: 28px;
}

.fun-facts .counter h2 {
  margin-right: 25px;
  font-size: 40px;
  color: #fd5e53;
  font-weight: 700;
}

.fun-facts .counter:after {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #fd5e53;
  border-radius: 50%;
  content: "";
  right: -25px;
  top: -25px;
}
