/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inder&family=Inter:wght@300;400&family=Patua+One&family=Poppins:ital@0;1&family=Sora:wght@700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lalezar&display=swap");
/* GENERAL */
* {
  padding: 0;
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}
.transition {
  /* transition for diferents class */
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.cover-full {
  /* object absolute cover full area */
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.center {
  /* set in center */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

h1,
h2 {
  font-weight: 700;
  /* color: var(--color-dark); */
}
h3,
h4,
h5,
h6 {
  font-weight: 500;
  /* color: var(--color-dark); */
}
.content-right {
  text-align: right;
}
.btn-primary {
  background-color: var(--color-medium) !important;
  border-color: var(--color-medium) !important;
  color: var(--color-light2) !important;
  font-weight: 500 !important;
}
.btn-secondary {
  background-color: transparent !important;
  border-color: var(--color-light) !important;
  color: var(--color-light) !important;
  font-weight: 500 !important;
}

.social-links a {
  margin-left: 20px;
}
.social-links a:hover i {
  color: var(--color-light);
}

/* ALL SECTIONS */
.section-title {
  font-weight: 700;
  margin-bottom: 50px;
  font-size: 2em;
  position: relative;
  text-align: center;
  z-index: 2;
}
.section-title:after {
  content: "";
  width: 30px;
  height: 4px;
  background-color: var(--color-light);
  display: block;
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translate(-50%, 0);
}

.navbar {
  /* position: fixed !important; */
  width: 100%;
  z-index: 2;
  /* background-color: #ecf2ff; */
  background-color: #fefae0;

  transition: top 0.3s;
  color: var(--main-text-color);
}

@media (max-width: 500px) {
  .navbar {
    position: absolute !important;
    background-color: #fefae0 !important;
  }

  .navbar-brand img {
    max-width: 40px !important;
  }
}

@media (max-width: 1000px) {
  .navbar {
    position: absolute !important;
    background-color: #fefae0 !important;
  }

  .navbar-brand img {
    max-width: 40px !important;
  }
}

.navbar-scrolled {
  top: 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-width: 100px;
  margin-left: 10px;
  border-radius: 60%;
}

.navbar-nav {
  margin-left: auto;
}

.nav-link {
  font-weight: 600;
  font-size: 18px;
  margin: 0 10px;
  color: #205e61 !important;
  transition: color 0.3s;
}

.nav-link:hover {
  /* color: #ffea20 !important; */
  color: #f4ce14 !important;
}

.navbar-toggler {
  border-color: #fff !important;
}

.navbar-toggler-icon {
  padding: 5px 0;
  color: #000;
}

#navbarNavDropdown .drop-item {
  background-color: #a9b388;
  border-radius: 10px;
}

#navbarNavDropdown .drop-item a {
  color: #205e61;
  text-align: center;
}

#navbarNavDropdown .drop-item a:hover {
  color: #f4ce14 !important;
}

/* .fixed {
    position: fixed!important;
    top: 0;
    width: 100%;
    background-color:var(--color-white);
    z-index: 4;
} */

/* CAROUSEL IMAGES */
#main-text {
  font-size: 15px;
  margin-right: 3%;
}

#main-text h6 {
  font-size: 25px;
}

.banner {
  position: relative;
}
.banner .owl-theme .item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.social_icons {
  display: flex;
  height: 100px;
  width: 100%;
  align-items: flex-end;
}

/* .overlay-bg{
    background-color: var(--color-dark);
    opacity: .6;
    z-index: 2;
} */
.item .container {
  position: relative;
  height: 100%;
}
.caption {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 3;
  text-align: center;
}
.caption-heading {
  font-size: 2.5em;
  /* font-weight: 700; */
  padding: 0;
  color: var(--color-light2);
  line-height: 1;
  margin: 10px 30px;
  text-shadow: 0 0 15px #2b2b2b;
  margin-left: 37%;
}

