@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.section-title {
  /* background-color: #d5d5d5; */
  flex: 0 0 100%;
  max-width: 100%;
  padding-bottom: 40px;
}
.section-title h1 {
  /* background-color: red; */
  display: inline-block;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px;
  position: relative;
  /* word-spacing: 5px;
  font-family: sans-serif; */
}
.section-title h1::before {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  right: 30%;
  background-color: #febd01;
  bottom: 0px;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.container {
  max-width: 1140px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Start Header */

header {
  position: absolute;
  left: 0px;
  right: 0px;
  border-bottom: 1px solid #423940;
  padding: 0px 15px;
  z-index: 11;
}
header.fixed {
  background-color: #ffffff;
  position: fixed;
  border-bottom: 1px solid #eeeeee;
  animation: fixHeader 0.5s ease;
  z-index: 11;
}
@keyframes fixHeader {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-0%);
  }
}
header .row {
  justify-content: space-between;
  align-items: center;
}
header .brand-name a {
  /* background-color: blue; */
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
header.fixed .brand-name a {
  color: #000;
}

header .navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .navbar ul li {
  display: inline-block;
  margin-left: 35px;
}
header .navbar ul li a {
  font-size: 15px;
  text-decoration: none;
  display: block;
  line-height: 72px;
  color: #fff;
  display: block;
  font-weight: 600;
  position: relative;
}
header.fixed .navbar ul li a {
  color: #000000;
}
header .navbar ul li a::before {
  content: "";
  height: 3px;
  background-color: #ffffff;
  width: 0%;
  position: absolute;
  right: 0px;
  bottom: -1px;
  transition: all.5s ease;
}
header.fixed .navbar ul li a::before {
  background-color: #fedb01;
}
header .navbar ul li a:hover::before {
  width: 100%;
  left: 0;
}
header .navbar ul li a.active::before {
  width: 100%;
  left: 0;
}

/* Start Home  */

.home {
  min-height: 100vh;
  background-image: url(images/background.jpg);
  background-size: cover;
  background-position: center;
  padding: 15px;
}
.home .full-screen {
  min-height: 100vh;
}
.home .home-content {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home .home-content .block {
  flex: 0 0 75%;
  max-width: 75%;
  padding-left: 35px;
  border-left: 5px solid #ffffff;
  margin-top: 50px;
}
.home .home-content .block h6 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  line-height: 1.2;
}
.home .home-content .block h1 {
  font-size: 55px;
  color: #ffffff;
  font-weight: 600;
  margin: 0px;
  padding: 0px;
  line-height: 1.2;
}
.home .home-content .block h3 {
  font-size: 25px;
  color: #ffffff;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  line-height: 1.2;
}
.home .home-content .block .cv-btn {
  padding-top: 20px;
}
.home .home-content .block .cv-btn a {
  border-radius: 4px;
  color: #ffffff;
  border: 1px solid #ffffff;
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all.5s ease;
}
.home .home-content .block .cv-btn a:hover {
  background-color: #ffffff;
  color: #000000;
}

/* About me  */

.about-me {
  padding: 100px 15px;
  background-color: #ffffff;
}
.about-me .section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
}
.about-me .section-title h1 {
  display: inline-block;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px;
  position: relative;
}
.about-me .text-uppercase {
  text-transform: uppercase !important;
}
.about-me .section-title p.small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #838383;
  letter-spacing: 2px;
}
.about-me .about-content .img {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}
.about-me .about-content .img img {
  width: 100%;
  display: block;
}
.about-me .about-content .text {
  flex: 0 0 66.66%;
  max-width: 66.66%;
  padding-left: 30px;
}
.about-me .about-content .text h4 {
  font-size: 25px;
  font-weight: 600;
  margin: 0 0 5px;
  color: #000000;
}
.about-me .about-content .text h6 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 15px;
  color: #000000;
}
.about-me .about-content .text h6 span {
  color: #febd01;
}
.about-me .about-content .text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #838383;
  margin: 0 0 20px;
}

