* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  /* font-family: "Poppins", sans-serif; */
  /* font-family: "Roboto", sans-serif; */
  font-family: "Oswald", sans-serif;
  scroll-behavior: smooth;
}

/* start header  */
header {
  /* border: 1px solid red; */
  border-bottom: 1px solid rgb(233, 224, 224, 0.35);
  width: 100%;
  padding: 20px 0px;
  position: fixed;
  top: 0px;
  left: 0px;
  color: white;
  background-color: rgba(67, 63, 63, 0.25);
  z-index: 10;
}
.container {
  /* border: 1px solid blue; */
  width: 75%;
  margin: 0px auto;
}
.header_content {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.header_content .logo_name {
  font-weight: bold;
  font-size: 32px;
}
.header_content ul {
  display: flex;
}
.header_content li {
  list-style: none;
  padding: 0px 30px;
}
header .active a {
  color: #e62b4a;
}
.header_content a {
  color: white;
  font-size: 17px;
  text-decoration: none;
  transition: 0.5s;
}
.header_content a:hover {
  color: #e62b4a;
}
/* end header  */

/* start carousel  */
.carousel {
  background-image: url(./image-video/home_slider.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 700px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
.carousel_content {
  /* height: 100%; */
  /* border: 1px solid black; */
  color: white;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  /* display: flex; */
  /* flex-direction: row; */
}
.carousel_content p {
  font-size: 25px;
}
.carousel_content h1 {
  font-size: 75px;
  line-height: 90px;
}
.carousel_content button {
  word-spacing: 2px;
  margin-top: 30px;
  padding: 10px 30px;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  background-color: #e62b4a;
  border: 1px solid #e62b4a;
  cursor: pointer;
  transition: 0.5s;
}
.carousel_content button:hover {
  background: #af2239;
}
.carousel .scroll i {
  margin-top: 30px;
  font-size: 35px;
  font-weight: 900;
  animation: scrollAnimate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes scrollAnimate {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(50px);
  }
}
/* end carousel  */

/* start service  */
.service {
  color: white;
  background-color: black;
  /* background-color: green; */
  text-align: center;
  /* height: 650px; */
}
.service_content {
  padding: 90px 0px;
  letter-spacing: 1px;
}
.service_title p:first-child {
  color: #e62b4a;
  font-size: 14px;
  font-weight: 300;
}
.service_title h2 {
  font-size: 50px;
  font-weight: 400;
}
.service_title p:last-child {
  color: #888888;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
}
/* start slider  */
.service_slider {
  margin-top: 30px;
}
.slider_item {
  /* border: 1px solid black; */
  display: inline;
  margin: 0px;
  padding: 10px;
  color: #848482;
  height: 250px;
}
.slider_item .item_content {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  position: relative;
}
.slider_item .item_content::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: red;
  height: 0px;
  width: 5px;
  transition: 0.4s;
}
.slider_item .item_content:hover::after {
  height: 100%;
}
.slider_item .item_content i {
  font-size: 50px;
}
.slider_item .item_content p {
  text-transform: uppercase;
  font-size: 14px;
}
.slick-dots li button:before {
  color: white;
  font-size: 14px;
}
.slick-dots li.slick-active button:before {
  color: #e62b4a;
}
/* end slider  */
/* end service  */

/* start blog post  */
.showcase {
  background-color: #f3f3f3;
  padding: 100px 0px;
  text-align: center;
}
.showcase_title p:first-child {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
}
.showcase_title h2 {
  font-size: 50px;
  font-weight: 400;
  color: black;
}
.showcase_title p:last-child {
  font-size: 16px;
  font-weight: 700;
  color: #888888;
  margin-top: 20px;
}
.showcase_list {
  /* border: 1px solid green; */
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  width: 100%;
  aspect-ratio: 1/1;
  gap: 30px;
}
#img-1 {
  grid-row: 1/3;
  grid-column: 1/3;
}
#img-8 {
  grid-row: 3/5;
  grid-column: 3/5;
}
.showcase_item {
  position: relative;
}
.showcase_item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(50%) contrast(50%);
}
.fancybox-zoomIn {
  animation: 0.25s ease both fancybox-zoomIn;
}