/* carousel nav */
.custom-nav {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  height: auto;
  z-index: 3;
}
.owl-prev,
.owl-next {
  position: absolute;
  height: 100px;
  color: var(--color-light2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 8px;
  font-size: 3em;
}
.owl-prev {
  left: 3%;
}
.owl-next {
  right: 3%;
}

/* WELCOME CONTENT */
.about-content {
  padding: 30px 20px;
}
.about-content p {
  line-height: 30px;
  color: #000;
  margin-top: 10%;
}
.about-content li {
  list-style-type: none;
  position: relative;
}
.about-content li h4 {
  font-size: 1.1em;
  font-weight: 500;
}
.about-content li p {
  font-size: 0.8em;
}
.about-content li i {
  position: absolute;
  font-size: 2em;
  color: var(--color-light);
}

.about-content li h4,
.about-content li p {
  margin-left: 50px;
}

/* SERVICES */
.services {
  margin: -10%;
  margin-left: 30%;
}

.box-image {
  position: relative;
  overflow: hidden;
}
.box-image .image {
  background-size: cover;
  background-position: center center;
}
.box-image .shadow {
  background-color: #000;
  opacity: 0.8;
}
.box-image .desc {
  text-align: center;
}
.desc h4,
.desc a,
.desc a:hover {
  color: #fff;
}
.desc h4 {
  font-weight: 700;
  margin-bottom: 30px;
}
.desc a {
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.9em;
}
.box-image:hover .image {
  transform: scale(1.1);
}
.box-image:hover .shadow {
  opacity: 0.1;
}
.box-image:hover .desc * {
  text-shadow: 1px 1px 10px #080808;
}

/* PROJECTS */
.projects .box-image {
  height: 280px;
  margin: 0 auto 30px;
}

/* TESTIMONIALS */
/* .testimonials{
    background-image:url('../images/testimonials.jpg');
    background-size: cover;
    background-position: center center;
    padding: 80px 0;
    position: relative;
}
.testimonials:after{
    content:"";
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:var(--color-dark);
    opacity: .8;
}
.testimonials h1{
    color: var(--color-light2);
}
.testimonial {
    max-width: 70%;
    margin: 0 auto;
}
.testimonial:hover img{
    transform:scale(1.1);
}
.testimonial img {
    max-width: 100px;
    float: left;
    margin: 5px 0 0 5px;
}
.testimonial-content *{
    color:var(--color-light2);
}
.testimonial-content {
    margin-left: 120px;
    color: var(--color-light2);
}
.testimonial-content p{
    font-size: 1.2em;
    padding-top: 1%;
}
.testimonial-content h4{
    font-weight: 500;
    padding-top: 4%;
   
} */

/* CONTACT */
.contact {
  padding: 80px 0;
}
.contact-desc {
  text-align: center;
  margin-bottom: 60px;
}
.contact-desc h1 {
  color: var(--color-dark);
  font-weight: 700;
}
.contact-desc p {
  font-size: 1.4em;
}
.contact-form {
  max-width: 50%;
  margin: 0 auto;
}

/* FOOTER */
.footer1 {
  background-color: var(--color-dark);
}
.footer2 {
  background-color: var(--color-medium);
}
.footer * {
  color: var(--color-light2);
}
.foot-col h4 {
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
  font-size: 1em;
}
.foot-col h4:after {
  content: "";
  width: 20px;
  height: 4px;
  background-color: var(--color-light);
  display: block;
  position: absolute;
  top: 32px;
}
.foot-col p {
  line-height: 30px;
  margin-bottom: 5px;
}
.foot-col a:hover {
  color: var(--color-light);
}
.foot-logo {
  width: auto;
}
.foot-bottom-text {
  font-size: 0.8em;
}

:root {
  --color-dark: #1b2132;
  --color-medium: #252c41;
  --color-light: #0fca98;
  --color-light2: #fff;
  --color-gray: #a0a0a0;
  --color-blue: #577af8;
}

@media (min-width: 280px) and (max-width: 480px) {
  .navbar {
    background-color: var(--color-white);
  }
  .caption {
    padding: 0 40px;
  }
  .caption-heading {
    font-size: 2em;
    line-height: 1.4em;
  }
  .section-title {
    font-size: 1.6em;
  }
  .testimonial {
    max-width: 100%;
  }
  .contact-form {
    max-width: initial;
  }
  /* .foot-bottom-text,
    .footer .content-right{
        text-align: center;
    } */
}

.text1 {
  height: 25px;
  border-radius: 15px;
  background-color: #adc6aa;
}

.text1 h4 {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0%;
}

/* about css */

/* .aboutphoto  {
    margin: -10%;
    margin-left: 30%;
    
} */

@media (min-width: 280px) and (max-width: 1920px) {
  .aboutphoto {
    width: 90%;
  }
}

.double-col {
  margin-top: -20px;
  margin-right: 15px;
  width: 70px;
  height: 60px;
}
.abouthead {
  color: #577af8;
  font-family: inder;
  font-size: 2rem;
  font-style: normal;
  font-weight: 800;
}
.para2 {
  color: #2d3142;
  font-family: inder;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.btn {
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: inder;
}
.text {
  color: #000;
  text-align: center;
  font-family: Lato;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  margin-top: 5%;
  font-family: inder;
}
.container {
  display: grid;
  place-items: center;
}
.serviceheading1 {
  font-family: inder;
  font-size: 3rem;
  font-weight: 700;
}

.services {
  font-weight: 900;
  font-family: inder;
  margin-bottom: 3%;
}

.navbar-top-image {
  width: 100%;
  height: auto;
  top: 0;
  z-index: 1;
}

.services-area {
  padding-top: 5%;
}
.single-box {
  background: #d2e9e9;
  color: #00aaff;
  padding: 40px;
  border-radius: 15px;
}

.single-box button {
  background: rgb(243, 201, 107);
  background: linear-gradient(
    90deg,
    rgba(243, 201, 107, 1) 8%,
    rgba(87, 122, 248, 1) 97%
  );
  border: none;
  padding: 10px 30px;
  display: inline-block;
  margin-top: 15px;
  color: #000;
  text-transform: uppercase;
}
.single-box a {
  color: rgb(0, 0, 0);
  position: relative;
  height: 100%;
  text-decoration: none;
  font-size: var(--pg-font-size);
  text-transform: uppercase;
}

.single-box a:hover {
  color: #45474b;
}
.single-box:hover .overlay-text {
  opacity: 0;
  transform: scale(2);
  -webkit-transform: scale(2);
}

/* .reso1 {
  margin-top: -8%;
  margin-right: 10%;
  font-family: lalezar;
} */

.resobg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 100%;
  margin-top: 4em;
  margin-bottom: 50px;
}

.reso2 {
  margin-top: -8%;
  margin-right: 8%;
  font-family: lalezar;
}

@media only screen and (max-width: 600px) {
  .resobg {
    margin-bottom: 0%;
  }

  .reso1 {
    font-size: 30px;
  }
}

/* Gallery Css */

.container-gallery {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 8%;
  font-family: "Poppins", sans-serif;
}

.gallery-heading {
  font-family: lalezar, sans-serif;
  display: grid;
  justify-content: center;
  align-self: center;
  margin-top: 50px;
  margin-bottom: 0%;
  font-size: 40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
  transform: scale(1.05);
}

@media (min-width: 280px) and (max-width: 1920px) {
  .reso1 {
    margin-top: -8%;
    margin-right: 22%;
    font-family: lalezar;
  }

  .reso2 {
    margin-top: -1%;
    margin-right: 9%;
    font-family: lalezar;
  }
  .contacthead {
    margin-top: -25%;
  }
  .servicephoto {
    width: 20%;

    margin-bottom: 5%;
  }
  .galleryphoto {
    width: 50%;
  }
}

/* @media (min-width:280) and (max-width:1920){
        .contacthead{
            margin-left:20%;
             margin-top: -25%;
              font-family: lalezar;
        }
    } */

.contactphoto {
  width: 50%;
  margin-bottom: 5%;
  margin-left: 15%;
}

.contacthead {
  margin-left: 65%;
  margin-top: -25%;
  font-family: lalezar;
  font-size: var(--primary-font-size);
}

.servicephoto {
  width: 50%;
  margin-left: 20%;
  margin-bottom: 5%;
}

.galleryphoto {
  width: 20%;
}

main {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 30px;
}

main div {
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
  border: 16px solid #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
}

main img {
  min-width: 100%;
  height: 100%;
}

main .short {
  grid-row: span 1;
}

main .tall {
  grid-row: span 2;
}

@media screen and (max-width: 960px) {
  main {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 620px) {
  main {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 20px auto;
  }

  nav {
    grid-template-columns: repeat(4, 1fr);
  }

  nav h1 {
    grid-column: 1 / span 4;
    grid-row: 1;
  }
}

.footer-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffc107 !important;
}

.social-icons {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.social-icons a {
  color: #fccc63;
  margin-left: 10px;
  font-size: 24px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffc107;
}
