
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;1,500;1,600;1,800&display=swap");
* {
  font-family: 'Fira Sans', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  /* text-transform: capitalize; */
  transition: all .2s linear;
}
:root{
  --green:#f3f5f8 ;
  --lightgreen:#c7eaff;
  --white:#F3F6FF;
  --lightblue:#46C6CE;
  --yellow:#f9d806;
  --light-yellow:#ffee80;
  --black:#130f40;
  --light-color:#666;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:1rem solid rgba(0,0,0,.3);
  --lightwhite:#d2f7fa;
  --lightred:#6d6d6d;
}
html {
  font-size: 60.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--black)
}

section {
  padding: 5rem 9%;
}
/* <-----> */



.btn {
  display: inline-block;
  margin-top: 1rem;
  border: 0.2rem solid #222;
  background: #fff;
  padding: 1rem 3rem;
  font-size: 1.7rem;
  cursor: pointer;
  color: #222;
}

.btn:hover {
  color: #fff;
  background: #3b72a8;
}

.heading {
  text-align: center;
  margin-bottom: 4rem;
  /* background: #c7eaff; */
}

.heading h1 {
  font-size: 3.5rem;
  color: #222;
}

.heading p {
  margin: 1rem auto;
  font-size: 1.5rem;
  color: #0e0808;
  max-width: 50rem;
  line-height: 2;
}


.header {
  padding: 2.5rem 15%;
  background: #f08383;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between; 
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .logo img {
  height: 8rem;
}
.header-3 #search-btn {
  display: none;
}
.header .search-form {
  height: 5rem;
  width: 15rem;
  border-radius: .5rem;
  background: #eaf0f3;
  display: flex;
 align-items: center;
  padding: 0 1.5rem;
}

.header .search-form input {
  width: 100%;
  background: none;
  font-size: 1.6rem;
  color: #777;
  text-transform: none;
}


.header .search-form label:hover {
  color: #45797e;;
}

.header .icons a,
.header .icons form,
.header .icons div {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  background: #f5f5f5;
  color: #222;
  cursor: pointer;
  font-size: 1.8rem;
  margin-left: .3rem;
  border-radius: .5rem;
}

.header .icons a:hover,
.header .icons div:hover {
  background: #45797e;;
  color: #fff;
}

.header-2,
.header-3{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 8%;
  /* background:var(--lightred); */
  /* background: #bdbbbb; */
  /* background: var(--lightred); */
  background: #c6c5c5;

}

.header-3{
  background:#3b72a8;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  position: relative;
  z-index: 10000;
}


.header-2 .logo{
  font-weight: bolder;
  font-size: 3rem;
  color:var(--lightwhite);
}

.header-2 .logo i{
  color:var(--lightwhite);
}

.header-2 span{
  font-weight: heavy;
  color:var(--lighrwhite);
  font-size: 1.7rem;
  display: none;
}
.header-2 a{
  padding:0 .7rem;
  color:var(--black);
  font-size: 2rem;
}
.header-2 a img{
  width: 8.5rem;
}
/* .header-2  span test{
  color: #000;
} */
/* .header-2 .search-bar-container{
  display: flex;
  align-items: center;
  width: 50rem;
  padding:1.5rem;
text-align: center;
font-size: 5rem;
  border-radius: .5rem;
} */

/* .header-2 .search-bar-container #search-bar{
  width: 100%;
  background:none;
  text-transform: none;
  color:#fff;
  font-size: 1.7rem;
}

.header-2 .search-bar-container #search-bar::placeholder{
  text-transform: capitalize;
  color:#ddd;
}

.header-2 .search-bar-container label{
  color:#fff;
  cursor: pointer;
  font-size: 2rem;
  padding:0 .5rem;
}

.header-2 .search-bar-container label:hover{
  color:yellow;
} */
.header-2 .title h3{
  padding-top: 1rem;
  font-size: 3.5rem;
  color: var(--black);
}
.header-2 .title span{
  padding-top: 1rem;
  font-size: 4.5rem;
  color: var(--black);
 
}
.header-2 .title p{
  font-size: 2.5rem;
  color: var(--black);
  line-height: .5;
  padding: 1rem 0;
}
.header-3 .navbar a{
  color:var(--black);
  font-size: 2rem;
  margin-right: 2rem;
}

