@import url("https://fonts.googleapis.com/css2?family=Satisfy&family=Syne&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Syne, sans-serif;
}
a {
  color: black;
}
.fa-circle {
  color: #f57c00;
}

span {
  color: #f57c00;
}

#hr {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 3px;
  gap: 0.5em;
}
#hr div:nth-child(1),
#hr div:nth-child(3) {
  width: 4%;
  border-top: 2px solid #f57c00;
}
#hr div:nth-child(2) {
  border-top: 2px solid rgba(18, 24, 32, 0.1);
  width: 88%;
}
/*
====================================
    CTAS
 ====================================  
*/

.ctas {
  background-color: rgba(255, 255, 255, 0.8);
  color: white;
  z-index: 2;
  width: 50px;
  height: 160px;
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0.2em;
  top: 50vh;
  border-top: 1px solid #232323;
  border-left: 1px solid #232323;
}
.ctas > div {
  position: relative;

  background-color: transparent;
  border-bottom: 1px solid #232323;
  width: 100%;
  height: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.ecta {
  display: none;
  padding: 0.5em;
  padding-top: 0.8em;
  font-size: 0.8em;
  text-align: center;
  position: absolute;
  background-color: rgba(18, 24, 32, 0.8);
  height: 100%;
  width: 250%;
  left: -10em;
  color: white;
}

.cta:hover .ecta {
  display: block;
}
/*
====================================
    navbar
 ====================================  
*/
.navbar {
  z-index: 2;
  position: sticky;
  width: 100%;
  height: 15vh;
  top: 0%;
  background-color: white;
  color: black;
  justify-content: space-around;
  align-items: center;
}

.extra {
  display: none;
}

.nleft {
  height: 2em;
  width: 15%;
  background-image: url("https://bslthemes.com/html/itsulu/img/logo/logo-dark.png");
  background-size: contain;
  background-repeat: no-repeat;
}
a {
  text-decoration: none;
}

.ncenter > .ul {
  position: relative;
  top: 0.7em;
  display: flex;
  justify-content: center;
  gap: 1.4em;
}
.ncenter > .ul p {
  position: relative;
  cursor: pointer;
}
.fa-circle-dot {
  position: absolute;
  top: 0%;
  right: -14%;
  color: #f57c00 !important
  ;
}

#nenterprise,
#nservices,
#nsolutions,
#nothers {
  position: relative;
}

.nextra {
  width: 14em;
  background-color: white;
  color: black;
  position: absolute;
  padding: 1em, 2em;
  padding-top: 1.5em;
  border-radius: 1em;
  left: -100%;
  display: none;
}
#nenterprise:hover .nextra,
#nservices:hover .nextra,
#nsolutions:hover .nextra,
#nothers:hover .nextra {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  animation: shon 2s ease forwards;
}

@keyframes shon {
  0% {
    opacity: 0;
    transform: translateY(+3em);
  }

  100% {
    opacity: 1;
    transform: translateY(0em);
  }
}

.nextra > p {
  width: 60%;
  line-height: 1em;
  color: black;
  cursor: pointer;
}
.nextra > p:hover {
  color: #f57c00;
}
/*
====================================
    intro
 ====================================  
*/

