@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
/* Global Styles starts*/
:root {
  --main: #250599;
  --secondary-color: #eb7a11;
  --background-color: #dad6d6;
  --light-color: #929090;
  --black:#111;
  --white: #eee;
  --box-shadow:0.5rem 1rem rgba(179, 192, 216, 0.1) ;
  --border: .1rem solid var(--secondary-color);
  --border2: .1rem solid var(--main);
}

* {
  font-family: Poppins, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  transition: all 0.3s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding: 7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--main);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--main);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--secondary-color);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--secondary-color);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
}
.btn:hover {
  background: var(--main);
  color: var(--white);
  border: 2px solid var(--secondary-color);
}

@keyframes fadeIn {
  0% {
    top: 50%; /* with % units */
    opacity: 0;
  }
  100% {
    top: 0%;
    opacity: 1;
  }
}
/* Global Styles End*/
/* Headre Styles starts*/
.header {
  position: relative;
  top: 0%;
  left: 0%;
  right: 0%;
  box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo img {
  width: 30rem;
  height: 15rem;
  object-fit: cover;
  margin: -4rem 1rem;
  display: flex;
}
.header .navbar a {
  font-size: 2rem;
  color: var(--main);
  text-transform: capitalize;
  margin: 0 1rem;
  font-weight: 500;
  text-transform: uppercase;
}
.header .navbar a:hover {
  color: var(--secondary-color);
}
.header .navbar a:active {
  color: var(--secondary-color);
}
.header .navbar a:active {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}
.header #menu-btn {
  display: none;
}

/* Header1 Styles starts*/
.header1 {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: var(--main);
}
.header1 .phone {
  font-size: 1.5rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header1 .phone a {
  font-size: 1.5rem;
  color: var(--main);
  text-transform: capitalize;
  margin: 0 1rem;
  color: var(--white);
}
.header1 .phone a:hover {
  color: var(--secondary-color);
}
.header1 .social-icons {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header1 .social-icons .fas,
.header1 .social-icons .fab {
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 1rem;
}
.header1 .social-icons .fas:hover,
.header1 .social-icons .fab:hover {
  color: var(--secondary-color);
}
.header1 .social-icons #search-btn {
  display: inline-block;
  font-size: 1.5 rem;
  color: var(--white);
  cursor: pointer;
}
.header1 .social-icons #search-btn:hover {
  color: var(--secondary-color);
}

.search-form {
  position: absolute;
  top: 120%;
  left: 80%;
  transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 0.3s ease-in-out forwards;
}
.search-form.active {
  display: flex;
  top: 100%;
}
.search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-color);
  font-size: 1.6rem;
  color: var(--black);
}
.search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}
.search-form label:hover {
  color: var(--secondary-color);
}

/* Header Styles end*/
/* Home Section styles starts*/
.home {
  padding: 0;
}
.home .slide {
  min-height: 60rem;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.home .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--light-color), transparent);
}
.home .slide .content {
  width: 50rem;
  position: relative;
}
.home .slide .content h3 {
  font-size: 4rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--white);
}
.home .slide .content p {
  font-size: 2rem;
  color: var(--black);
  line-height: 2;
  line-height: 2;
  padding: 1rem 0;
  color: var(--white);
}
.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  font-size: 3rem;
  background: var(--secondary-color);
}
.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--light-color);
}
.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  color: var(--white);
  font-size: 2rem;
}
.home .swiper-button-prev {
  right: 7rem;
}

/* Home Section styles  ENDS*/
/* About Section styles starts*/
.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.about .row .video {
  flex: 1 1 41rem;
}
.about .row .video video {
  width: 100%;
  height: 45vh;
  object-fit: cover;
}
.about .row .image {
  flex: 1 1 41rem;
}
.about .row .image img {
  flex: 1 1 41rem;
  width: 100%;
  height: 35vh;
  object-fit: cover;
}
.about .row .content {
  flex: 1 1 41rem;
}
.about .row .content h3 {
  font-size: 3rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--main);
}
.about .row .content p {
  font-size: 1.5rem;
  color: var(--black);
  line-height: 2;
  padding: 1rem 0;
}
.about .box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 6rem;
}
.about .box-container .box {
  text-align: center;
  background: var(--background-color);
}
.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--main);
  text-transform: capitalize;
  padding-bottom: 0;
}
.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--black);
  line-height: 2;
  padding: 1rem;
  color: var(--black);
}
.about .areas {
  margin: 16rem;
}
.about .areas h4 {
  font-size: 1.5rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--secondary-color);
  padding-bottom: 1rem;
  margin: 8rem 0;
}
.about h3 {
  font-size: 2.5rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--main);
  padding-bottom: 1rem;
  text-align: center;
  margin: 6rem;
}
.about hr {
  border: 0.5rem solid var(--secondary-color);
  width: 10rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.about .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
.about .columns .column {
  flex: 1 1 30rem;
  width: 80%;
  text-align: center;
  background: var(--white);
  padding: 2rem;
}
.about .columns .column h4 {
  font-size: 2rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--main);
  padding-bottom: 1rem;
}
.about .columns .column p {
  font-size: 1.5rem;
  color: var(--black);
  line-height: 2;
  padding: 1rem 0;
  color: var(--black);
}