.about-me .about-content .text .info {
  /* background-color: #d5d5d5; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-me .about-content .text .info .list {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
}
.about-me .about-content .text .info .list label {
  padding-right: 10px;
  color: #000000;
  font-weight: 600;
  font-size: 15px;
}
.about-me .about-content .text .info .list p {
  margin: 0;
}

/* Social links */

.about-me .about-content .text .social-links {
  /* background-color: #d5d5d5; */
  padding-top: 20px;
}
.about-me .about-content .text .social-links a {
  height: 30px;
  width: 30px;
  background-color: #000000;
  border: 1px solid #000;
  border-radius: 3px;
  display: inline-block;
  line-height: 28px;
  text-decoration: none;
  text-align: center;
  margin: 0 1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.about-me .about-content .text .social-links a:hover {
  background-color: transparent;
}
.about-me .about-content .text .social-links a .fab {
  color: #ffffff;
  font-size: 12px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.about-me .about-content .text .social-links a:hover .fab {
  color: #000000;
}

/* Services */
.services {
  background-color: #f5f8fd;
  padding: 100px 15px 70px;
}
.services .section-title h1::before {
  left: 30%;
}
.services .service-content {
  /* background-color: red; */
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.services .service-content .box {
  background-color: #ffffff;
  padding: 30px;
  flex: 0 0 calc(33.33% - 15px);
  max-width: calc(33.33% - 15px);
  margin-bottom: 30px;
  border: 1px solid #eeeeee;
  text-align: center;
  position: relative;
  border-radius: 5px;
}
.services .service-content .box::before {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  right: 0;
  background-color: #febd01;
  bottom: 0px;
  width: 50px;
  margin: auto;
  transition: all 0.5s ease;
}
.services .service-content .box:hover::before {
  width: 100%;
}

.services .service-content .box .icon {
  height: 60px;
  width: 60px;
  background-color: #febd01;
  margin: 0 auto 20px;
  border-radius: 50%;
  text-align: center;
}
.services .service-content .box .icon .fa {
  font-size: 25px;
  color: #fff;
  line-height: 60px;
}
.services .service-content .box h5 {
  font-size: 16px;
  font-size: 600;
  color: #000000;
  margin: 0;
}
.services .service-content .box p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #838383;
  margin: 10px 0 10px;
}

/* Skills */
.skills {
  padding: 100px 15px;
  background-color: #fff;
}
.skills .skills-content {
  /* background-color: red; */
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 40px;
}
.skills .img {
  /* background-color: blue; */
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 2.5em;
}
.align-items-center {
  align-items: center;
}
.skills .img img {
  width: 100%;
  display: block;
}
.skills .skills-content .section-title p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #838383;
  margin: 15px 0 0px;
}
.skills .skills-content .skill-box {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 30px;
}
.skills .skills-content .skill-box h6 {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  margin: 0px 0 8px;
}
.skills .skills-content .skill-box .skill-bar {
  height: 6px;
  background-color: #eeeeee;
  position: relative;
}

.skills .skills-content .skill-box .skill-bar .skill-bar-in {
  background-color: #febd01;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.skills .skills-content .skill-box .skill-bar .skill-bar-in span {
  color: #838383;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  right: 0;
  top: -25px;
}

/* portfolio */

.portfolio {
  background-color: #f5f8fd;
  padding: 100px 7px;
}
.portfolio .section-title h1::before {
  left: 30%;
}
.portfolio .filter-buttons {
  flex: 0 0 100%;
  max-width: 100%;
}
.portfolio .filter-buttons ul {
  list-style: none;
  /* background-color: #d5d5d5; */
  text-align: center;
  padding: 0;
}
.portfolio .filter-buttons ul li {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin: 0px 8px;
  text-transform: uppercase;
  cursor: pointer;
  padding-bottom: 0px;
}
.portfolio .filter-buttons ul li.active {
  color: #febd01;
  border-bottom: 2px solid #febd01;
}
.portfolio .filter-buttons {
  margin-bottom: 25px;
}
.portfolio .portfolio-gallery {
  flex: 0 0 100%;
  max-width: 100%;
  flex-wrap: wrap;
  display: flex;
  /* justify-content: space-between; */
}
.portfolio .portfolio-gallery .item {
  /* background-color: #d5d5d5; */
  flex: 0 0 33.33%;
  max-width: 33.33%;
  /* margin-bottom: 15px; */
  position: relative;
  padding: 8px;
}
.portfolio .portfolio-gallery .item .inner {
  position: relative;
}
.portfolio .portfolio-gallery .item img {
  width: 100%;
  display: block;
}
.portfolio .portfolio-gallery .item .overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}
.portfolio .portfolio-gallery .item:hover .overlay {
  opacity: 1;
}
.portfolio .portfolio-gallery .item .overlay .fa {
  height: 50px;
  width: 50px;
  background-color: #febd01;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
}
.portfolio .portfolio-gallery .item:hover .overlay .fa {
  animation: galleryIcon 0.8s ease;
  -webkit-animation: galleryIcon 0.8s ease;
}
@keyframes galleryIcon {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.portfolio .portfolio-gallery .item .overlay h4 {
  margin-top: 15px;
  font-size: 25px;
  color: #ffffff;
  font-weight: 600;
}
.portfolio .portfolio-gallery .item:hover .overlay h4 {
  -webkit-animation: galleryText 0.8s ease;
  animation: galleryText 0.8s ease;
}
@keyframes galleryText {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* lightbox */

.lightbox {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
  /* display: none; */
  justify-content: center;
  align-items: center;
}
.lightbox.show {
  display: flex;
}
.lightbox.hide {
  display: none;
}
.lightbox .close-lightbox {
  height: 35px;
  width: 35px;
  background-color: #febd01;
  color: #ffffff;
  line-height: 35px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 101;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  display: block;
}
/* Message text   */
.message-text {
  background-color: #0c0c17;
  padding: 40px 15px;
}
.message-text .text {
  flex: 0 0 66.66%;
  max-width: 66.66%;
}
.message-text .text h2 {
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  line-height: 30px;
}
.message-text .button {
  /* background-color: gray; */
  flex: 0 0 33.33%;
  max-width: 33.33%;
  text-align: right;
}
.message-text .button a {
  border-radius: 4px;
  color: #ffffff;
  border: 1px solid #ffffff;
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all.5s ease;
}
.message-text .button a:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Testimonials */
.testimonials {
  padding: 100px 0px;
  background-color: #f5f8fd;
}
.testimonials .section-title h1::before {
  left: 30%;
}
.testimonials .testimonials-content {
  position: relative;
  overflow: hidden;
  flex: 0 0 100%;
  max-width: 100%;
}
.testimonials .testimonials-content .testi-slider {
  float: left;
  transition: margin 1s ease;
}
.testimonials .testimonials-content .testi-slider .slide {
  background-color: #ffffff;
  margin-bottom: 15px;
  border: 1px solid #eeeeee;
  padding: 40px 20px;
  border-radius: 4px;
  display: flex;
  flex-wrap: nowrap;
  float: left;
  width: 100%;
}
.testimonials .testimonials-content .testi-slider .slide .img {
  flex: 0 0 128px;
  max-width: 128px;
}
.testimonials .testimonials-content .testi-slider .slide p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #838383;
  margin: 0;
}
.testimonials .testimonials-content .testi-slider .slide h6 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 10px 0 5px;
}

.testimonials .testimonials-content .slide-controls {
  float: left;
  width: 100%;
  text-align: center;
}
.testimonials .testimonials-content .slide-controls div {
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #febd01;
  display: inline-block;
  margin: 10px 6px;
  cursor: pointer;
}
.testimonials .testimonials-content .slide-controls div.active {
  background-color: #febd01;
}
/* Blogs */
.blogs {
  padding: 100px 15px;
  background-color: #ffffff;
}
.blogs .section-title h1::before {
  left: 30%;
}
.blogs .blogs-content {
  /* background-color: #d5d5d5; */
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blogs .blogs-content .box {
  /* background-color: #d5d5d5; */
  flex: 0 0 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
}
.blogs .blogs-content .box .img {
  overflow: hidden;
}
.blogs .blogs-content .box .img img {
  width: 100%;
  display: block;
  transition: all 0.5s ease;
}
.blogs .blogs-content .box:hover .img img {
  transform: scale(1.1);
}
.blogs .blogs-content .box .info {
  padding: 10px 0;
}
.blogs .blogs-content .box .info span {
  font-size: 12px;
  color: #838383;
  display: inline-block;
}
.blogs .blogs-content .box .info span:nth-child(2) {
  border-left: 1px solid #dddddd;
  padding-left: 8px;
  margin-left: 10px;
}
.blogs .blogs-content .box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  padding: 0;
  line-height: 32px;
}
.blogs .blogs-content .box p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #838383;
  margin: 0 0 10px;
}
.blogs .blogs-content .box a {
  font-size: 14px;
  color: #febd01;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid #febd01;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.blogs .blogs-content .box a:hover {
  color: #000000;
  border-color: #000000;
}

