body {
  font-family: "Montserrat", sans-serif;
}

/* Update 1 */

/* HORIZONTAL SCROLL */
.scroll-container {
  display: flex;
  overflow: auto;
  padding: 100px 20px 20px 20px;
  margin-left: 250px;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.card_container {
  display: inline-block;
}

.image_container {
  overflow: hidden;
}

.scroll-container .card_container img {
  margin-right: 35px;
  width: 25vw;
  height: 70vh;
  object-fit: fill;
  text-align: start;
  vertical-align: top;
  transition: 0.5s all ease-in-out;
  background-image: linear-gradient(
    to right,
    #f6f7f8 0%,
    #edeef1 20%,
    #f6f7f8 40%,
    #f6f7f8 100%
  );
}

.image_container img:hover {
  transform: scale(1.04);
}

.card_container:nth-child(1) img {
  width: 25vw;
  height: 35vh;
}

@media (min-width: 320px) and (max-width: 900px) {
  .scroll-container {
    margin-left: 0px;
    padding: 88px 10px 20px 30px;
  }

  .scroll-container .card_container img {
    margin-right: 20px;
    width: 80vw;
    height: 60vh;
    object-fit: fill;
    text-align: start;
    vertical-align: top;
    transition: 0.5s;
  }

  .scroll-container .card_container img:hover {
    transform: scale(1.1);
  }

  .scroll-container .card_container:nth-child(1) img {
    width: 80vw;
    height: 40vh;
  }
}

/*  */

/* Start Navbar   */
.main_page_wrapper .main_navbar {
  width: 100%;
  position: fixed;
  z-index: 1000;
  padding-left: 40px;
  padding-right: 40px;
  text-decoration: none;
}

@media (min-width: 320px) and (max-width: 900px) {
  .main_page_wrapper .main_navbar {
    padding-left: 30px;
    padding-right: 30px;

    text-decoration: none;
  }
}
.main_page_wrapper .main_navbar .wrap_items {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.main_page_wrapper .main_navbar .wrap_items .logo_img {
  margin-top: 40px;
  width: 40%;
  text-decoration: none;
}

@media (min-width: 320px) and (max-width: 900px) {
  .main_page_wrapper .main_navbar .wrap_items .logo_img {
    margin-top: 20px;
    width: 60px;
    text-decoration: none;
  }
}

.main_page_wrapper .main_navbar .wrap_items .main_bar_icon {
  display: none;

  text-decoration: none;
}
@media (min-width: 320px) and (max-width: 900px) {
  .main_page_wrapper .main_navbar .wrap_items .main_bar_icon {
    display: block;
    margin-top: 20px;
    width: 20px;
    height: 20px;
    border: 0px;
  }
}
/* Start Navbar  */

/* Start Header Links  */
.main_page_wrapper .main_header {
  width: 300px;
  /* background-color: #ccc; */
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 60px;
  height: 100%;
  padding-top: 100px;

  text-decoration: none;
}
@media (min-width: 320px) and (max-width: 900px) {
  .main_page_wrapper .main_header {
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #fff;
    top: 50px;
    z-index: 200000;
    text-align: center;
    display: none;
    border-bottom: 2px solid #eee;

    text-decoration: none;
  }
}

@media (min-width: 320px) and (max-width: 900px) {
  .main_page_wrapper .main_header.mobile_screen {
    display: block;

    color: #4e4e4e;

    text-decoration: none !important;
  }
}
.main_page_wrapper .wrap_items .main_bar_icon {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  cursor: pointer;
  text-decoration: none;
}

.main_page_wrapper .wrap_items .main_bar_icon img {
  height: 100%;
  width: 100%;
  text-decoration: none;
}
.main_page_wrapper .main_header .links_list .link_item {
  padding: 15px 0 10px 40px;
  transition: 0.5s all ease-in-out;
  text-decoration: none;
}

/* update 2 */
.main_page_wrapper .main_header .links_list .link_item .main_link {
  color: #000000;
  text-transform: uppercase;
  transition: 0.5s all ease-in-out;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 2px 5px 2px 5px;
}

/* update 3 */
.main_page_wrapper .main_header .links_list .link_item .main_link:hover {
  background-color: #ececec;
  border-radius: 4px;
}

.main_page_wrapper .main_header .links_list .link_item.toggle_items .main_link {
  color: #9b9d9f;
  padding-left: 5px;
  transition: 0.5s all ease-in-out;

  text-decoration: none;
}
.main_page_wrapper .main_header .links_list .link_item.without_toggle {
  display: none;
  transition: 0.5s all ease-in-out;

  text-decoration: none;
}
.main_page_wrapper
  .main_header
  .links_list
  .link_item.without_toggle.with_toggle {
  display: block;
  transition: 0.5s all ease-in-out;
}
.main_page_wrapper .main_header .social_media {
  padding-left: 40px;
  display: flex;
  gap: 15px;
  position: absolute;
  bottom: 70px;

  text-decoration: none;
}
.main_page_wrapper .main_header .social_media .social_link {
  text-decoration: none;
  color: #000000;
}
.main_page_wrapper .main_header .social_media .social_link .user_contact {
  font-size: 15.5px;
}
@media (min-width: 320px) and (max-width: 900px) {
  .main_page_wrapper .main_header .social_media {
    position: relative;
    padding: 10px;
    bottom: auto;
    justify-content: center;

    text-decoration: none;
  }

  .main_page_wrapper .main_header .links_list .link_item {
    padding: 7px 0 10px 0px;
  }
}
/* End Header Links  */

.main_page_wrapper .slider_container {
  padding-left: 300px;
  padding-top: 173px;
    dots: false,
    prevArrow: false,
    nextArrow: false

  text-decoration: none;

  /* background-color: aqua; */
}
@media (min-width: 320px) and (max-width: 900px) {
  .main_page_wrapper .slider_container {
    padding-left: 0;
    padding-top: 80px;

    text-decoration: none;
  }
}
.author-service .slick-slider {
  position: relative ;
 dots: false,
    prevArrow: false,
    nextArrow: false

  text-decoration: none;
}

.author-service .slick-slider .slick-slide {
  padding: 0px 20px !important;

  text-decoration: none;
}

.author-service .slick-slider .slick-next,
.author-service .slick-slider .slick-prev {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.05),
    0 0 5px -2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.05), 0 0 5px -2px rgba(0, 0, 0, 0.05);
  width: 35px;
  height: 35px;
  z-index: 700;
  opacity: 0.8;
  text-decoration: none;
}