.header-3 .icons a{
  color:var(--lightwhite);
  font-size: 2.5rem;
  margin-left: 2rem;
}

.header-3 a:hover{
  color:var(--green);
}

#menu-bar{
  font-size: 3rem;
  color:var(--black);
  border:.1rem solid #666;
  border-radius: .5rem;
  padding:.5rem 1.5rem;
  cursor: pointer;
  display: none;
}

.header-3.active{
  position: fixed;
  top:0; left: 0; right: 0;
}
/* <----> */

.home1 {
  padding: 0;
  position: relative;
}

.home1 .slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 60vh;
  padding: 2rem 7%;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

.home1 .slide.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home1 .slide .content span {
  color: #f00b16;
  display: block;
  text-transform: uppercase;
  padding: 1rem 0;
  font-size: 6rem;
 
  -webkit-animation: fadeIn .4s linear .2s backwards;
          animation: fadeIn .4s linear .2s backwards;
}

.home1 .slide .content h3 {
  color: #f30d0d;
  text-transform: uppercase;
  padding: 1rem 0;
  font-size: 2rem;
  -webkit-animation: fadeIn .4s linear .4s backwards;
          animation: fadeIn .4s linear .4s backwards;
}

.home1 .slide .content .btn {
  -webkit-animation: fadeIn .4s linear .6s backwards;
          animation: fadeIn .4s linear .6s backwards;
}

.home1 #next-slide,
.home1 #prev-slide {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  height: 6rem;
  width: 6rem;
  line-height: 5.5rem;
  font-size: 4rem;
  color: #333;
  border: 0.2rem solid #333;
  background: #fff;
  border-radius: .5rem;
  cursor: pointer;
  text-align: center;
}

.home1 #next-slide:hover,
.home1 #prev-slide:hover {
  background: #333;
  color: #fff;
}

.home1 #prev-slide {
  right: 9rem;
}

/* <---> */


.home{
  padding: 0;
}
.home .slide {
  display: none;
  height: calc(100vh - 7rem);
}

.home .slide.active {
  display: flex;
}

.home .slide .content {
  width: 50%;
  padding: 2rem 7%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--green);
 
  position: relative;
}

.home .slide .content img {
  height: 25rem;
  width: 25rem;
  margin-bottom: 2rem;
  animation: fadeUp .2s linear backwards .2s;
  display: none;
}

.home .slide .content span {
  color: #45797e;;
  display: block;
  font-size: 2rem;
  padding-bottom: .5rem;
  letter-spacing: .2rem;
  text-transform: uppercase;
  animation: fadeUp .2s linear backwards .4s;
}

.home .slide .content h3 {
  font-size: 3.5rem;
  /* text-transform: uppercase; */
  color: #222;
   animation: fadeUp .2s linear backwards .6s;
}

.home .slide .content .btn {
   animation: fadeUp .2s linear backwards .8s;
}

.home .slide .content .controls {
  position: absolute;
  bottom: 12%;
  right: -7rem;
}

.home .slide .content .controls div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 3rem;
  background: #fff;
  color: #222;
  margin: 0 1rem;
   box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.home .slide .content .controls div:hover {
  background: #45797e;
  color: #fff;
  transform: scale(1.1);
}

.home .slide .image {
  width: 50%;
}

.home .slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.services {
  background: var(--green);
}

.services .box-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem
  , 1fr));
  grid-gap: 1.5rem;
}

.services .box-container .box {
  background: #a1aeb7;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 1rem;
}

.services .box-container .box img {
  height: 20rem;
  width: 18rem;
  margin-bottom: .9rem;
  border-radius: 1rem;
  filter: grayscale(0%);
}
.services .box:hover {
  background: #222;
}

.services .box:hover img {
 filter:  grayscale(100%);
 transition: .2s;
}

.services .box:hover p {
  color: #fff;
}
.services .box-container .box h3 {
  font-size: 2.2rem;
  padding: 1.5rem 0;
}

.services .box-container .box p {
  line-height: 2;
  font-size: 1.7rem;
}