#intro {
  position: relative;
  height: 500px;
  background-color: lightgray;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#intro > .overlay {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("https://bslthemes.com/html/itsulu/img/deco/map.png");
  background-size: cover;
  opacity: 0.5;
}
.ileft {
  z-index: 1;
  padding: 1em;
  height: 100%;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.iright {
  z-index: 1;
  height: 100%;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*
====================================
    page
 ====================================  
*/

#page {
  margin: 5em 0;
  height: 1600px;
  width: 100%;
  /* border: 1px solid green; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.left {
  padding: 1em;
  height: 100%;
  width: 75%;
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.right {
  padding: 1em 0;
  padding-right: 2em;
  height: 100%;
  width: 25%;
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.pcard {
  width: 85%;
  height: 30%;
  /* border: 1px solid red; */
  border-radius: 1em;
  overflow: hidden;
  cursor: pointer;
}

.pcard .img1,
.pcard .img2,
.pcard .img3 {
  width: 100%;
  height: 75%;
  border-radius: 1em;
  /* border: 1px solid red; */
  filter: grayscale(100%);
}
.pcard .content {
  width: 100%;
  height: 25%;
  display: flex;
  justify-content: center;
  /* border: 1px solid red; */
  border-bottom-left-radius: 1em;
  border-bottom-right-radius: 1em;
}
.pcard .content .title {
  padding: 0.5em;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.pcard .content .pinfo {
  padding: 0.5em;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pcard .img1 {
  background-image: url("https://bslthemes.com/html/itsulu/img/blog/1.jpg");
  background-size: cover;
}
.pcard .img2 {
  background-image: url("https://bslthemes.com/html/itsulu/img/blog/2.jpg");
  background-size: cover;
}
.pcard .img3 {
  background-image: url("https://bslthemes.com/html/itsulu/img/blog/3.jpg");
  background-size: cover;
}
.pcard:hover .img1,
.pcard:hover .img2,
.pcard:hover .img3 {
  transform: scale(102%);
  filter: grayscale(0%);
}

.navigation {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.navigation p {
  cursor: pointer;
}

.navigation > p:hover {
  color: #f57c00;
}
.navigation > div {
  display: flex;
  width: 20%;
  justify-content: space-around;
}

.navigation > div > p {
  padding: 0.6em 1.1em;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
}
.navigation > div > p:nth-child(1) {
  border: 1px solid #f57c00;
  background-color: #f57c00;
  color: white;
}

/* right part */

/* about */

.about {
  height: 16%;
  width: 100%;
  /* border: 1px solid green; */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
}

.about > div {
  width: 100%;
  height: 30%;
  /* border: 1px solid red; */
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1em;
}
.about > div > img {
  border-radius: 50%;
  filter: grayscale(100%);
  cursor: pointer;
}
.about > div > img:hover {
  filter: grayscale(0%);
}

/* recent posts */
.rp {
  display: flex;
  flex-direction: column;
  height: 25%;
  width: 100%;
  justify-content: space-around;
  align-items: start;
  /* border: 1px solid red; */
}

.rp > div {
  width: 100%;
  height: 22%;
  /* border: 1px solid red; */
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1em;
}
.rp img {
  border-radius: 50%;
  filter: grayscale(100%);
  cursor: pointer;
}
.rp > div:hover img {
  filter: grayscale(0%);
}
.rp > div:hover h6 {
  color: #f57c00;
}

/* catagories */

.c {
  display: flex;
  flex-direction: column;
  height: 18%;
  width: 100%;
  justify-content: center;
  align-items: start;
  /* border: 1px solid red; */
}

.c span {
  display: none;
}
.c p {
  cursor: pointer;
}

.c p:hover span {
  display: inline-block;
  opacity: 0;
  animation: dotshow 1s ease forwards;
}

@keyframes dotshow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c p:hover {
  transition: all 1s ease;
  color: #f57c00;
}

/* tags */

.tags {
  display: flex;
  flex-direction: column;
  height: 12%;
  width: 100%;
  justify-content: center;
  align-items: start;
  /* border: 1px solid red; */
  gap: 1.2em;
}
.tags > div {
  display: flex;
  width: 100%;
  height: 60%;
  /* border: 1px solid red; */
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 0.5em;
}
.tags > div > p {
  font-size: 0.9em;
  background-color: rgba(18, 24, 32, 0.1);
  border-radius: 2em;
  padding: 0.5em;
  cursor: pointer;
}
.tags > div > p:hover {
  background-color: #f57c00;
  color: white;
}

/* contact  */

.contact {
  display: flex;
  flex-direction: column;
  height: 12%;
  width: 100%;
  justify-content: center;
  align-items: start;
  /* border: 1px solid red; */
  gap: 1.2em;
}
.contact .fa-arrow-right {
  border: 2px solid #f57c00;
  padding: 0.25em;
  border-radius: 50%;
  background-color: #f57c00;
  color: white;
}
.contact h5:nth-child(3) {
  cursor: pointer;
}

.contact h5:nth-child(3):hover .fa-arrow-right {
  transition: all 1s ease;
  transform: translateX(1em);
}

/* search */
.search {
  padding: 0.2em;
  margin: 2em auto;
  width: 100%;
  height: 4%;
  border: 1px solid rgba(18, 24, 32, 0.1);
  display: flex;
  justify-content: end;
  align-items: center;
  border-radius: 2em;
  background-color: white;
}
.search input {
  border: none;
  height: 90%;
  border-radius: 2em;
  width: 70%;
}
.search input:focus {
  outline: none;
}
.search button {
  border: none;
  padding: 1em;
  border-radius: 50%;
  background-color: #f57c00;
  color: white;
}

/*
====================================
    footer
 ====================================  
*/
#footer {
  position: relative;
  width: 100%;
  height: 900px;
  background: linear-gradient(180deg, #181e26 0, #121820 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#footer .overlay {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("https://bslthemes.com/html/itsulu/img/deco/map.png");
  background-size: cover;
  opacity: 0.05;
}

#footer .upper {
  height: 40%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#footer .ul {
  z-index: 1;
  color: white;
  width: 50%;
  height: 100%;

  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#footer .ur {
  z-index: 1;
  color: white;
  width: 50%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
}
#footer .ur input {
  height: 30%;
  width: 45%;
  border-radius: 3em;
  border: none;
}
#footer .ur input::placeholder {
  text-align: center;
}
#footer .ur button {
  color: black;
  width: 40%;
  border: 1px solid #f57c00;
  background-color: #f57c00;
  padding: 1em 2em;
  border-radius: 2em;
  cursor: pointer;
}