/* About Section styles ends*/
/* Services Section styles starts*/
.services {
  background: var(--background-color);
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
}
.services .box-container .box:hover img {
  transform: translateY(-1rem);
  box-shadow: 0.5rem 1rem rgba(179, 192, 216, 0.2);
}
.services .box-container .box img {
  height: 7rem;
  margin-bottom: 0.5rem;
}
.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--main);
  padding: 1rem 0;
}
.services .box-container .box p {
  font-size: 1.2rem;
  color: var(--black);
  line-height: 2;
}
.services .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 6rem;
}
.services .row .image {
  flex: 1 1 41rem;
}
.services .row .image img {
  flex: 1 1 41rem;
  width: 100%;
  height: 45vh;
  object-fit: cover;
}
.services .row .content {
  flex: 1 1 41rem;
}
.services .row .content h3 {
  font-size: 3rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--main);
}
.services .row .content p {
  font-size: 1.5rem;
  color: var(--black);
  line-height: 2;
  padding: 1rem 0;
}
.services .row .content hr {
  border: 0.5rem solid var(--secondary-color);
  width: 10rem;
  margin: 0 auto;
  margin: 3rem;
}
.services p {
  font-size: 1.8rem;
  color: var(--black);
  line-height: 2;
  color: var(--black);
  padding: 1rem;
  text-align: center;
}
.services .areas {
  margin: 16rem;
}
.services .areas h4 {
  font-size: 1.5rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--secondary-color);
  padding-bottom: 1rem;
  margin: 8rem 0;
}
.services .areas h3 {
  font-size: 3rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--main);
  text-align: center;
}
.services .areas hr {
  border: 0.5rem solid var(--secondary-color);
  width: 10rem;
  align-items: center;
  margin: 3rem auto;
}

.get-in-touch1 {
  height: 40vh;
  width: 100%;
  background-image: url("/Images/blog2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.get-in-touch1 h3 {
  font-size: 3rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--secondary-color);
}
.get-in-touch1 .row .content p {
  font-size: 1.5rem;
  color: var(--black);
  line-height: 2;
  color: var(--white);
  padding: 1rem;
  text-align: left;
  margin-top: 0;
  margin-left: 0;
}

.our-services {
  width: 100%;
  background-image: url("/Images/capentry1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.our-services h1 {
  font-size: 6rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--white);
  padding: 2rem 0;
}

/* Services Section styles ends*/
/* Projects Section styles starts*/
.projects .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.projects .box-container .box {
  cursor: initial;
}
.projects .box-container .box:hover .image img {
  transform: scale(1.1);
}
.projects .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}
.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.projects .box-container .box .content {
  display: flex;
  justify-content: space-between;
  box-shadow: var(--box-shadow);
  /* i {
      width: 7.5rem;
      font-size: 3rem;
      background: var(--secondary-color);
        color: var(--white);
        cursor: pointer;
        text-align: center;
        line-height: 7.5rem;
   }*/
}
.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}
.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--main);
  text-transform: capitalize;
}
.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--black);
  line-height: 2;
}

/* Projects Section styles ends*/
/*Reviews Section styles starts*/
.reviews .slide p {
  padding: 1.5rem;
  background: var(--background-color);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.5rem;
  color: var(--black);
  line-height: 2;
}
.reviews .slide p::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--background-color);
  transform: rotate(45deg);
}
.reviews .slide .user {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
}
.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--main);
  text-transform: capitalize;
}
.reviews .slide .user .stars {
  padding-top: 0.5rem;
}
.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--secondary-color);
}

/* Reviews Section styles ends*/
/* contact Section styles starts*/
.contact {
  background: var(--main);
}
.contact .heading {
  color: var(--white);
}
.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.contact .row .map {
  flex: 1 1 41rem;
  width: 100%;
}
.contact .row form {
  flex: 1 1 41rem;
  background: var(--background-color);
  padding: 2rem;
}
.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--main);
  text-transform: capitalize;
  padding-bottom: 1rem;
}
.contact .row form .box {
  margin: 0.7rem 0;
  width: 100%;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--black);
}
.contact .quote {
  text-align: center;
}
.contact .quote h3 {
  font-size: 2.5rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--white);
}
.contact .quote h1 {
  font-size: 6rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--white);
}
.contact .quote p {
  font-size: 1.8rem;
  color: var(--black);
  line-height: 2;
  margin-bottom: 3rem;
  color: var(--white);
}

