/* Mixins */
/* fonts */
@font-face {
  font-family: "work-sans";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url(../fonts/Work_Sans/WorkSans-Light.ttf) format("truetype");
}
@font-face {
  font-family: "work-sans";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../fonts/Work_Sans/WorkSans-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "work-sans";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url(../fonts/Work_Sans/WorkSans-Bold.ttf) format("truetype");
}
/* Global */
:root {
  --main-color:#1cc5f0;
  --second-color:#e8eef3;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #eee;
}

::-webkit-scrollbar-thumb {
  background-color: #333;
}

::-moz-selection {
  background-color: transparent;
}

::selection {
  background-color: transparent;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "work-sans";
  cursor: default;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}

p {
  color: #666;
}

.section-head {
  color: var(--main-color);
  font-weight: 400 !important;
}

/* ------------------------------ */
/* scroll to top button */
.scroll-button {
  position: fixed;
  right: -35px;
  bottom: 70px;
  z-index: 100;
  background-color: var(--main-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.4s ease;
}
.scroll-button.active {
  right: 12px;
}

/* header */
header {
  background-color: var(--main-color);
  padding-top: 8px;
  padding-bottom: 8px;
  height: 57px;
  z-index: 999;
  top: 0;
}
header .container {
  height: 30px;
}
header h3 {
  margin: 0;
  cursor: default;
  padding-right: 20px;
}
header .right {
  font-size: 17px;
}
header .right i {
  cursor: pointer;
  margin-left: 20px;
  transition: all 0.3s;
}
header .right i.opened {
  transition: all 0.3s;
}
header .right i.opened.fa-gear {
  transform: rotate(100deg);
}
header .right i.opened.fa-bars::before {
  content: "\f00d";
  text-align: center;
  transition: all 3s;
  display: inline-block;
  width: 14.88px;
}
header .right a {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  background-color: transparent;
  color: white;
}
header .right a:hover {
  transition-duration: 0.3s;
  transition-property: background-color, color;
  color: var(--main-color);
  background-color: white;
}
@media (max-width: 767px) {
  header .right ul {
    position: absolute;
    top: 43px;
    left: 12px;
    right: 12px;
    background-color: #04060a;
    border-radius: 0 0 8px 8px;
    height: 0;
    padding: 0 8px !important;
    overflow: hidden;
    transition: 0.2s ease;
    z-index: -1;
  }
}
@media (max-width: 767px) {
  header .right ul.active {
    height: auto;
    padding: 8px !important;
    transition: 0.2s ease;
    z-index: 10;
  }
}
header .right ul li:last-child {
  margin-right: 0 !important;
}
@media (max-width: 767px) {
  header h3 {
    padding-right: 0 !important;
  }
  header .right i:first-child {
    margin: 0;
  }
}
@media (max-width: 575px) {
  header h3 {
    font-size: 20px;
  }
}
header .gear-box {
  top: 43px;
  left: 12px;
  right: 12px;
  background-color: #04060a;
  border-radius: 0 0 8px 8px;
  padding: 0 8px;
  height: 0;
  z-index: -1;
  transition: 0.2s ease;
}
header .gear-box.active {
  padding-top: 8px;
  padding-bottom: 8px;
  height: auto;
  z-index: 10;
  transition: 0.2s ease;
}
header .gear-box li {
  width: 25px;
  height: 25px;
  background-color: #1cc5f0;
  opacity: 0.6;
  cursor: pointer;
  margin: 2px;
}
header .gear-box li:nth-of-type(2) {
  background-color: #3677b8;
}
header .gear-box li:nth-of-type(3) {
  background-color: #8353d5;
}
header .gear-box li:nth-of-type(4) {
  background-color: #d73333;
}
header .gear-box li:nth-of-type(5) {
  background-color: #00ba84;
}
header .gear-box li.active {
  opacity: 1;
  border: 3px solid #fff;
}
header .gear-box label {
  margin: 13px;
  width: 35px;
  height: 18px;
  cursor: pointer;
}
header .gear-box label input {
  -webkit-appearance: none;
    -moz-appearance: none;
          appearance: none;
}
header .gear-box label span {
  display: inline-block;
  position: absolute;
  width: 35px;
  height: 17.5px;
  background-color: #ccc;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
header .gear-box label span::after {
  content: "\f00d";
  font-family: "FontAwesome";
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: #fff;
  font-size: 6px;
  top: 2px;
  left: 3.5px;
  border-radius: 50%;
  color: #ccc;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 14px;
}
header .gear-box label input:checked + span {
  background-color: #2196f3;
}
header .gear-box label input:checked + span::after {
  content: "\f00c";
  left: 19px;
  color: #2196f3;
  transition: all 0.3s ease;
}

.landing .container {
  margin-top: 57px;
}
.landing .container .land-title {
  z-index: 10;
  top: 40%;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 767px) {
  .landing .container .land-title h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .landing .container .land-title h3 {
    font-size: 16px;
    text-align: center;
  }
}
.landing .container .land-title .main-word {
  color: var(--main-color);
}
.landing .container .land-title p {
  font-size: 17px;
  max-width: 330px;
  letter-spacing: 0.8px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .landing .container .land-title p {
    display: none;
  }
}
.landing .arrows {
  width: 88%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.landing .arrows i {
  background-color: var(--main-color);
  width: 30px;
  height: 30px;
  line-height: 21px;
  text-align: center;
  box-shadow: 0 0 5px 2px #333;
  cursor: pointer;
}
@media (max-width: 575px) {
  .landing .arrows i {
    box-shadow: none;
  }
}
.landing .arrows i:last-of-type {
  position: absolute;
  right: 0;
}
.landing .arrows i.disaply {
  background-color: #ccc;
}
@media (max-width: 575px) {
  .landing .arrows i.disaply {
    background-color: transparent;
  }
  .landing .arrows i.disaply::before {
    opacity: 0.3;
  }
}
@media (max-width: 575px) {
  .landing .arrows i {
    background-color: transparent;
  }
}
.landing .dots {
  left: 50%;
  transform: translate(-50%);
  bottom: 10%;
}
.landing .dots span {
  width: 19px;
  height: 19px;
  border: 2px solid var(--main-color);
  transition: all 0.5s;
}
.landing .dots span.active {
  background-color: var(--main-color);
}
@media (max-width: 575px) {
  .landing .dots span {
    width: 14px;
    height: 14px;
    margin: 2px;
  }
}
.landing .slider {
  overflow: hidden;
}
.landing .slider img {
  filter: brightness(75%);
  min-width: 100%;
  max-height: 600px;
  transition: all 1s ease;
  border-radius: 0 0 2px 2px;
}

.about .left {
  width: 500px;
  max-width: 100%;
  margin-bottom: 30px;
}
.about .left p {
  padding-left: 25px;
  border-left: 5px solid var(--main-color);
  max-height: 147px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .about .left p {
    padding-left: 20px;
    margin-left: 5px;
    font-size: 14px;
  }
}
.about .right img {
  width: 250px;
  max-width: 100%;
}

.skills {
  background-color: var(--second-color);
}
.skills .analysis {
  max-width: 550px;
}
.skills .line-bar > span {
  width: 85px;
  padding-left: 7px;
  font-size: 14px;
}
.skills .line-bar div {
  overflow: hidden;
  background-color: #eee;
}
.skills .line-bar div span {
  background-color: var(--main-color);
  transition: all 1.5s ease;
  width: 0;
}

.gallery .images {
  grid-template-columns: repeat(auto-fill, minmax(237px, 1fr));
  gap: 30px;
}
.gallery .images .car {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.5s;
}
.gallery .images .car span {
  opacity: 0;
  top: 70%;
  left: 50%;
  transform: translate(-50%);
  color: transparent;
  padding: 7px;
  border-radius: 4px;
  background-color: rgba(4, 6, 10, 0.6666666667);
  transition: 0.2s;
}
.gallery .images .car:hover {
  opacity: 0.8;
  position: relative;
  top: -3px;
}
.gallery .images .car:hover span {
  opacity: 1;
  color: #fff;
}
.gallery .images img {
  width: 250px;
  max-width: 100%;
  height: 180px;
  border-radius: 8px;
  box-shadow: 0 0 13px 8px rgba(0, 0, 0, 0.3019607843);
  border-bottom: 10px solid var(--main-color);
  cursor: pointer;
}

body > .over-lay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  display: none;
  z-index: 10000;
}
body > .over-lay .over-back {
  background-color: #04060a;
  opacity: 0.7;
  position: absolute;
  width: 100%;
  height: 100%;
}
body > .over-lay.active {
  display: block;
}
body > .over-lay.active .popup {
  position: fixed;
  width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 24px);
  border: 8px solid #f8f8f8;
  border-radius: 8px;
}
body > .over-lay.active .popup img {
  min-width: 100%;
}
body > .over-lay.active .popup span {
  position: absolute;
  top: -17px;
  right: -17px;
  font-size: 20px;
  padding: 2px 10px;
  background-color: #444;
  border-radius: 3px;
  width: 34px;
  height: 34px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}
body > .over-lay.active .popup span:hover {
  background-color: #d73333;
}
@media (max-width: 575px) {
  body > .over-lay.active .popup span {
    font-size: 18px;
    width: auto;
    height: auto;
  }
}

.time-line {
  background-color: var(--second-color);
}
.time-line .container {
  position: relative;
}
.time-line .container::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  background-color: var(--main-color);
  width: 3px;
  height: 100%;
  z-index: 0;
}
@media (max-width: 767px) {
  .time-line .container::after {
    left: calc(100% - 10px);
    top: 60px;
    height: 90%;
  }
}
.time-line .year {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .time-line .year {
    width: auto;
    text-align: center;
    margin-top: 0 !important;
    margin-bottom: 30 !important;
  }
}
.time-line .left, .time-line .right {
  width: calc(50% - 40px);
  position: relative;
}
.time-line .left h3, .time-line .right h3 {
  color: var(--main-color);
  font-weight: 500;
  margin-bottom: 15px;
}
.time-line .left::before, .time-line .right::before {
  content: "";
  position: absolute;
  border: 12px solid white;
  border-color: transparent transparent transparent #fff;
  right: -24px;
  top: 25px;
}
.time-line .left::after, .time-line .right::after {
  content: "";
  position: absolute;
  right: -50px;
  background-color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid var(--main-color);
  top: 25px;
  z-index: 1;
}
@media (max-width: 767px) {
  .time-line .left::after, .time-line .right::after {
    right: -40px;
  }
}
@media (max-width: 767px) {
  .time-line .left, .time-line .right {
    margin-right: 28px;
    width: auto;
  }
}
@media (min-width: 767px) {
  .time-line .right::before {
    left: -24px;
    border-color: transparent #fff transparent transparent;
    right: auto;
  }
  .time-line .right::after {
    left: -50px;
    right: auto;
  }
}