#footer .lower {
  width: 100%;
  height: 60%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
#footer .lower > div {
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1em;
  color: white;
}
.l1 {
  gap: 2em;
}

#end {
  bottom: 0%;
  width: 100%;
  height: 18vh;

  background-color: #121820;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
====================================
    media query
 ====================================  
*/

@media (max-width: 1191px) {
  .navbar {
    background-color: white;
    justify-content: space-between;
  }

  .nleft {
    margin-left: 2em;
    width: 10em;
    background-image: url("	https://bslthemes.com/html/itsulu/img/logo/logo-dark.png");
  }
  .ncenter,
  .nright {
    display: none;
  }
  .extra {
    display: block;
    margin-right: 2em;
  }
}

@media (max-width: 960px) {
  #page {
    height: 2900px;
  }
  .left {
    width: 100%;
    height: 50%;
  }
  .right {
    border: 1px solid red;
    width: 90%;
    height: 50%;
  }

  .about img {
    width: 60px;
    height: 60px;
  }

  .rp img {
    width: 60px;
    height: 60px;
  }
  .rp {
    margin: 1em auto;
    height: 20%;
  }

  .contact {
    height: 10%;
  }
}

@media (max-width: 725px) {
  #footer {
    height: 1200px;
  }
  #footer .ul {
    width: 80%;
    height: 20%;
  }
  #footer .ur {
    width: 80%;
    height: 30%;
  }
}

@media (max-width: 616px) {
  #footer {
    height: 1800px;
  }
  #footer .upper {
    height: 30%;
    justify-content: center;
  }
  #footer .upper p {
    font-size: 0.5em;
  }
  #footer button {
    font-size: 0.8em;
    padding: 0.5em;
  }
  #footer .upper h1 {
    font-size: 1em;
  }
  #footer .lower > div {
    width: 60%;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 0.1em;
    color: white;
    line-height: 0.7em;
    font-size: 0.8em;
  }
}
@media (max-width: 562px) {
  #end {
    font-size: 0.8em;
  }
}
@media (max-width: 412px) {
  #end {
    font-size: 0.5em;
  }
}
