/* style.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Book Antiqua", "Poppins", "sans-serif";
  background: #FFF6ec;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  margin: auto;
}

header {
  background: #fffbf7;
  padding: 0.6rem 0;
}
header .sticky-container {
  margin: auto;
  display: flex;
  justify-content: space-between;
}
header .sticky-container .title {
  display: flex;
  font-weight: 600;
  font-family: "Book Antiqua", "math";
  margin-left: 10px;
  line-height: 1.4;
}
header .nav {
  justify-content: space-between;
  align-items: center;
}
header .nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
header .nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}
header .nav ul li .nav-line-hover {
  height: 5px;
  width: 100%;
  margin-top: 5px;
}
header .nav ul li:hover .nav-line-hover {
  background-color: #222;
}
header .breadcrumb {
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  width: 50px;
  padding: 10px;
  border: 2px solid #003d4d;
  border-radius: 10px;
}
header .breadcrumb div {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #003d4d;
}

.menu-container {
  display: none;
  position: fixed;
  width: 90%;
  margin: 0 5%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #FFF6ec;
  border-radius: 10px;
  z-index: 100000;
}
.menu-container .nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem;
}
.menu-container .nav ul li {
  padding: 1rem 2rem;
  background-color: #fffbf7;
  width: 80%;
  text-align: center;
  border-radius: 15px;
}
.menu-container .nav ul li a {
  text-decoration: none;
  color: #222;
}

.menu-container.show {
  display: block !important;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
  position: relative;
}
.hero:before {
  position: absolute;
  background: url(./images/page-turner.svg);
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  content: "";
  background-size: cover;
}
.hero .hero-content {
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero .hero-content .hero-text .caption {
  padding: 10px;
  background: #FFF6ec;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.hero .hero-content .hero-text .title {
  margin-top: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.hero .hero-content .hero-text .message {
  margin-top: 10px;
  font-size: 15px;
}
.hero .hero-content .hero-image img {
  opacity: 1;
  border-radius: 22px;
}
.hero .hero-content .hero-image .caption {
  padding: 10px;
  background: #FFF6ec;
  border-radius: 10px;
  position: absolute;
  top: auto;
  right: auto;
  left: 6%;
  bottom: 10%;
}

.services {
  display: flex;
  justify-content: space-between;
  padding-top: 5rem;
}
.services .service-img {
  position: relative;
}
.services .service-img img {
  border-radius: 10px;
  height: 200px;
  width: 100%;
}
.services .service-img .text {
  font-size: 25px;
  position: absolute;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 10px;
}
.services .service-img .text.left-position {
  top: 10%;
  left: 2%;
}
.services .service-img .text.right-position {
  bottom: 10%;
  right: 2%;
}
.services .service-cards {
  display: flex;
  justify-content: space-between;
  margin-top: 1.3rem;
}
.services .service-cards .card {
  width: 24%;
  height: 300px;
  background-color: #fffbf7;
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #ccc;
}
.services .service-cards .card:hover {
  transform: scale(1.05);
  transition-duration: 300ms;
}
.services .service-cards .card img {
  height: 75px;
  width: 75px;
  border-radius: 50%;
}
.services .service-cards .card .description {
  font-size: 14.5px;
  margin-top: 7px;
}

.about {
  padding-top: 5rem;
}
.about .about-content {
  display: flex;
  overflow: hidden;
  background-color: #fffbf7;
  border-radius: 10px;
}
.about .about-content .about-image > img {
  border-radius: 0px;
}
.about .about-content .about-text {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about .about-content .about-text .title {
  font-weight: 600;
  text-decoration: underline;
}

.testimonials {
  padding-top: 5rem;
}
.testimonials .title {
  width: 100%;
  text-align: center;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}
.testimonials .silder-card {
  min-height: 200px;
  padding: 2rem;
  background: #fffbf7;
  border-radius: 15px;
}
.testimonials .silder-card .name {
  font-weight: 600;
  margin-top: 10px;
}
.testimonials .silder-card .name .hiphen {
  color: #888;
  margin-right: 5px;
}
.testimonials .silder-card .designation {
  font-size: 14px;
  font-weight: 600;
  color: #888;
}

.we-serve {
  padding-top: 5rem;
}
.we-serve .container {
  background-color: #fffbf7;
  border-radius: 2rem;
}
.we-serve .title {
  font-size: 2rem;
  text-align: center;
  padding: 1rem;
}
.we-serve .domains-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.we-serve .domains-container .domain {
  text-align: center;
  margin-bottom: 2rem;
}
.we-serve .domains-container .domain .icon {
  width: 100%;
  text-align: center;
}
.we-serve .domains-container .domain .icon > img {
  height: 50px;
  width: 50px;
}

.section {
  padding: 4rem 0;
}
.section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section .section-content .text {
  flex: 1;
}
.section .section-content .text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.section .section-content .text p {
  max-width: 500px;
}
.section .section-content .image {
  flex: 1;
}
.section .section-content .image img {
  width: 100%;
}

.testimonial {
  background: #fffbf7;
  padding: 3rem;
  border-radius: 10px;
  margin-top: 4rem;
}
.testimonial blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial cite {
  display: block;
  text-align: right;
  font-weight: bold;
}

footer {
  color: #fffbf7;
  padding-top: 5rem;
  text-align: center;
}
footer .footer-container {
  background: #003d4d;
  padding-bottom: 2rem;
}
footer .title {
  padding: 2rem 0rem;
  text-decoration: underline;
}
footer .footer-content {
  display: flex;
}
footer .footer-content .address-conatiner {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer-content .address-conatiner a {
  color: #fffbf7;
}
footer .footer-content .form-container {
  width: 50%;
}
footer .footer-content .form-container .form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .footer-content .form-container .form-fields input {
  width: 100%;
  height: 35px;
  outline: none;
  padding: 0px 10px;
  font-family: "Book Antiqua", "poppins";
  font-size: 19px;
}
footer .footer-content .form-container .form-fields textarea {
  width: 100%;
  height: 100px;
  outline: none;
  padding: 10px;
  font-family: "Book Antiqua", "poppins";
  font-size: 19px;
  resize: none;
}
footer .footer-content .form-container .form-fields button {
  padding: 10px 20px;
  border-radius: 5px;
  font-family: "Book Antiqua", "poppins";
  font-size: 19px;
}
footer .map-container {
  width: 100%;
  margin-top: 4rem;
}
footer .footer-links {
  margin-top: 1rem;
}
footer .footer-links a {
  color: #aaa;
  margin: 0 0.5rem;
  text-decoration: none;
}
footer .footer-links a:hover {
  color: #fffbf7;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-top {
  position: sticky;
  top: 0px;
  z-index: 999;
}

.fs-15 {
  font-size: 15px;
}

@media (max-width: 767px) {
  header .sticky-container {
    width: 95%;
  }
  header .sticky-container .logo {
    height: 55px;
    width: 60px;
  }
  header .sticky-container .title {
    font-size: 1.4rem;
    gap: 0px;
    flex-direction: column;
  }
  header .nav {
    display: none;
  }
  header .breadcrumb {
    display: flex;
    margin: 12px 0px;
  }
  .hero .hero-content {
    flex-direction: column-reverse;
  }
  .hero .hero-content .hero-text {
    text-align: center;
    width: 100%;
  }
  .hero .hero-content .hero-text .caption {
    display: none;
  }
  .hero .hero-content .hero-text .title {
    font-size: 1.4rem;
  }
  .hero .hero-content .hero-image {
    width: 100%;
    position: relative;
  }
  .hero .hero-content .hero-image img {
    height: auto;
    width: 90vw;
  }
  .hero .hero-content .hero-image .caption {
    display: block;
  }
  .about .about-content {
    flex-direction: column;
  }
  .about .about-content .about-image {
    height: 100%;
    width: 100%;
  }
  .about .about-content .about-image > img {
    height: auto;
    width: 100%;
  }
  .about .about-content .about-text {
    width: 100%;
    padding: 0px 5px 10px 5px;
  }
  .about .about-content .about-text .title {
    font-size: 1.4rem;
  }
  .about .about-content .about-text .description {
    font-size: 1rem;
    margin-top: 10px;
  }
  .services .service-img .text {
    font-size: 1.4rem;
  }
  .services .service-img .text.left-position {
    top: 5%;
    left: 2%;
  }
  .services .service-img .text.right-position {
    bottom: 5%;
    right: 2%;
  }
  .services .service-cards {
    display: block;
  }
  .services .service-cards .card {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  .services .service-cards .card .description {
    font-size: 1rem;
  }
  .we-serve .domains-container .domain {
    width: 40%;
  }
  footer .footer-content {
    flex-direction: column;
  }
  footer .footer-content .address-conatiner {
    width: 100%;
  }
  footer .footer-content .form-container {
    width: 100%;
    margin-top: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .sticky-container {
    width: 95%;
  }
  header .sticky-container .logo {
    height: 45px;
    width: 50px;
  }
  header .sticky-container .title {
    font-size: 1.8rem;
    gap: 5px;
  }
  header .nav {
    display: none;
  }
  header .breadcrumb {
    display: flex;
  }
  .hero .hero-content {
    flex-direction: column-reverse;
  }
  .hero .hero-content .hero-text {
    width: 100%;
    text-align: center;
  }
  .hero .hero-content .hero-text .caption {
    display: none;
  }
  .hero .hero-content .hero-text .title {
    font-size: 1.6rem;
  }
  .hero .hero-content .hero-image {
    width: 100%;
  }
  .hero .hero-content .hero-image img {
    height: auto;
    width: 90%;
  }
  .hero .hero-content .hero-image .caption {
    display: block;
  }
  .about .about-content {
    flex-direction: column;
  }
  .about .about-content .about-image {
    height: 100%;
    width: 100%;
  }
  .about .about-content .about-image > img {
    height: auto;
    width: 100%;
  }
  .about .about-content .about-text {
    width: 100%;
    padding: 0px 5px 10px 5px;
  }
  .about .about-content .about-text .title {
    font-size: 1.6rem;
  }
  .about .about-content .about-text .description {
    font-size: 1rem;
    margin-top: 15px;
  }
  .services .service-img .text {
    font-size: 1.4rem;
  }
  .services .service-img .text.left-position {
    top: 10%;
    left: 2%;
  }
  .services .service-img .text.right-position {
    bottom: 10%;
    right: 2%;
  }
  .services .service-cards {
    display: block;
  }
  .services .service-cards .card {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  .services .service-cards .card .description {
    font-size: 1rem;
  }
  .we-serve .domains-container .domain {
    width: 30%;
  }
  footer .footer-content {
    flex-direction: column;
  }
  footer .footer-content .address-conatiner {
    width: 100%;
  }
  footer .footer-content .form-container {
    width: 100%;
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  header .sticky-container {
    width: 95%;
  }
  header .sticky-container .logo {
    height: 45px;
    width: 50px;
  }
  header .sticky-container .title {
    font-size: 2rem;
    gap: 5px;
  }
  header .nav {
    display: flex;
  }
  header .breadcrumb {
    display: none;
  }
  .hero .hero-content {
    flex-direction: row;
  }
  .hero .hero-content .hero-text {
    margin-right: 30px;
    width: 50%;
  }
  .hero .hero-content .hero-text .caption {
    display: block;
  }
  .hero .hero-content .hero-text .title {
    font-size: 2rem;
  }
  .hero .hero-content .hero-image {
    width: 50%;
  }
  .hero .hero-content .hero-image img {
    height: auto;
    width: 100%;
  }
  .hero .hero-content .hero-image .caption {
    display: none;
  }
  .about .about-content {
    flex-direction: row;
    height: 500px;
  }
  .about .about-content .about-image {
    height: 100%;
    width: 40%;
  }
  .about .about-content .about-image > img {
    height: 100%;
    width: 100%;
  }
  .about .about-content .about-text {
    width: 60%;
    padding: 50px;
  }
  .about .about-content .about-text .title {
    font-size: 2rem;
  }
  .about .about-content .about-text .description {
    font-size: 1rem;
    margin-top: 25px;
  }
  .services .service-img .text {
    font-size: 1.6rem;
  }
  .services .service-img .text.left-position {
    top: 10%;
    left: 2%;
  }
  .services .service-img .text.right-position {
    bottom: 10%;
    right: 2%;
  }
  .services .service-cards {
    display: flex;
  }
  .services .service-cards .card {
    width: 24%;
    height: 300px;
  }
  .services .service-cards .card .description {
    font-size: 14.5px;
  }
  .we-serve .domains-container .domain {
    width: 20%;
  }
  footer .footer-content .address-conatiner {
    width: 50%;
  }
  footer .footer-content .form-container {
    width: 50%;
    margin-top: 2rem;
  }
}/*# sourceMappingURL=style.css.map */