/* My root var */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
:root {
  --blue: #007bff;
  --white: #fff;
  --black: #111;
  --font-family: "Poppins", sans-serif;
}

/* font family link */
/* glop code */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--white);
}

ul,
li {
  list-style-type: none;
}

/* Start style page */
body {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  background-color: var(--black);
  color: var(--white);
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 400ms;
}

/* container code */
.container {
  max-width: calc(100% - 195px);
  margin: 0 auto;
}

/* bg rotate */
.rotet-bg {
  position: fixed;
  left: -80%;
  top: -50%;
  width: 100%;
  height: 200%;
  background-color: var(--blue);
  transform: rotate(-15deg);
  z-index: -99;
}

.sec-title {
  position: relative;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
  text-transform: uppercase;
  -webkit-animation: slow-content 1s forwards linear;
          animation: slow-content 1s forwards linear;
}

.sec-title h1 {
  font-size: 55px;
  font-weight: 900;
}

.sec-title h1 span {
  color: var(--blue);
}

.sec-title > span {
  font-size: 110px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 0.7;
  letter-spacing: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
}

.btn {
  border: 1px solid var(--blue);
  display: flex;
  align-items: center;
  padding: 15px 70px 15px 35px;
  margin-top: 25px;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 229px;
  height: 58px;
}

.btn::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 58px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(100%);
  transition: 0.3s ease-out all;
  background-color: var(--blue);
}

.btn:hover:before {
  transform: translateX(0);
}

.btn .i {
  position: absolute;
  bottom: 0;
  right: -1px;
  top: -1px;
  background-color: var(--blue);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

hr {
  border: 0;
}

.spear {
  border-top: 1px solid #252525;
  width: 40%;
  margin: 70px auto 55px;
}

/* header Start codin style */
.header {
  position: fixed;
  right: 30px;
  bottom: 0;
  top: 100px;
  height: calc(100vh - 200px);
  opacity: 1;
  transition: 0.3s;
  display: flex;
  align-items: center;
  z-index: 2;
}

.header .icon-menu {
  -webkit-animation: slow-menu 1s forwards linear;
          animation: slow-menu 1s forwards linear;
}

@-webkit-keyframes slow-menu {
  from {
    transform: translateX(80px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slow-menu {
  from {
    transform: translateX(80px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
.header .icon-box {
  background-color: #2b2a2a;
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  border-radius: 50%;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}

.header .active {
  background-color: var(--blue);
}

.header .icon-box:hover {
  background-color: var(--blue);
}

.header .icon-box span {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

.header .icon-box a {
  display: flex;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
}

.header .icon-box a:hover {
  color: white;
}

.header .icon-box h2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 50px;
  text-transform: uppercase;
  padding: 0 25px 0 30px;
  border-radius: 30px;
  transition: 0.5s;
  background-color: var(--blue);
  opacity: 0;
  z-index: -11;
}

.header .icon-box:hover h2 {
  right: 27px;
  opacity: 1;
  border-radius: 30px 0 0 30px;
}

#mop-nav {
  display: none;
}

/* nav bar media */
@media (max-width: 992px) {
  .icon-menu {
    display: none;
  }
  #mop-nav {
    display: inline-block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    padding: 16px 0 0 16px;
    border-radius: 5px;
    background-color: #252525;
  }
  #mop-nav .bar-show {
    position: absolute;
    display: flex;
    font-size: 25px;
    z-index: 111;
    cursor: pointer;
    transition-delay: 1s;
  }
  #mop-nav .bar-hide {
    position: absolute;
    display: flex;
    font-size: 25px;
    z-index: 111;
    cursor: pointer;
    display: none;
    top: 10px;
  }
  #mop-nav .list {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    background-color: #252525;
    transition: 0.5s;
    transform: translate(-100%, 0);
  }
  .show {
    transform: translate(0, 0) !important;
  }
  #mop-nav .list .activ a {
    color: var(--blue);
  }
  #mop-nav .list li {
    position: relative;
    padding-left: 30px;
  }
  #mop-nav .list li:hover a {
    color: var(--blue);
  }
  #mop-nav .list li::after {
    position: absolute;
    content: "";
    width: calc(100% - 60px);
    height: 1px;
    background-color: #333;
  }
  #mop-nav .list li a {
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 200;
    text-transform: uppercase;
    padding: 15px 0;
  }
  #mop-nav .list li a span {
    font-size: 22px;
    margin-right: 25px;
  }
  #mop-nav .list li a h2 {
    font-weight: 700;
    font-size: 26px;
  }
}
/* End header */
/* Start Home section */
#home {
  position: relative;
}

#home .row {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 160px;
  align-items: center;
  margin: auto 0;
  position: relative;
  z-index: 1;
}

#home .img-me {
  background: url(../img/my-img.jpg) no-repeat top;
  background-size: cover;
  height: calc(100vh - 100px);
  border-radius: 30px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  -webkit-animation: slow-img 1s forwards linear;
          animation: slow-img 1s forwards linear;
}