.contact .container {
  padding-bottom: 50px;
}
.contact .left, .contact .right {
  width: 300px;
  max-width: 100%;
}
.contact .left input, .contact .left textarea, .contact .right input, .contact .right textarea {
  padding: 5px;
  resize: none;
  outline: none;
  border: 1px solid #aaa;
  margin-bottom: 15px;
  border-radius: 3px;
  width: 100%;
}
.contact .left input:focus, .contact .left textarea:focus, .contact .right input:focus, .contact .right textarea:focus {
  border: 2px solid var(--main-color);
  border-radius: 5px;
}
.contact .left input:focus::-moz-placeholder, .contact .left textarea:focus::-moz-placeholder, .contact .right input:focus::-moz-placeholder, .contact .right textarea:focus::-moz-placeholder {
  color: transparent;
}
.contact .left input:focus:-ms-input-placeholder, .contact .left textarea:focus:-ms-input-placeholder, .contact .right input:focus:-ms-input-placeholder, .contact .right textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.contact .left input:focus::placeholder, .contact .left textarea:focus::placeholder, .contact .right input:focus::placeholder, .contact .right textarea:focus::placeholder {
  color: transparent;
}
.contact input[type=submit] {
  color: #fff;
  background-color: var(--main-color);
  margin-bottom: 0;
  border-width: 0;
  border-radius: 5px;
  box-shadow: 0 0 1px 1px #ddd;
}
.contact input[type=submit]:focus {
  border-width: 0;
}

footer {
  background-color: #393b3d;
  font-size: 20px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
footer .icos a {
  margin: 0 4px;
}
footer span {
  color: var(--main-color);
}/*# sourceMappingURL=main.css.map */