/* header styling */

header {
  background-color: #f6faff;
  display: flex;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999999999;
  font-weight: 600;
}
.header {
  width: 80%;
  margin: auto;
  padding: 1.5rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "WorkSans";
}
.header .logo {
  object-fit: contain;
  width: fit-content;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: #0d0d0d;
  margin-left: 1.5rem;
}
.nav a:hover {
  color: #ffb229;
}
#contact_link {
  background-color: #ffb229;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: #fff;
}

header .nav_bar,
.nav .nav_bar .fa-times {
  display: none;
}

.fa-times,
.fa-bars {
  font-size: 1.5rem;
}

/* main hero */
.main {
  padding-top: 8rem;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: #f6faff;
}

.main_hero {
  width: 90%;
  display: grid;
  grid-template-columns: [col1-start] 2fr [col1-end col2-start] 2.5fr [col2-end];
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: center;
  justify-content: space-between;
  background: url("../assets/images/hero_bg_img.jpg") right no-repeat,
    linear-gradient(to right, transparent 40%, transparent 60%);
  background-size: contain;
  background-position: bottom right;
  position: relative;
}
/* .our_hero_dot_img_top {
  opacity: 0.3;
  background: url("../assets/images/our_service_dot_img.jpg") right no-repeat,
    linear-gradient(to right, transparent 100%, transparent 0%);
  background-size: contain;
  background-position: center;
} */
.hero_content_container_left h1 {
  font-family: "Manrope";
  font-size: 3.5rem;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 1rem;
}
.hero_content_container_left p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #767676;
  margin-top: 2rem;
}

.hero_content_container_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.5rem 0rem;
}
.hero_content_container_right form {
  background: #ffffff;
  border: 1px solid #dadada;
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 2.5rem 2rem;
  width: 80%;
}
.hero_content_container_right form h3 {
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero_content_container_right form .contact_input_hero {
  width: 100%;
  border: none;
  border-bottom: 2px solid #000;
  background-color: transparent;
  padding: 0.8rem 0;
  outline: none;
}
.hero_content_container_right form .quantity_delivery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(46%, 1fr));
  column-gap: 2rem;
  row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.hero_content_container_right form .contact_submit_hero {
  background-color: #ffb229;
  border-radius: 5px;
  border: none;
  color: #fff;
  margin-top: 2rem;
  outline: none;
}

/* our services */
.our_services {
  width: 100%;
  position: relative;
  margin-top: 5rem;
}

.our_services .our_service_dot_img {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  object-fit: contain;
  background: url("../assets/images/our_service_dot_img.jpg") transparent;
  opacity: 0.2;
  height: 10rem;
  width: 15rem;
}

.our_services_heading {
  font-weight: 800;
  font-size: 3rem;
}
.our_services_heading span {
  color: #2859a5;
}
.our_services_heading_container,
.our_service_top,
.our_service_middle {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(46%, 1fr));
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
.our_service_bottom_container {
  display: flex;
  justify-content: flex-end;
}
.our_service_bottom {
  width: 90%;
  display: grid;
  /*grid-template-columns: [col1-start] 2fr [col1-end col2-start] 2.5fr [col2-end];*/
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  border-radius: 5px;
  padding: 3rem 0rem;
  background: linear-gradient(to left, #f7faff 70%, #fff 30%);
}
.our_service_bottom img {
  object-fit: contain;
  width: 100%;
}
.our_service_bottom div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-weight: normal;
  font-size: larger;
  width: 65%;
}

.our_service_top h3,
.our_service_middle h3, .our_service_bottom h3 {
  font-weight: bold;
}
.our_service_top p,
.our_service_middle p, .our_service_bottom p {
  font-weight: 500;
  color: #000;
  margin-top: 1.5rem;
  font-size: larger;
}

.our_service_top img,
.our_service_middle img {
  object-fit: contain;
  width: 100%;
}