/* Contact us  */
.contact-us {
  padding: 100px 0px;
  background-color: #f5f8fd;
}
.contact-us .section-title h1::before {
  left: 30%;
}
.contact-us .contact-form {
  background-color: #ffffff;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 50px;
  border: 1px solid #eeeeee;
}
.contact-us .contact-form .text {
  flex: 0 0 100%;
  max-width: 100%;
  padding-bottom: 20px;
}
.contact-us .contact-form .text h2 {
  font-size: 26px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  padding: 0;
}
.contact-us .contact-form .text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #838383;
  margin: 0;
}
.contact-us .contact-form .space-between {
  justify-content: space-between;
}
.contact-us .contact-form .col-6 {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
}
.contact-us .contact-form .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.contact-us .contact-form textarea.form-control {
  height: 140px;
}
.contact-us .contact-form .form-control {
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #ced4da;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.contact-us .contact-form .form-control::placeholder {
  color: #838383;
}
.contact-us .contact-form .button {
  flex: 0 0 100%;
  max-width: 100%;
}
.contact-us .contact-form .button .a {
  border-radius: 4px;
  color: #ffffff;
  /* border: 1px solid #ffffff; */
  text-decoration: none;
  background-color: #febd01;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all.5s ease;
  box-shadow: 0px 10px 15px #e8e8e8;
  border: none;
}
.contact-us .contact-form .button .a:hover {
  background-color: #000000;
  color: #ffffff;
}