.about {
  background: url(../images/arifnewback2.jpg) no-repeat;

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.about .content {
  width: 55rem;
  background: #00000085;
  padding: 3rem;
}

.about .content span {
  color: var(--white);
  font-size: 2rem;
}

.about .content h3 {
  padding-top: 1rem;
  font-size: 3rem;
  color: var(--white);
}

.about .content p {
  font-size: 1.5rem;
  color: var(--white);
  line-height: 2;
  padding: 1rem 0;
  text-align: justify;
}
.shop {
  background: var(--white);
}
.shop .slide {
  border: 0.2rem solid #222;
  background: #a1aeb7;
}

.shop .slide:hover .image img {

  transform: scale(1.1);
}

.shop .slide:hover .image .icons {
  right: 1rem;
}

.shop .slide .image {
  height: 35rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10%;
}

.shop .slide .image .discount {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .5rem 1.5rem;
  font-size: 1.5rem;
  color: #fff;
  background: #45797e;
  z-index: 10;
}

.shop .slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.shop .slide .image .icons {
  position: absolute;
  bottom: 0;
  right: -8rem;
}

.shop .slide .image .icons a {
  height: 5rem;
  width: 5rem;
  line-height: 4.5rem;
  font-size: 2rem;
  background: #fff;
  color: #222;
  border: 0.2rem solid #222;
  box-shadow: 0 0.5rem 1rem rgba(34, 2, 2, 0.1);
  margin-bottom: 1rem;
  text-align: center;
  display: block;
}

.shop .slide .image .icons a:hover {
  background: #45797e;
  color: #fff;
}

.shop .slide .content {
  padding: 2rem;
  border-top: 0.2rem solid #222;
}

.shop .slide .content .stars {
  padding-bottom: .6rem;
}

.shop .slide .content .stars i {
  font-size: 1.6rem;
  color: #777;
}

.shop .slide .content p {
  font-size: 2.1rem;
  color: #222;
  line-height: 2;
}

.shop .slide .content .price {
  font-size: 2.1rem;
  color: #45797e;
}

.shop .slide .content .price span {
  font-size: 1.6rem;
  color: #777;
  text-decoration: line-through;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 5rem;
  color: #222;
  font-weight: 700;
}


.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team .container{
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 30px;
  padding: 20px;
  text-align: center;
  width: 300px; /* Adjust width as needed */
  position: relative;

}
.team .container .image-container {
  position: absolute;
  top: -50px;
  left: 20%;

  transform: translateX(-50%);
}

.team  .container .round-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #3e7c74;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team  .container .text-content {
  margin-top: 60px; 
  margin-left: -10%;
}

.team .container .text-content h3 {
  font-size: 1.4rem;
  color: #333;
  text-align: center;
}

.team  .container .text-content p {
  font-size: 1.2rem;
  color: #161616;
  text-align: center;
}


/* .team-member {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px;
  padding: 20px;
  text-align: center;
  width: 300px; 
}

.team-member img {
  width: 150px;
  border-radius: 90%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 5rem;
  color: #222;
  font-weight: 700;
} */


.login-form form,
.register-form form {
  margin: 1rem auto;
  max-width: 40rem;
  border-radius: .5rem;
  border: 0.2rem solid #333;
  padding: 2rem;
  text-align: center;
}

.login-form form h3,
.register-form form h3 {
  font-size: 2.2rem;
  text-transform: uppercase;
  color: #333;
  margin-bottom: .7rem;
}

.login-form form .inputBox,
.register-form form .inputBox {
  margin: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: .5rem;
  background: #eee;
  padding: .5rem 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.login-form form .inputBox span,
.register-form form .inputBox span {
  color: #666;
  margin-left: 1rem;
  font-size: 2rem;
}

.login-form form .inputBox input,
.register-form form .inputBox input {
  width: 100%;
  padding: 1rem;
  background: none;
  font-size: 1.5rem;
  color: #666;
  text-transform: none;
}

.login-form form .flex,
.register-form form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  margin-top: 1rem;
}