@-webkit-keyframes slow-img {
  from {
    transform: translateX(-240px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slow-img {
  from {
    transform: translateX(-240px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
#home .content {
  max-width: 550px;
  position: relative;
  z-index: 2;
  -webkit-animation: slow-content 1s forwards linear;
          animation: slow-content 1s forwards linear;
}

@-webkit-keyframes slow-content {
  from {
    transform: translateY(-240px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slow-content {
  from {
    transform: translateY(-240px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
#home .content h1, .h1 {
  font-size: 50px;
  color: var(--blue) !important;
  font-weight: 700;
  position: relative;
  line-height: 1.2;
}
#home .content h1 .h1, .h1 .h1 {
  margin-left: 50px;
}

#home .content .h1::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: var(--blue);
  left: -50px;
  top: 27px;
  border-radius: 5px;
}

#home .content h1 span {
  color: var(--white);
  font-size: 40px;
}

#home .content p {
  line-height: 2.5;
  margin-top: 15px;
  letter-spacing: 1.1px;
}

.social {
  display: flex;
}
.social li {
  padding: 10px;
  margin-top: 25px;
}
.social li a {
  display: flex;
  font-size: 35px;
  color: var(--white);
  transition: 0.5s;
}
.social li:hover a {
  transform: scale(1.1);
  color: var(--blue);
}

/* End Home section*/
#About {
  padding-bottom: 20px;
}

#About .about-row {
  display: flex;
}

.about-row .info,
.customer {
  letter-spacing: 1.5px;
  line-height: 2;
  width: 50%;
  display: flex;
  flex-direction: column;
}

.info {
  -webkit-animation: slow-img 1s forwards linear;
          animation: slow-img 1s forwards linear;
}

.customer {
  -webkit-animation: slow-menu 1s forwards linear;
          animation: slow-menu 1s forwards linear;
}

.about-row .info h3 {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 400;
}

.about-row .info h4 {
  font-size: 16px;
  color: var(--blue);
  font-weight: 400;
}

.about-row .info h4 em {
  color: var(--white);
  font-weight: 200;
}

.about-row .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-row .flex .cust-box {
  width: calc(50% - 10px);
  position: relative;
  border: 1px solid #252525;
  border-radius: 5px;
  padding: 20px 30px 25px 40px;
  display: flex;
  flex-direction: column;
  max-width: 255px;
}

.about-row .flex .cust-box h3 {
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
  color: var(--blue);
}

.about-row .flex .cust-box p {
  padding-left: 32px;
  font-family: sans-serif;
  font-size: 15px;
  font-weight: 400;
  position: relative;
}

.cust-box p::after {
  position: absolute;
  content: "";
  left: -10px;
  top: 15px;
  width: 30px;
  height: 1px;
  background-color: var(--blue);
}

#skills h3 {
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-bottom: 35px;
}
#skills .skill-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#skills .skill-row .circul {
  flex-basis: 24%;
  padding: 20px 10px;
  border-radius: 4px;
  margin-bottom: 40px;
}
#skills .skill-row .circul .progress {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  color: #1760b8;
  background: conic-gradient(var(--blue) 3.6deg, #252525 0deg);
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#skills .skill-row .circul .progress::before {
  position: absolute;
  content: "";
  width: 130px;
  height: 130px;
  background-color: var(--black);
  border-radius: 50%;
}
#skills .skill-row .circul .progress-value {
  position: relative;
  color: var(--white);
  font-size: 22px;
  font-weight: 300;
}
#skills .skill-row .circul h4 {
  font-size: 22px;
  font-weight: 300;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
}

#education {
  height: 100vh;
}
#education h3 {
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-bottom: 35px;
}
#education .row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#education .row-grid h5 {
  font-size: 22px;
  font-weight: 300;
  border-bottom: var(--blue) solid 2px;
  display: inline-block;
}
#education .row-grid li {
  position: relative;
  padding: 0 20px 0 60px;
  margin: 50px 0;
  line-height: 1.7;
  letter-spacing: 1.2px;
}
#education .row-grid li .icon {
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, #0065fc, #007dfe, #0091f8, #00a2ee, #4ab0e2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#education .row-grid li span {
  font-size: 14px;
  font-weight: 200;
  background-color: #252525;
  padding: 3.5px 7px;
  border-radius: 10px;
  margin-top: 3.5px;
  margin-bottom: 15px;
  display: inline-block;
}
#education .row-grid li h4 {
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}
#education .row-grid li p {
  font-weight: 200;
}
#education .row-grid li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, #0065fc, #007dfe, #0091f8, #00a2ee, #4ab0e2);
  left: 19.5px;
  top: 0;
  z-index: -1;
}

