@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

.section {
  padding: 6rem 0;
}

.title {
  text-transform: uppercase;
  font-weight: 700;
  color: #222;
}

.sub-title {
  font-weight: 400;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  height: 50px;
  padding: 1em 0;
  margin: 20px 0;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}
.menu > li a {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 400;
  position: relative;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #ffffff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 800px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 85px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }
  .menu > li a {
    font-weight: 700;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}

.main {
  background-image: url("../img/banner-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  color: #ffffff;
  position: relative;
}
.main #particles-js canvas {
  height: 650px !important;
}
.main .overlay {
  background: #000;
  height: 100vh;
  opacity: 0.5;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.main .logo {
  font-family: "Cormorant SC", serif;
  font-size: 2rem;
}
.main .header-container {
  height: 100vh;
  display: flex;
  justify-content: start;
  align-items: center;
}
.main .intro {
  margin-bottom: 150px;
}
.main .name {
  font-size: 6rem;
  font-weight: 800;
  margin: 12px 0;
}
.main .designation {
  font-size: 24px;
  font-weight: 500;
}
.main .fa {
  width: 58px;
  display: block;
  text-align: center;
  color: white;
  font: normal 45px "FontAwesome";
  line-height: 60px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.main .fa-angle-double-down:before {
  content: "\f107";
}
.main .bounce {
  position: absolute;
  bottom: 30px;
  left: 10%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  border: 2px solid white;
  border-radius: 50%;
  animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

@media (max-width: 800px) {
  .name {
    font-size: 4.5rem !important;
  }
  .designation {
    font-size: 21px !important;
  }
}
.about-container .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-container .image-container .about-img {
  position: relative;
  z-index: 10;
}
.about-container .image-container .about-img img {
  max-height: 500px;
}
.about-container .image-container .about-img::before {
  content: "";
  background-color: #e9e9e9;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -7%;
  left: -7%;
  z-index: -10;
}
.about-container .about-text {
  text-align: justify;
}
.about-container .span-name {
  font-weight: 700;
}
.about-container .company-name {
  text-decoration: none;
  color: #222;
}
.about-container .social-icon {
  background-color: #222;
  color: #ffffff;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: project-img-title;
  border-radius: 50%;
  margin: 0 10px;
  border: 1px solid transparent;
  cursor: pointer;
}
.about-container .social-icon:hover {
  background: #ffffff;
  color: #222;
  border: 1px solid #222;
}
.about-container .social-icon:hover i {
  color: #222;
}
.about-container .social-icon i {
  color: #ffffff;
  margin-top: 8px;
  font-size: 15px;
}
.about-container .resume-btn {
  display: inline-block;
  background-color: #222;
  padding: 10px 20px;
  border: 2px solid #222;
  color: #ffffff;
  text-transform: uppercase;
  transition: 0.3s;
}
.about-container .resume-btn:hover {
  background-color: #ffffff;
  color: #222;
}

.services-section {
  background-color: #f2f2f2;
}
.services-section .service-col-container {
  padding: 25px 10px;
}
.services-section .service-col-container .service-item:hover .service-icon {
  width: 80px;
  margin: 0 auto;
  height: 80px;
  border: 1.7px solid #e9e9e9;
  border-radius: 50%;
  background-color: #f2f2f2;
  transition: 0.3s;
  background-color: #ffffff;
  box-shadow: 0 5px 30px #e3e3e3;
}
.services-section .service-col-container .service-item .service-icon {
  width: 80px;
  margin: 0 auto;
  height: 80px;
  border: 1.7px solid #e9e9e9;
  border-radius: 50%;
  background-color: #f2f2f2;
  transition: 0.3s;
}
.services-section .service-col-container .service-item .service-icon i {
  font-size: 30px;
  transform: translateY(80%);
}
.services-section .service-col-container .service-item .service-title {
  font-weight: 700;
  margin: 20px 0;
}

.portfolio-section .project-container {
  padding: 25px 10px;
}
.portfolio-section .project-container .project {
  position: relative;
  width: 100%;
  margin: 20px 0;
}
.portfolio-section .project-container .project img {
  display: block;
  width: 100%;
  height: 300px;
  border-radius: 5px;
}
.portfolio-section .project-container .project .project-img-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: 0.5s all ease;
  border-radius: 5px;
}
.portfolio-section .project-container .project .project-img-title button i {
  font-size: 25px;
  color: #222;
}
.portfolio-section .project-container .project .project-img-title .project-title {
  font-weight: 700;
  color: #222;
}
.portfolio-section .project-container .project .project-img-title button i {
  font-size: 25px;
}
.portfolio-section .project-container .project .text {
  color: #ffffff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.portfolio-section .project-container .project:hover img {
  opacity: 0.7;
}
.portfolio-section .project-container .project:hover .project-img-title {
  transform: scale(0.93);
}
.portfolio-section .project-container .modal {
  top: 15%;
}
.portfolio-section .project-container .modal .modal-dialog {
  max-width: 800px;
}

@media (max-width: 768px) {
  .modal {
    top: 5% !important;
  }
}
.skill-section {
  background-color: #f2f2f2;
}
.skill-section .skill-color {
  background-color: #222;
  opacity: 0.92;
}

.contact-section .contact-form-container {
  padding: 25px 10px;
}
.contact-section .contact-form-container form input, .contact-section .contact-form-container form textarea {
  width: 100%;
  padding: 15px;
  border: 0;
  background-color: #f3f4f6;
  outline: 0;
  border-radius: 4px;
  margin: 5px 0;
}
.contact-section .contact-form-container form .message-btn {
  display: inline-block;
  background-color: #222;
  padding: 10px 20px;
  border: 2px solid #222;
  color: #ffffff;
  text-transform: uppercase;
  transition: 0.3s;
}
.contact-section .contact-form-container form .message-btn:hover {
  background-color: #ffffff;
  color: #222;
}

@media (max-width: 768px) {
  .contact-form-responsive {
    width: 100% !important;
  }
}
@media (min-width: 769px) {
  .contact-form-responsive {
    width: 75% !important;
  }
}
footer {
  background-color: #222;
  color: #ffffff;
  text-align: center;
}
footer .col-footer-info {
  line-height: 15px;
}
footer hr {
  height: 0.1px;
  color: rgb(104, 104, 104);
}
footer .footer-email {
  line-break: anywhere;
}
footer .right-reserved {
  color: #e9e9e9;
  font-size: 14px;
}

@media (max-width: 768px) {
  .col-footer-info {
    margin: 15px 0;
  }
}/*# sourceMappingURL=index.css.map */