.login-form form .flex label,
.register-form form .flex label {
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.login-form form .flex a,
.register-form form .flex a {
  font-size: 1.5rem;
  color: #666;
  margin-left: auto;
}

.login-form form .flex a:hover,
.register-form form .flex a:hover {
  color: #e84393;
}

.login-form form input[type="submit"],
.register-form form input[type="submit"] {
  background: #333;
  color: #fff;
}

.login-form form input[type="submit"]:hover,
.register-form form input[type="submit"]:hover {
  background: #e84393;
}

.login-form form .btn,
.register-form form .btn {
  width: 100%;
}

/* <---> */

  /* <---- */

  .clients body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f8f9fa;
    color: #333;
}

  .clients .container{
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);;
  }
  .clients .container h1, h2 {
    color: #007bff;
}
.clients .container ul {
  list-style-type: square;
  padding-left: 20px;
}
.highlight {
  background: #e9f7ff;
  padding: 10px;
  border-left: 4px solid #007bff;
  margin: 10px 0;
}
.key-points {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
}
  
  /* .clients .row .box-container .box .info{
    padding:2rem 0;
  }
  
  .clients .row .box-container .box .info h3{
    font-size: 2.5rem;
    color:#141414;
  }
  
  .clients .row .box-container .box .info p{
    font-size: 1.7rem;
    font-weight: 800;
    color:var(--blue);
    padding:1rem 0;
    font-style: italic;
    text-align: justify;
  } */
    
/* <--------------------> */

.banner{
  /* min-height: 80vh; */
  /* background:url(../images/banner3.jpg) no-repeat; */
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  padding-top: 10rem;
}

.banner .content{
  text-align: center;
  background:#fff;
  border-radius: .5rem;
  box-shadow: var(--box-shadow);
  padding:3rem;
  max-width: 50rem;
}

.banner .content h3{
  font-size: 4rem;
  color:var(--black);
  text-transform: uppercase;
}

.banner .content p{
  font-size: 1.7rem;
  color:var(--light-color);
  padding:1rem 0;
  line-height: 1.5;
}

.container{
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap:1.5rem;
  background:#eee;
}

.container .posts-container .post{
  width:140%;
  padding:2rem;
  background:#fff;
  border:var(--border);
  border-radius: .5rem;
  margin-bottom: 1.5rem;
}

.container .posts-container .post .image{
  height: 100%;
  width:100%;
  border-radius: .5rem;
  object-fit: cover;
}

.container .posts-container .post .date{
  padding-top: 2rem;
  font-size: 1.5rem;
  color:var(--orange);
}

.container .posts-container .post .title{
  padding-top: 1.5rem;
  font-size: 2.5rem;
  color:var(--black);
}

.container .posts-container .post .text{
  color:var(--light-color);
  font-size: 1.6rem;
  line-height: 1.7;
  padding:1rem 0;
}

.container .posts-container .links{
  border-top: var(--border);
  margin-top: .5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
}

.container .posts-container .links .user{
  margin-right: auto;
}

.container .posts-container .links .icon{
  padding-right: 1rem;
}

.container .posts-container .links a{
  font-size: 1.5rem;
  color:var(--light-color);
}

.container .posts-container .links a i{
  padding-right: .2rem;
  color:var(--black);
}

.container .posts-container .links a:hover{
  color:var(--orange);
}

.container .posts-container .links a:hover i{
  color:var(--orange);
}

.container .sidebar .box{
  border:var(--border);
  border-radius: .5rem;
  overflow:hidden;
  background:#fff;
  margin-bottom: 1.5rem;
}

.container .sidebar .box .title{
  padding:1.5rem;
  font-size: 2rem;
  color:#fff;
  background:var(--black);
  text-transform: capitalize;
}

.container .sidebar .box .about{
  text-align: center;
  padding:1rem 1.5rem;
}

.container .sidebar .box .about img{
  height: 15rem;
  width: 15rem;
  border-radius: 50%;
  object-fit: cover;
  margin:1rem 0;
}

.container .sidebar .box .about h3{
  color:var(--orange);
  font-size: 2rem;
}

.container .sidebar .box .about p{
  color:var(--light-color);
  font-size: 1.5rem;
  line-height: 1.5;
  padding:1rem;
}