/* how to order services */
.how_to_order_services {
  margin-top: 5rem;
  background-color: #fbfdfb;
  padding: 3.5rem 0rem;
}
.how_to_order_services_container {
  width: 80%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.how_to_order_services_item {
  flex-basis: 30%;
  flex-grow: 1;
  margin: 2rem 0rem;
  position: relative;
}
.how_to_order_services_item h2 {
  font-weight: 800;
}
.how_to_order_services_item h3 {
  font-weight: 600;
  font-size: 1.25rem;
}
.how_to_order_services_item p {
  color: #4e4e4e;
}
.how_to_order_services_item h2 span {
  color: #2859a5;
}

.how_to_order_services_item img {
  position: absolute;
  top: -20px;
  left: -20px;
}

.how_to_order_services_item:nth-child(1n) {
  margin-left: 1rem;
}
.how_to_order_services_item:nth-child(2n) {
  margin-right: 1rem;
}

/* locations */
.locations {
  width: 80%;
  margin: auto;
  margin-top: 5rem;
}
.locations .location_head {
  font-weight: 800;
  font-size: 3rem;
}
.locations .location_head span {
  color: #2859a5;
}
.location_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.location_card {
  background: #f6faff;
  border-radius: 5px;
  flex-basis: 30%;
  padding: 1.5rem;
  margin: 1rem 0rem;
}
.location_card:nth-child(1) {
  margin-right: 2rem;
}
.location_card:nth-child(3) {
  margin-left: 2rem;
}
.location_card h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
.location_card p {
  color: #4e4e4e;
  margin: 1.5rem 0rem;
}

/* testimonials */
.testimonials {
  margin-top: 5rem;
  background-color: #242424;
  padding: 5rem 0rem;
}
.testimonials_inner {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(46%, 1fr));
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.testimonial-left p {
  color: #8ad177;
  text-transform: uppercase;
}
.testimonial-left h1 {
  color: #fff;
}

.testimonial_stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
  height: 100%;
  padding: 7rem 0rem;
  width: 100%;
  border-radius: 16px;
  border: none;
}
.testimonial_stack_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  height: 100%;
  width: 95%;
  border-radius: 16px;
  position: absolute;
  bottom: -10px;
  border: none;
}
.testimonial_stack_innermost {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
  width: 95%;
  position: absolute;
  border-radius: 16px;
  bottom: -10px;
  border: none;
}

.carousel-slide {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  margin: auto;
  overflow-y: auto;
}

.carousel-item .quote {
  font-weight: 600;
  color: #000000;
}
.carousel-item-inner {
  display: flex;
  align-items: center;
}

.carousel-item-inner img {
  object-fit: contain;
  margin-right: 1.5rem;
}
.carousel-item-inner div {
  margin-top: 1rem;
}
.user-testimonial-name {
  font-weight: 600;
  margin: 0;
}
/* contact */
.contact {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  margin-top: 5rem;
}
.contact_left_top_section h2 {
  font-weight: 800;
  font-size: 2.2rem;
  color: #201f1f;
}
.contact_left_top_section p {
  color: #393836;
}
.contact_left_bottom_section {
  margin-top: 2rem;
}
.contact_left_bottom_section label {
  color: #666666;
  margin-top: 1rem;
}
.contact_left_bottom_section a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  margin: 0;
}
.contact form,
.contact section {
  flex: 0;
  flex-grow: 1;
}
.contact section {
  margin-right: 2rem;
}
.contact_input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid #000;
  background-color: transparent;
  outline: none;
}
.contact_submit {
  background: #ffb229;
  border-radius: 5px;
  border: none;
  color: #fff;
  margin-top: 1rem;
}

/* footer */

footer {
  border-top: 1px solid #dadada;
  margin-top: 5rem;
}
.footer {
  width: 80%;
  margin: auto;
  padding: 1rem 0rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}
.footer_list ul {
  margin: 0;
  padding: 0;
}
.footer_list li {
  list-style: none;
}
.footer_list_head {
  font-weight: 600;
}
.footer_list li a {
  text-decoration: none;
  color: #000;
}
.footer_section {
  flex-basis: 20%;
  flex-grow: 1;
  padding: 0 0 0 2rem;
}
.footer_section:nth-child(1n) {
  margin-right: 2rem;
}
.footer_section:nth-child(2n) {
  margin-left: 2rem;
}
.footer_logo_section {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.footer_logo_section p {
  color: #000;
  font-weight: 600;
  margin-left: 1rem;
}
.footer_section .footer_socials {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.footer_section .footer_socials li {
  list-style-type: none;
  margin: 2rem 0.5rem;
  cursor: pointer;
}
.footer_section .footer_socials li a {
  text-decoration: none;
  color: #000;
}
.footer_section .footer_socials li a img {
  object-fit: contain;
}
.copy_right {
  width: 100%;
  text-align: center;
  border-top: 1px solid #dadada;
  padding: 1rem 0rem;
}
.copy_right_text {
  width: 80%;
  margin: auto;
}