#Portfolio {
  padding-top: 10px;
  padding-bottom: 10px;
}
#Portfolio .work {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
#Portfolio .work li {
  border: var(--blue) solid 1px;
  padding: 10px 20px;
  margin-left: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  transition: 0.5s;
  cursor: pointer;
}
#Portfolio .work .active {
  background-color: var(--blue);
}
#Portfolio .work li:hover {
  background-color: var(--blue);
  transform: scale(1.1);
}
#Portfolio .row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 25px;
  padding: 20px;
}
#Portfolio .card {
  border-radius: 5px;
  transition: 0.5s;
}
#Portfolio .card .img-card {
  width: 100%;
  transition: 0.5s;
  background-size: cover;
  border-radius: 5px 5px 0px 0px;
}
#Portfolio .card .content-card {
  position: relative;
  top: -10px;
  border-radius: 0px 0px 5px 5px;
  width: 100%;
  background-image: linear-gradient(to right bottom, #ffffff, #f8f7fc, #eff0f9, #e6e9f7, #dce2f4, #d3dcf1, #cad5ee, #c1cfeb, #b8c8e7, #afc0e3, #a7b9de, #9eb2da);
  color: #111;
  padding: 20px;
  line-height: 1.7;
  transition: 0.5s;
  cursor: pointer;
}
#Portfolio .card .content-card h4 {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
#Portfolio .card .content-card .icon {
  display: flex;
  flex-direction: row;
  gap: 15px;
  font-size: 18px;
  margin-top: 10px;
  color: var(--black);
  cursor: pointer;
}
#Portfolio .card .content-card .icon .fa-thumbs-up:hover {
  color: blue;
}
#Portfolio .card .content-card .icon .fa-thumbs-down:hover {
  color: red;
}
#Portfolio .card .content-card .icon .fa-heart:hover {
  color: red;
}
#Portfolio .card:hover {
  transform: translateY(-5px);
  transform: scale(1.1);
}
#Portfolio .card:hover .img-card {
  opacity: 0.7;
}

.card-none {
  display: none !important;
}

#Contact {
  width: 100%;
  height: 100%;
  /* Left contact page */
  /* Begin Right Contact Page */
  /* Location, Phone, Email Section */
  /* Social Media Icons */
  /* Begin Media Queries*/
}
#Contact .section-header {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  font: 300 60px "Oswald", sans-serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 6px;
}
#Contact .contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 840px;
  gap: 25px;
}
#Contact .form-horizontal {
  max-width: 100%;
  font-family: "Lato";
  font-weight: 400;
}
#Contact .form-control,
#Contact textarea {
  max-width: 100%;
  background-color: #000;
  color: #fff;
  letter-spacing: 1px;
}
#Contact .send-button {
  margin-top: 15px;
  height: 34px;
  width: 100%;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
#Contact .alt-send-button {
  width: 400px;
  height: 34px;
  transition: all 0.2s ease-in-out;
}
#Contact .send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px "Lato", sans-serif;
  letter-spacing: 2px;
}
#Contact .alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}
#Contact .direct-contact-container {
  max-width: 400px;
}
#Contact .contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
}
#Contact .list-item {
  line-height: 4;
  color: #aaa;
}
#Contact .contact-text {
  font: 300 18px "Lato", sans-serif;
  letter-spacing: 1.9px;
  color: #bbb;
}
#Contact .contact-text a {
  color: #bbb;
  text-decoration: none;
  transition-duration: 0.2s;
}
#Contact .contact-text a:hover {
  color: #fff;
  text-decoration: none;
}
#Contact .social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#Contact .social-media-list li a {
  color: #fff;
}
#Contact .social-media-list li {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: rgb(27, 27, 27);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
#Contact .social-media-list li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all 0.2s ease-in-out;
}
#Contact .social-media-list li:hover {
  background-color: #fff;
}
#Contact .social-media-list li:hover:after {
  opacity: 1;
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}
#Contact .social-media-list li:hover a {
  color: #000;
}
#Contact .copyright {
  font: 200 14px "Oswald", sans-serif;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
}
#Contact hr {
  border-color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 850px) {
  #Contact .contact-wrapper {
    display: flex;
    flex-direction: column;
  }
  #Contact .direct-contact-container,
#Contact .form-horizontal {
    margin: 0 auto;
  }
  #Contact .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }
  #Contact .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  #Contact .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 569px) {
  #Contact .direct-contact-container,
#Contact .form-wrapper {
    float: none;
    margin: 0 auto;
  }
  #Contact .form-control,
#Contact textarea {
    margin: 0 auto;
  }
  #Contact .name,
#Contact .email,
#Contact textarea {
    width: 280px;
  }
  #Contact .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }
  #Contact .social-media-list {
    left: 0;
  }
  #Contact .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  #Contact .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
}
@media screen and (max-width: 410px) {
  #Contact .send-button {
    width: 99%;
  }
}/*# sourceMappingURL=main.css.map */