.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.info .time {
  margin: 10rem;
  border: 0.5rem solid var(--light-color);
  text-align: center;
  display: inline-block;
  transition: 0.3sec linear;
}
.info .time i {
  color: var(--secondary-color);
  font-size: 2rem;
  padding: 0.5rem;
}
.info .time p {
  padding: 2rem 0;
  font-size: 1.5rem;
  font-weight: bold;
}
.info .time a {
  text-decoration: none;
  padding: 2rem 0;
  font-size: 1.5rem;
  font-weight: bold;
}
.info .time h4 {
  padding: 0.5rem;
  font-size: 1.5rem;
}

.contact-us {
  width: 100%;
  background-image: url("/Images/contact2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-us h1 {
  font-size: 6rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--white);
  padding: 2rem 0;
}

.get-in-touch {
  height: 40vh;
  width: 100%;
  background-image: url("/Images/about1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.get-in-touch h3 {
  font-size: 3rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--main);
  padding: 2rem 0;
}
.get-in-touch p {
  font-size: 1.5rem;
  color: var(--black);
  line-height: 2;
  color: var(--black);
  padding: 1rem 0;
}

/* contact Section styles ends*/
/*blog Section styles starts*/
.blog .slide {
  width: 35rem;
  text-align: center;
}
.blog .slide:hover .image img {
  transform: scale(1.1);
}
.blog .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}
.blog .slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.2s linear;
}
.blog .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  box-shadow: 0 0 1.5rem rgba(179, 192, 216, 0.2);
}
.blog .slide .content h3 {
  font-size: 2rem;
  color: var(--main);
  text-transform: capitalize;
}
.blog .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--black);
  line-height: 2;
}

.our-blog {
  width: 100%;
  background-image: url("/Images/blog7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.our-blog h1 {
  font-size: 6rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--secondary-color);
  padding: 2rem 0;
}

.blogs {
  display: grid;
  grid-template-columns: repeat(2, 80% 20%);
  gap: 0.1rem;
}
.blogs .blog-head .blog-menu {
  text-transform: uppercase;
}
.blogs .blog-head .blog-menu a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: medium;
}
.blogs .blog-head h1 {
  font-size: 4rem;
  color: var(--main);
  text-transform: capitalize;
}
.blogs .blog-head h1:hover a {
  color: var(--secondary-color);
}
.blogs .blog-head .blog-date {
  display: flex;
  text-transform: uppercase;
  font-size: medium;
  color: var(--light-color);
}
.blogs .blog-head .blog-date a {
  text-decoration: none;
  color: var(--secondary-color);
}
.blogs .blog-head .post1 .disclosure {
  font-size: 1.2rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--black);
}
.blogs .blog-head .post1 .image img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
}
.blogs .blog-head .post1 .content {
  margin-top: 2rem;
  font-size: medium;
}
.blogs .blog-head .post1 .content p {
  margin-bottom: 2rem;
}
.blogs .blog-head .post1 .content a {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--secondary-color);
}
.blogs .blog-head hr {
  width: 100%;
  border: 0.1rem solid var(--secondary-color);
  margin-top: 5rem;
  opacity: 0.3;
}
.blogs .blog-head .posts {
  display: flex;
  gap: 3rem;
  margin-left: 0;
  padding-left: 0;
}
.blogs .blog-head .posts .image img {
  height: 35vh;
  object-fit: cover;
}
.blogs .blog-head .posts .content {
  margin-top: 2rem;
  font-size: medium;
}
.blogs .blog-head .posts .content p {
  margin-bottom: 2rem;
}
.blogs .blog-head .posts .content a {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--secondary-color);
}
.blogs .blog-side {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}
.blogs .blog-side .form {
  width: 100%;
}
.blogs .blog-side .form label {
  font-size: medium;
}
.blogs .blog-side .form .search {
  display: flex;
  margin: 1.5rem 0;
}
.blogs .blog-side .form .search input {
  height: 4rem;
  border: 1px solid var(--light-color);
}
.blogs .blog-side .form .search .btny {
  background: var(--secondary-color);
  color: var(--white);
  text-transform: uppercase;
  width: 100%;
  font-size: larger;
  padding: 1rem;
  border-radius: 0.3rem;
  font-weight: bold;
}
.blogs .blog-side .form h5 {
  font-size: 1.5rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--black);
  text-transform: uppercase;
  width: 100%;
  padding: 2rem 0;
  opacity: 0.7;
}
.blogs .blog-side .form .emails {
  width: 100%;
  height: 4.5rem;
  border: 1px solid var(--light-color);
}
.blogs .blog-side .form .submit {
  border: 1px solid var(--light-color);
  width: 100%;
  padding: 0.3rem;
  background: var(--secondary-color);
  color: var(--white);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.blogs .blog-side .recents {
  display: flex;
  gap: 0.5rem;
  margin: 3rem 0;
}
.blogs .blog-side .recents .content h1 {
  font-size: 1.7rem;
  color: var(--main);
  text-transform: capitalize;
}
.blogs .blog-side .recents .content h1:hover a {
  color: var(--secondary-color);
}
.blogs .blog-side .recents .content h6 {
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--light-color);
}
.blogs .blog-side .recents .image img {
  width: 6vw;
  height: 8vh;
}
.blogs .blog-side h1 {
  font-size: 3rem;
  color: var(--main);
  text-transform: capitalize;
}

