/********** Template CSS **********/
:root {
  --primary: #00B87B;
  --secondary: #314355;
  --light: #F2F2F2;
  --dark: #2C3E50;
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-lg-top.vh-100 {
    height: 100% !important;
  }
}

.fw-semi-bold {
  font-weight: 600;
}

.fw-medium {
  font-weight: 500;
}

.btn-square {
  width: 40px;
  height: 40px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 50px;
  height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-primary {
  color: #FFFFFF;
}

.typed-cursor {
  font-size: 25px;
  color: var(--light);
}

.back-to-top {
  position: fixed;
  display: none;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1;
  font-size: 30px;
  right: 30px;
  bottom: 30px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  color: var(--primary);
}

.back-to-top i:hover {
  color: var(--dark);
}

.back-to-top {
  -webkit-animation: action 1s infinite alternate;
  animation: action 1s infinite alternate;
}

@-webkit-keyframes action {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

@keyframes action {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

.title {
  position: relative;
}

.title::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  bottom: -4px;
  left: 0;
  border: 2px solid var(--light);
  border-radius: 10px;
}

.title::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 15px;
  border-radius: 2px;
  background: var(--light);
}

.progress {
  height: 5px;
}

.progress .progress-bar {
  width: 0px;
  transition: 2s;
}

.service-item {
  padding: 30px;
  text-align: center;
  background: var(--secondary);
}

.service-item i {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  color: var(--primary);
  transition: .5s;
}

.service-item:hover i {
  background: var(--primary);
  color: var(--light);
}

.portfolio-container img {
  width: 100%;
  height: 280px;
}

.portfolio-item {
  cursor: pointer;
}

.portfolio-item .portfolio-btn {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  font-size: 90px;
  background: rgba(44, 62, 80, .9);
  opacity: 0;
  transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  top: 30px;
  left: 30px;
}

.portfolio-item i {
  opacity: 0;
  transition: .3s;
  transition-delay: .3s;
}

.portfolio-item:hover i {
  opacity: 1;
}





.portfolio-slate {
  /* opacity: 0; */
  transform: translateY(calc(-100% - 20px));
  transition: opacity 300ms ease-in-out 0s, transform 300ms ease-in-out 0s;
}

/* .portfolio-item:hover .portfolio-slate {
  z-index: 999;
  transform: none;
  opacity: 1;
} */












.testimonial-carousel .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.testimonial-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--light);
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
}

.company-title {
  font-size: 18px;
  font-style: italic;
}

.experience ul {
  padding-left: 24px !important;
}

.profile-img {
  width: 400px;
  height: 400px;
}
























.btn-position{
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  position:absolute;
}

.modal.right.fade.in .modal-dialog {
  right:0 !important;
  transform: translateX(-50%);
  font: 14px !important;
}

.modal.right .modal-content {
  height:100%;
  width: 500px;
  padding: 32px;
  background-color: #011226;
  overflow:auto;
  border-radius:0;
}

.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  right: 0;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.right.fade.in .modal-dialog {
  transform: translateX(0%);
}

.modal.right.fade .modal-dialog {
  right: 0;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}
    
.modal.right .modal-header {
  margin-bottom: 32px;
  border-bottom: 1px solid #14202b;
  padding: 0;
}

.modal.right .modal-header .close {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

.modal.right .modal-header .modal-title {
  color: #3f566e;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}


.project-title, .project-detail, .project-tech, .project-url, .project-github {
  padding-bottom: 30px;
}

.project-title h3 {
  font-weight: bold;
}

.project-img {
  width: 100%;
  height: 300px;
  border-radius: 11px;
  object-fit: cover;
}

.project-url a {
  font-weight: 600;
  color: #3f566e !important;
  cursor: pointer;
}

.project-github a {
  font-weight: 600;
  color: #3f566e !important;
  cursor: pointer;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
}

.tech-item {
  background-color: #13283e;
  padding: 6px 13px;
  border-radius: 4px;
  text-transform: capitalize;
  margin: 6px;
  color: #e1e1e1;
  font-weight: 700;
}



.open-project {
  background-color: #3f566e;
  position: fixed;
  width: 100%;
  left: 0px;
  bottom: 0px;
  margin: 0px;
  padding: 17px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-align: center;
}

.open-project a {
  text-decoration: underline;
  cursor: pointer;
}



/* .modal.right .modal-header::after {content:""; display:inline-block;} */




    .modal.right .close {text-shadow:none; opacity:1; color:#ff4d4d; font-size:26px}
/*  form-control  */
    
    .form-control {border-radius:0; box-shadow:none}
    .form-control:focus {box-shadow:none}
    
    
/*  Button  */
    
    .btn {border-radius:0}