.fancybox-zoomOut {
  animation: 0.15s ease both fancybox-zoomOut;
}

@keyframes fancybox-zoomIn {
  from {
    opacity: 0;
    transform: scale(0.75);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fancybox-zoomOut {
  to {
    opacity: 0;
    transform: scale(1.25);
  }
}
/* start overlay */
.item_overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(230, 43, 74, 0.6);
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: 0.5s;
  overflow: hidden;
}
.showcase_item:hover .item_overlay {
  opacity: 1;
}
.overlay_search {
  height: 35px;
  width: 35px;
  background-color: white;
  color: black;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  position: absolute;
  top: 55px;
  right: 20px;
  transition: 0.5s;
}
.showcase_item:hover .item_overlay .overlay_search {
  top: 20px;
}
.overlay_title {
  position: absolute;
  bottom: -45px;
  left: 25px;
  transition: 0.8s;
}
.overlay_title p {
  color: #d0c7c8;
  font-size: 16px;
}
.overlay_title h3 {
  color: white;
}
.showcase_item:hover .item_overlay .overlay_title {
  bottom: 25px;
}
/* end overlay  */
/* end showcase  */

/* start number  */
.number {
  padding: 100px 0px;
  background-color: black;
  color: white;
  text-align: center;
}
.number .container {
  width: 70%;
}
.number_list {
  display: flex;
  justify-content: space-between;
}
.number_item span {
  font-size: 60px;
  font-weight: 300px;
}
.number_item p {
  font-size: 20px;
  color: #888888;
}
/* end number  */

/* start expercience  */
.experience {
  padding: 90px 0px;
  color: white;
  text-align: center;
  letter-spacing: 1px;
  background: url(./image-video/bussiness_img_1.jpg);
  /* background-color: green; */
  background-attachment: fixed;
  background-size: cover;
}
.experience .container {
  width: 75%;
  /* border: 1px solid black; */
}

.experience_title p:first-child {
  color: #e62b4a;
  font-size: 14px;
  font-weight: 300;
}
.experience_title h2 {
  font-size: 50px;
  font-weight: 400;
}
.experience_title p:last-child {
  color: #888888;
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0px 30px 0px;
}
.experience_content video {
  width: 100%;
  box-shadow: 0px 10px 10px 10px rgb(0, 0, 0, 0.5);
}
/* end expertcience  */

/* start contact  */
.contact {
  padding: 80px 0px;
  /* height: 700px; */
  text-align: center;
  /* letter-spacing: 1px; */
  background-color: white;
  /* background-color: green; */
}
.contact_title h2 {
  color: black;
  font-size: 50px;
  font-weight: 400;
}
.contact_title p {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}

.contact_content {
  height: 450px;
  display: flex;
  margin-top: 30px;
  padding: 0px 40px;
}
.contact_map {
  width: 60%;
  height: 100%;
  flex-shrink: 0px;
}
.contact_form {
  width: 40%;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* flex-grow: 1; */
}
.contact_form input,
textarea {
  padding: 1em;
  margin-bottom: 30px;
  color: #888888;
  font-size: 15px;
  border-radius: 3px;
  border: 1px solid #888888;
}
textarea {
  resize: none;
}
.contact_form button {
  background: #000;
  color: white;
  border: none;
  padding: 20px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;

  transition: 0.5s;
}
.contact_form button:hover {
  background: #e62b4a;
}
/* end contact  */

/*start footer */
footer {
  color: white;
  background-color: black;
}
.footer_content {
  display: flex;
  justify-content: space-between;

  align-items: center;
  padding: 100px 0px;
}
.footer_content p {
  font-size: 14px;
}
.footer_logo a {
  display: inline-block;
  text-align: center;
  color: white;
  height: 54px;
  width: 54px;
  line-height: 54px;
  border-radius: 50%;
  margin-left: 5px;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.5s;
}
.footer_logo a:hover {
  background-color: #e62b4a;
}
/* end footer */

/* back to top  */
.back-to-top {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 4px;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.cd-top--is-visible {
  visibility: visible;
  opacity: 1;
}

.cd-top--fade-out {
  opacity: 1;
  background: rgba(230, 43, 74, 0.5);
}