/*blog Section styles ends*/
/* footer styles starts*/
.footer {
  text-align: center;
  background: var(--light-color);
}
.footer .links {
  margin: 0.5rem;
}

.legal {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--main);
  text-transform: capitalize;
  text-align: center;
  padding: 1rem;
  background: var(--main);
  width: 100%;
  color: var(--white);
  gap: 1rem;
}
.legal .credit .span {
  color: var(--secondary-color);
}

/* footer styles ends*/
/*About Us page styles starts*/
.about-us {
  width: 100%;
  background-image: url("/Images/city1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-us h1 {
  font-size: 6rem;
  color: var(--main);
  text-transform: capitalize;
  color: var(--white);
  padding: 2rem 0;
}

/*About Us page styles starts*/
/*FAQ Section styles starts*/
/* FAQ Section Styles */
.faq {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}
.faq-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: var(--main);
  text-transform: capitalize;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  padding: 10px 15px;
  transition: background-color 0.3s;
}
.faq-question:hover {
  background-color: #e0e0e0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 15px;
  background-color: #fff;
}
.faq-answer.active {
  max-height: 200px; /* or enough to fit your content */
  padding: 10px 15px;
}

/* FAQ Section styles ends*/
/* media queries*/
@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 5%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
  .header #menu-btn {
    display: inline-block;
    line-height: 1.5rem;
    font-size: 2.5rem;
    color: var(--main);
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--main);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
    color: var(--white);
    text-align: center;
  }
}
@media (max-width: 768px) {
  .header1 {
    padding: 1rem 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 8vh;
  }
  .header1 .phone {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  .header1 .phone h4 {
    font-size: 1rem;
  }
  .header1 .phone .fas {
    font-size: 1rem;
  }
  .header1 .search-form {
    width: 100%;
  }
  .header1 .social-icons {
    margin-top: 1rem;
  }
  .header1 .phone a {
    font-size: 1rem;
    width: 100%;
    justify-content: space-between;
    width: 100%;
  }
  .header .search-form {
    width: 100%;
  }
  .home .slide {
    justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .get-in-touch {
    height: 45vh;
  }
  .get-in-touch p {
    font-size: 1.2rem;
    color: var(--black);
    line-height: 2;
    color: var(--white);
    background: var(--main);
    padding: 1rem;
  }
  .services .row .content h3 {
    font-size: 1.8rem;
    color: var(--main);
    text-transform: capitalize;
  }
  .services .row .content p {
    font-size: 1.4rem;
    color: var(--black);
    line-height: 2;
    width: 100%;
    text-align: justify;
  }
  .services .row .image img {
    height: 30vh;
  }
  .footer .links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 1.5rem;
    color: var(--main);
    text-transform: capitalize;
    gap: 1rem;
    margin: 1rem 0;
  }
  .legal {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal .credit {
    font-size: 1.2rem;
  }
  .blogs {
    display: block;
  }
  .blogs .blog-head .posts {
    flex-direction: column;
    gap: 0.5rem;
  }
  .blogs .blog-head .posts .image img {
    height: 30vh;
    width: 100%;
    object-fit: cover;
  }
  .blogs .blog-head h1 {
    font-size: 1.8rem;
  }
  .blogs .blog-head p {
    font-size: 1.5rem;
    color: var(--main);
    text-transform: capitalize;
    color: var(--black);
  }
  .blogs .blog-head .post1 .content h1 {
    font-size: 1rem;
  }
  .blogs .blog-head .post1 .image img {
    height: 30vh;
  }
  .blogs .posts {
    display: block;
  }
  .blogs .posts .content h1 {
    font-size: 1rem;
  }
  .blogs .posts .image img {
    height: 30vh;
  }
  .blog-side .recents .image img {
    width: 100%;
    height: 2vh;
    object-fit: cover;
  }
}

/*# sourceMappingURL=styles.css.map */
