/* reset */
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #d6d4d4;
  background-color: #060b25;
}
/* all links & hover */
a {
  color: #fa823d;
  text-decoration: none;
}
a:hover {
  color: #e5f507;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
/* back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #46d71a;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #57aae1;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/* header */
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background-image: url("../img/gif/blue.gif");
  background-blend-mode: multiply;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;


  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo h1 {
  font-size: 25px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 2px; 
}
#header .logo img {
  max-height: 40px;
}
.logo {
  margin-right: 2em;
}
.header-social-links {
  margin: 0 0 0 30px;
}
.header-social-links a {
  color: rgb(44, 198, 245);
  padding: 1em;
  display: inline-block;
  line-height: 0px;
  transition: 0.5s;
}
.header-social-links a i {
  line-height: 0;
}
.header-social-links a:hover {
  color: #e3f029;
}
/* media queries */
@media (max-width: 768px) {
  .header-social-links {
    margin: 0 15px 0 0;
  }
  .brandTitle {
    display: none;
  }
}
/* navigation  section*/
.navbar {
  padding: 0; 
}
.brandTitle {
  color: rgb(44, 198, 245);
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: yellow;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: rgb(44, 198, 245);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgb(44, 198, 245);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #f4f5f6;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #e8f30f;
}
.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
/* media queries */
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
  .brandTitle {
    display: none;
  }
}
/* mobile navigation */
.mobile-nav-toggle {
  color: #fafbfc;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
/* media queries */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
/* mobile */
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #384046;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #46d71a;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #46d71a;
}
.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/* hero section*/
#hero {
  background-color: #eff0f692;
  background: url("../img/hero/heroRobot.jpg");
  background-blend-mode: multiply;
  background-attachment: fixed;
  background-size: cover;
  font-size: 5rem;
  font-family: fantasy;
  font-weight: 600;
  text-align: center;
  padding: 35vh 0;
  margin-bottom: 0;
}
#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  z-index: 2;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 78px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(44, 198, 245, 0.786);
  
}
#hero h1 span {
  border-bottom: 6px solid #0a17cccd;
}
#hero h2 {
  color: rgba(250, 250, 13, 0.817);
  margin-bottom: 30px;
  margin-top: 1em;
  font-size: 44px;
}
#hero .btn-get-started {
  background-color: #20b015;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  transition: ease-in-out 0.5s;
  text-transform: uppercase;
  background-image:  linear-gradient(135deg, #45a6c4, #496a04);
  color: white;
  border: 2px solid rgb(216, 248, 9);
}
#hero .btn-get-started:hover {
  background: #46d71a;
}
/* media queries */
@media (max-width: 992px) {
  #hero {
    height: calc(100vh - 70px);
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
/* all sections */
section {
  padding: 60px 0;
}
.section-bg {
  background-color: #f7fbfe;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: rgba(44, 198, 245, 0.786);

}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: rgba(44, 198, 245, 0.786);
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}
/* learning path section*/
.learning-path .icon-box {
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
}
.learning-path .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.learning-path .icon-box .icon i {
  font-size: 50px;
}
.learning-path .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.learning-path .icon-box h4 a {
  color: #f1f4f6;
  transition: ease-in-out 0.3s;
}
.learning-path .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.learning-path .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}
.learning-path .icon-box:hover h4 a,
.learning-path .icon-box:hover .icon i {
  color: rgba(44, 198, 245, 0.786);
  
}
/* about section*/
.about {
  padding: 10px 0;
  color: #f8f6f6;
}
.about h3 {
  font-weight: 600;
  font-size: 32px;
  color: rgba(44, 198, 245, 0.786);
}
.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.about ul li+li {
  margin-top: 10px;
  
}
.about ul li {
  position: relative;
  padding-left: 26px;

}
.about ul i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: rgba(44, 198, 245, 0.786);
}
.about .icon-boxes {
  padding-top: 10px;
}
.about .icon-boxes h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.about .icon-boxes i {
  font-size: 48px;
  color: #46d71a;
}
.about .icon-boxes p {
  font-size: 15px;
}
/* skills */
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: white;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #e8eaec;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: rgba(44, 198, 245, 0.786);
}
/* count bars */
.counts {
  padding: 30px 0 40px 0;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #060b25;
}
.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: rgba(44, 198, 245, 0.786);
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #fafcfd;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}
/* study projects section */
#study-projects {
  background-color: #060b25;
  color: #f1f3f4;
}
.study-projects .icon-box {
  padding: 30px;
  border-radius: 6px;  
  transition: ease-in-out 0.3s;
}
.study-projects .icon-box i {
  float: left;
  color: #46d71a;
  font-size: 40px;
  line-height: 0;
}
.study-projects .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.study-projects .icon-box h4 a {
  color: #f1f3f4;
  transition: 0.3s;
}
.study-projects .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  color: #f1f3f4;
}
.study-projects .icon-box:hover {
  box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
}
.study-projects .icon-box:hover h4 a {
  color: rgba(44, 198, 245, 0.786);
}
.js-icon {
  margin-left: -.8em;
}
.go-icon {
  margin-left: -1.8em;
}
.php-icon {
  margin-left: -2em;
}
/* portfolio section*/
.portfolio {
  padding: 60px 0;
  color: #f1f3f4;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #e3e2e2;
  border-radius: 4px;
  text-transform: uppercase;
  background: rgba(44, 198, 245, 0.786);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: rgba(19, 5, 63, 0.786);
  color: #fff;
  border: 1px solid white;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
.portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}
.portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.4s;
}
.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s linear;
  overflow: hidden;
  font-size: 20px;
}
.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
  color: #384046;
  line-height: 0;
}
.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
  background: #46d71a;
}
.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}
.portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}
.portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}
.portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}
.portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}
.portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 30px;
  height: 90px;
  border-radius: 0 0 3px 3px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  line-height: 1px;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info h4 a {
  color: rgba(44, 198, 245, 0.786);
  font-size: 1.2em;
}
.portfolio .portfolio-item .portfolio-info h4 a:hover {
  color:  rgb(5, 28, 239);
}
.portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color:  rgb(5, 28, 239);

  font-weight: 500;
  font-size: 1.1em;
  text-transform: uppercase;
}
.portfolio-details {
  padding-top: 0;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #46d71a;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #46d71a;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(56, 64, 70, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}
/* achievements section */
.card {
  background-color:  #060b25;
}
/* .card-title {
  background-image:  linear-gradient(135deg, #0bf05b, #293d9a);
  background-position: center;
  background-attachment: fixed;
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */
.card-btn {
  background-color: #20b015;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  transition: ease-in-out 0.5s;
  text-transform: uppercase;
  background-image:  linear-gradient(135deg, #07055d, #04636a);
  color: white;
  border: 2px solid rgb(216, 248, 9);
}
/* hero 2 section*/
.hero2 {
  background-image: url("../img/hero/mobileResponsive.jpg");
  background-blend-mode: multiply;
  background-attachment: fixed;
  background-size: cover;
  color: rgb(26, 152, 230);
  font-size: 5rem;
  font-family: fantasy;
  font-weight: 600;
  text-align: center;
  padding: 35vh 0;
  margin-bottom: 0;
}
#html {
  color: orangered;
}
#bootstrap {
  color: rgb(147, 20, 164);
}
/* contact section*/
#contact {
  background-color: #060b25;
}
.contact, section-bg, p{
  color: white;
}
.contact .info-wrap {
  padding: 30px;
  border-radius: 4px;
}
.contact .info i {
  font-size: 30px;
  color: rgba(44, 198, 245, 0.786);
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: rgba(44, 198, 245, 0.786);
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #dadddf;
}
.contact .info:hover i {
  background: rgba(44, 198, 245, 0.786);
  color: #fff;
}
/* footer section*/
#footer {
  color: #dddddd;
  font-size: 14px;
  background-color: #060b25;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #f2f0f0;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: rgba(44, 198, 245, 0.786);
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: rgba(44, 198, 245, 0.786);
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #e3e0e0;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: rgba(44, 198, 245, 0.786);
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: rgba(44, 198, 245, 0.786);
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fefcfc;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
  border: 1px solid #b6daf2;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: rgb(4, 95, 141);
  color: #dbdada;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: rgba(44, 198, 245, 0.786);
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}
#footer .social-links a {
  font-size: 38px;
  display: inline-block;
  background: none;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 25%;
  text-align: center;
  width: 56px;
  height: 56px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: rgba(44, 198, 245, 0.786);
  text-decoration: none;
}