/* footer */
footer {
  padding: 40px 15px;
  background-color: #0c0c17;
}
footer .logo {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  font-size: 45px;
  color: #ffffff;
}
footer .social {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  padding-top: 15px;
}
footer .social a {
  color: #999999;
  text-decoration: none;
  margin: 0px 12px;
  transition: all 0.5s ease;
}
footer .social a:hover {
  color: #ffffff;
}

/* CopyRight */
.copyright {
  background-color: #0c0c17;
  border-top: 1px solid #1d1d27;
  padding: 15px;
}
.copyright p {
  color: #838383;
  margin: 0;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
}

.ham-burger .fa {
  font-size: 30px;
  display: none;
  height: 30px;
  width: 35px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 3px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #eeeeee;
}

@media (max-width: 991px) {
  .home .home-content .block h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .home .home-content .block h1 {
    font-size: 40px;
  }
  .home .home-content .block h3 {
    font-size: 25px;
  }
  header {
    padding: 15px;
    position: fixed;
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid #eeeeee;
  }
  header .brand-name a {
    color: #000000;
  }

  .ham-burger .fa {
    display: inline-block;
  }
  .navbar {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0px;
    top: 60px;
    padding: 15px;
    border-top: 1px solid #eeeeee;
    display: none;
    border-bottom: 1px solid #eeeeee;
  }
  .navbar.show {
    display: block;
  }
  header .navbar ul li {
    display: block;
    margin-left: 0;
  }
  header .navbar ul li a {
    line-height: 42px;
    color: #000;
  }
  header .navbar ul li a::before {
    background-color: #febd01;
  }
  .about-me .about-content .text {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0px;
    padding-top: 30px;
  }
  .about-me .about-content .img {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .services .service-content .box {
    background-color: #fff;
    padding: 30px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .skills .skills-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0px;
  }
  .skills .img {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .portfolio .portfolio-gallery .item {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    padding: 8px;
  }
  .message-text .text {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .message-text .button {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    padding-top: 20px;
  }
  .blogs .blogs-content .box {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .contact-us .contact-form {
    padding: 40px 20px;
  }
  .contact-us .contact-form .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .home .home-content .block h1 {
    font-size: 37px;
  }
  .home .home-content .block h3 {
    font-size: 28px;
  }
  .portfolio .portfolio-gallery .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .about-me .about-content .text .info .list p {
    flex: 0 0 100%;
  }
  .testimonials .testimonials-content .testi-slider {
    text-align: center;
  }
  .testimonials .testimonials-content .testi-slider .slide .img {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .testimonials .testimonials-content .testi-slider .slide {
    flex-wrap: wrap;
  }
}