.container .sidebar .box .about .follow{
  padding:1rem 0;
}

.container .sidebar .box .about .follow a{
  height: 4rem;
  line-height: 4rem;
  width: 4rem;
  border-radius: 50%;
  background:var(--black);
  color:#fff;
  font-size: 1.7rem;
  margin:0 .1rem;
}

.container .sidebar .box .about .follow a:hover{
  background:var(--orange);
}

.container .sidebar .box .category{
  padding:1rem 1.5rem;
}

.container .sidebar .box .category a{
  padding:.4rem 0;
  font-size: 1.5rem;
  color:var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container .sidebar .box .category a span{
  background:var(--light-color);
  color:#fff;
  border-radius: .5rem;
  padding:.5rem;
}

.container .sidebar .box .category a:hover{
  color:var(--orange);
}

.container .sidebar .box .category a:hover span{
  background-color:var(--orange);
}

.container .sidebar .box .p-post{
  padding:1rem 2rem;
}

.container .sidebar .box .p-post a{
  padding:1rem 0;
  display: block;
}

.container .sidebar .box .p-post a h3{
  color:var(--black);
  font-size: 2rem;
  padding-bottom: 1rem;
}

.container .sidebar .box .p-post a span{
  color:var(--light-color);
  font-size: 1.5rem;
}

.container .sidebar .box .p-post a span i{
  padding-right: .2rem;
}

.container .sidebar .box .p-post a:hover h3{
  color:var(--orange);
}

.container .sidebar .box .tags{
  padding:1rem;
}

.container .sidebar .box .tags a{
  display: inline-block;
  padding:1rem 1.5rem;
  font-size: 1.5rem;
  color:var(--black);
  border-radius: .5rem;
  border:var(--border);
  margin:.5rem;
}

.container .sidebar .box .tags a:hover{
  background:var(--black);
  color:#fff;
}

/* <------------> */
.container-gc body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px;
  background-color: #f8f9fa;
  color: #333;
}
.container-gc   .container {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container-gc h1, h2 {
  color: #007bff;
}

.container-gc   ul {
  list-style-type: square;
  padding-left: 20px;
}

.container-gc     .highlight {
  background: #e9f7ff;
  padding: 10px;
  border-left: 4px solid #007bff;
  margin: 10px 0;
}
.container-gc  .key-points {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
}



.gallery {
  background: #f5f5f5;
}

.gallery .lightbox {
  
  display: grid;
  
 grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}

.gallery .lightbox a {
  height: 30rem;
  overflow: hidden;
  border: 1rem solid #fff;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.gallery .lightbox a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.gallery .lightbox a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* <---------------------> */
.vendor .box-container{
  display:flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.vendor .box-container .box{
  flex:1 1 30rem;
  margin:1rem;
  overflow: hidden;
  position: relative;
  border-radius: .5rem;
  box-shadow:0 .5rem 1rem rgba(0,0,0,.9);
  height: 25rem;
  cursor: pointer;
}

.vendor .box-container .box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}


/* .vendor .box-container .box:hover .info{
  transform: scale(1);
  opacity: 1;
} */

.vendor .box-container .box:hover img{
  transform: scale(1.3);
}

.vendor .box-container .box .info h3{
  font-size: 3rem;
  color:var(--black);
}

.vendor .box-container .box .info p{
  font-size: 1.7rem;
  color:#333;
  padding:1rem;
}




/* <------------> */
.container1 body{
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px;
  background-color: #aacef3;
  color: #333;
}

.container1{
  max-width: 800px;
  margin: auto;
  background: white;
 padding: 20px;
  border-radius: 10px;
 box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 font-weight: normal;
 font-size: 1.5rem;
 line-height: 4rem;


}
.container1 span {
  color: #1f1c1c;
}
.container1 h1, h2 {
  color: #007bff;
}
.container1   ul {
  list-style-type: square;
  padding-left: 20px;
}

/* .container1   .highlight {
  background: #e9f7ff;
  padding: 10px;
  /* border-left: 4px solid #007bff; */
  /* margin: 10px 0; */
*/

.container1     .key-points {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
}



/* <__________> */

.glance{
  background: url(../images/home-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  text-align: center;
}

.glance .content{
  padding-top: 5rem;
  max-width:70rem;
  margin:0 auto;
}

.glance .content h3{
  font-size: 6.5rem;
  color:#302c2c;
}

.glance .content p{
  font-size: 1.7rem;
  color:#eee;
  padding:1rem 0;
}

.glance .swiper-container {
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.glance .swiper-slide {
  width: 30rem;
  height: 50rem;
}

.glance .swiper-slide img {
  display: block;
  width: 150%;
  height: 100%;
}





/* <-----------------------> */

.contact .row{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.contact .row .map{
  flex:1 1 42rem;
  width: 100%;
  padding:2rem;
  box-shadow: var(--box-shadow);
  border:var(--border);
  border-radius: .5rem;
}

.contact .row form{
  padding:2rem;
  flex:1 1 42rem;
  box-shadow: var(--box-shadow);
  border: 0.5rem solid #301f1f;
  text-align: center;
  border-radius: .5rem;
}

.contact .row form h3{
  font-size: 3rem;
  color:var(--black);
  padding-bottom: 1rem;
}

.contact .row form .box{
  width:100%;
  border-radius: .5rem;
  padding:1rem 1.2rem;
  font-size: 1.6rem;
  color: #000111;
  text-transform: none;
  border:var(--border);
  margin:.7rem 0;
}

.contact .row form textarea{
  height:15rem;
  resize: none;
}



.reviews {
 
  background: var(--lightwhite);
}

.reviews .box-container {
  display: grid;
 grid-template-columns: repeat(auto-fit, minmax(35rem
 , 1fr));
 grid-gap: 1.5rem;
}

.reviews .box-container .box {
 /* background: #a1aeb7; */
 padding: 3rem 2rem;
 text-align: center;
 border-radius: 1rem;
}

.reviews .box-container .box img {
 height: 100%;
 width: 100%;
 margin-bottom: .9rem;
 border-radius: 1rem;
 filter: grayscale(0%);
}
/* .reviews .box:hover {
 background: #222;
} */

.reviews .box:hover img {
/* filter:  grayscale(100%); */
transition: .2s;
transform: scale(1.3); 
}

.reviews .box:hover p {
 color: #fff;
}
.reviews .box-container .box h3 {
 font-size: 2.2rem;
 padding: 1.5rem 0;
}

.reviews .box-container .box p {
 line-height: 2;
 font-size: 1.7rem;
}


/* // */

.service {
  background: var(--green);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}

.service .box {
  border: 0.2rem solid #222;
  padding: 2rem;
  text-align: center;
  background: #fff;
}

.service .box:hover {
  background: #222;
}

.service .box:hover img {
filter: invert(1);
}

.service .box:hover h3 {
  color: #fff;
}

.service .box:hover p {
  color: #fff;
}

.service .box img {
  height: 8rem;
  margin-bottom: .5rem;
}

.service .box h3 {
  padding: .7rem 0;
  font-size: 2rem;
  color: #222;
}

.service .box p {
  font-size: 1.5rem;
  color: #777;
  line-height: 2;
}

.blogs{
  background: var(--green);
}
.blogs .slide:hover .image img {
  transform: scale(1.1);
}

.blogs .slide:hover .image .icons {
  transform: translateY(0);
}

.blogs .slide .image {
  height: 30rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.blogs .slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blogs .slide .image .icons {
  background: #d4a6a6;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
   transform: translateY(10rem);
  display: flex;
  align-items: center;
   justify-content: space-between;
  padding: 1.5rem;
  border: 0.2rem solid #222;
  z-index: 10;
}

.blogs .slide .image .icons a {
  font-size: 1.5rem;
  color: #222;
}

.blogs .slide .image .icons a i {
  color: #45797e;
  padding-right: .5rem;
}

.blogs .slide .image .icons a:hover {
  color: #45797e;
}

.blogs .slide .content {
  text-align: center;
  padding: 1.5rem;
}

.blogs .slide .content h3 {
  font-size: 2rem;
  color: #222;
}

.blogs .slide .content p {
  padding: 1rem 0;
  line-height: 2;
  color: #777;
  font-size: 1.5rem;
}

.footer {

  background: var(--lightred);
  /* background: url(../images/hero-bg.png) no-repeat; */
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: var(--lightgreen);
  padding: 1rem 0;
}

.footer .box-container .box .link {
  padding: 1rem 0;
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}

.footer .box-container .box .link i {
  padding-right: .5rem;
  color: #dff9fc;
}

.footer .box-container .box .link:hover {
  color: #0d1213;
}


.footer .box-container .box p {
  font-size: 1.5rem;
  color: #ffffff;
  padding: 1rem 0;
}

.footer .box-container .box p i {
  padding-right: .5rem;
  color: #e2eaeb;
}

.footer .box-container .box .share {
  margin-top: 2rem;
}

.footer .box-container .box .share a {
  height: 5rem;
  width: 5rem;
  background: #fff;
  border: 0.2rem solid #222;
  font-size: 2rem;
  line-height: 4.5rem;
  color: #222;
  text-align: center;
  margin-right: .3rem;
}

.footer .box-container .box .share a:hover {
  background: #45797e;
  color: #fff;
}

.footer .box-container .box form .email {
  width: 100%;
  border: 0.2rem solid #222;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: #777;
  text-transform: none;
  margin: 1rem 0;
}

.footer .credit {
  text-align: center;
  font-size: 2rem;
  margin-top: 3rem;
  padding: 1rem;
  border-top: 0.2rem solid #222;
  padding-top: 3rem;
  color: #faf2f2;
}

.footer .credit span {
  color: #f0f6f7;
}
.scroll-top{
  position: fixed;
  bottom: 7.5rem; right:2rem;
  z-index: 1000;
  font-size: 3.5rem;
  background:rgb(17, 17, 16);
  color:var(--green);
  border-radius: .5rem;
  border:.1rem solid rgba(0,0,0,.1);
  padding:.5rem 1.5rem;
  display: none;
}

.scroll-top:hover{
  background:var(--green);
  color:#000111;
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header-2,
  .header-3{
    padding:2rem;
  }
  section {
    padding: 3rem 2rem;
  }
  .banner {
    min-height: 45vh; /* Adjust the height as needed */
    padding-top: 4rem; /* Adjust the padding as needed */
  }
  .home .slide .content {
    padding: 2rem;
  }
  .home .slide .content span {
    font-size: 2rem;
  }
  .home .slide .content h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  #menu-bar{
    display: initial;
  }

  .header-3 .navbar{
    position: absolute;
    top:100%; left: 0; right: 0;
    background:#1a1818;
    padding:1rem 2rem;
    border-top: .1rem solid rgba(0,0,0,.3);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  .header-3 .navbar.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .header-3 .navbar a{
    display: block;
    margin:1.5rem 0;
    padding:1.5rem;
    border-radius: .5rem;
    border:.1rem solid rgba(0,0,0,.3);
    background:#fff;
    text-align: center;
  }

  .header-2{
    flex-flow: row;
  }

  .header-2 .search-bar-container{
    display: none;
  }
  .header-2 .title h3{
   font-size: 2.5rem;
  }
  .header-2 .title p{
    display: none;
   }
   .header-2 .title span{
    display: none;
   }
  .header-2 .call{
    display: none;
   }
  .header-2 .title span{
    padding-top: 1rem;
    font-size: 4.5rem;
    color: var(--black);
    display: block;
  }
  .header-3 #search-btn {
    display: inline-block;
  }
.section .has-bg-image{
  display: inline-block;
}
.banner {
  min-height: 30vh; /* Adjust the height as needed */
  padding-top: 4rem; /* Adjust the padding as needed */
}
  .home .slide {
    position: relative;
    height: calc(100vh - 6rem);
  }
  .home .slide .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    height: 100%;
   align-items: center;
  }
  .home .slide .content img {
    display: inline-block;
  }
  .home .slide .content h3{
    font-size: 2.5rem;
  }
  .home .slide .content .controls {
    position: static;
    margin-top: 7rem;
  }
  .home .slide .content .controls div {
    margin: 0 .5rem;
  }
  .home .slide .image {
    width: 100%;
  }

.sidebar{
  display: none;
}
}