.author-service .slick-slider .slick-next {
  right: 0 !important;
  text-decoration: none;
right: 0 !important;
    text-decoration: none;
    left: 0;
}

.author-service .slick-slider .slick-next::before {
  color: #000000 !important;
  text-decoration: none;
}

.author-service .slick-slider .slick-prev {
  left: 0 !important;
  text-decoration: none;
left: auto !important;
    right: 0px;
}

.author-service .slick-slider .slick-prev::before {
  color: #000000 !important;
  /* content: "\f055";
  font-family: FontAwesome; */
  text-decoration: none;
}

.author-service .slick-slider .slick-list {
  padding: 0 0 0 0;

  text-decoration: none;
}

.author-service .card {
  border: none !important;
  /* animation: fadeIn ease 5s;
  -webkit-animation: fadeIn ease 5s;
  -moz-animation: fadeIn ease 5s;
  -o-animation: fadeIn ease 5s;
  -ms-animation: fadeIn ease 5s; */

  overflow: hidden;
}

.author-service .card .card-photo {
  max-height: 330px;
  overflow: hidden;
  transition: 0.3s;
  text-decoration: none;
  background-image: linear-gradient(
    to right,
    #f6f7f8 0%,
    #edeef1 20%,
    #f6f7f8 40%,
    #f6f7f8 100%
  );
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.author-service .card .card-photo .card-img-top {
  min-height: 330px;
  max-height: 330px;
  transition: 0.3s;
  display: block;
  filter: brightness(0.8);

  text-decoration: none;
}

.author-service .card .card-photo .card-img-top2 {
  min-height: 100px;
  max-height: 260px;
  transition: 0.3s;
  display: block;
  filter: brightness(0.8);

  text-decoration: none;
}

.author-service .card .card-photo .card-img-top:hover {
  transform: scale(1.1);

  text-decoration: none;
}

.author-service .card .card-photo .card-img-top2:hover {
  transform: scale(1.1);

  text-decoration: none;
}

.card-body .title {
  color: #000000;
  font-size: 16px;
  margin: 8px 0;
  font-weight: 600;
  text-decoration: none;
}
.card-body .description {
  color: #b1b1b1 !important ;
  /* line-height: 1.7; */
  font-size: 13px;
  font-style: italic;
  font-weight: 200;
text-overflow: wrap; 
  text-decoration: none !important;
 text-overflow: ellipsis;


}

.author-service .card .card-body .description2 {
  color: #9b9d9f !important;
  line-height: 0.5;
  margin: 0;

  text-decoration: none !important;
}

.slider_container .form_wrapper .contact_us_title {
  color: #4e4e4e;
  font-weight: 700;

  text-decoration: none;
}
.slider_container .form_wrapper .form_group {
  margin-bottom: 20px;

  text-decoration: none;
}
a {
  text-decoration: none !important;
}
