/**
* Template Name: Personal
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  background-color: #040404;
  color: #fff;
  position: relative;
  background: transparent;
  cursor: default;
}

body::before {
  content: "";
  position: fixed;
  background: #040404 url("../img/bg.jpg") top center no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  /* z-index: -1; */
}

@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}

a {
  color: #fd0303;
  text-decoration: none;
}

a:hover {
  color: #fd0303;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: hidden;
  cursor: default;
  /* margin-right: 60px; */
}

#header * {
  transition: ease-in-out 0.3s;


}

#header h1 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  cursor: none;
}

#header h1 a,
#header h1 a:hover {
  color: #fff;
  line-height: 1;
  display: inline-block;
  font-size: smaller;

}

#header h2 {
  font-size: 24px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);

}

#header h2 span {
  color: #fff;
  border-bottom: 2px solid #fd0303;
  padding-bottom: 6px;

}

#header .container img {
  width: 100px;
  padding: 0;
  margin: 0;

}

#header .social-links {
  margin-top: 40px;
  display: flex;

}

#header .social-links a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;

}

#header .social-links a:hover {
  background: #fd0303;
}

@media (max-width: 992px) {
  #header h1 {
    font-size: 36px;
  }

  #header {
    display: flex;
    align-items: center;
    margin-top: 0px;
  }

  #header h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #header .social-links {
    margin-top: -10px;
  }

  #header .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 80px;
  }
}

/* Header Top */
#header.header-top {
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

#header.header-top .social-links,
#header.header-top h2 {
  display: none;
  cursor: pointer;
}

#header.header-top h1 {
  margin-right: auto;
  font-size: 36px;
}

#header.header-top .container {
  display: flex;
  align-items: center;
}

#header.header-top .navbar {
  margin: 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  #header.header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 80px;
    margin-top: 0px;
  }

  #header.header-top h1 {
    font-size: 26px;
  }

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-top: 35px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li+li {
  margin-left: 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #fd0303;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  right: 15px;
  top: 15px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 50px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 998;
  margin-top: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 45px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.navbar-mobile li {
  padding: 12px 20px;
}


.navbar-mobile li+li {
  margin: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 25px;
  position: relative;

}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 140px;
  bottom: 100%;
  opacity: 0;
  transition: ease-in-out 0.4s;
  z-index: 2;
}

section.section-show {
  top: 100px;
  bottom: auto;
  opacity: 1;
  padding-bottom: 0px;
}

section .container {
  z-index: 5;
  background: rgba(0, 0, 0, 0.9);
  padding: 30px;
}

@media (max-width: 768px) {
  section {
    top: 120px;
  }

  section.section-show {
    top: 80px;
  }
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 90px;
  height: 1px;
  display: inline-block;
  background: #fd0303;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: -15px 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #dfdddd;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-me {
  z-index: -1;
}

.about-me .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #fd0303;
}

.about-me .content ul {
  list-style: none;
  padding: 0;
}

.about-me .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about-me .content ul strong {
  margin-right: 10px;
}

.about-me .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #fd0303;
  line-height: 0;
}

.about-me .content p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------
 # FOOTER STYLE 
/* -------------------------------------------------------------- */
.row-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  margin-left: -6px;
  height: 325px;
  z-index: -1;


}

.container-footer {
  background-color: rgb(0, 0, 0);
  margin-top: 50px;
  margin-left: 0px;
  margin-bottom: 0px;
  padding: 0px;
  height: 100%;



}

.footer-col a {
  color: rgb(142, 142, 143);
  width: 50px;
  margin-left: 0px;
  padding-left: 0px;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: rgb(196, 144, 144);
  padding-left: 10px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0px;
}

.footer-col li {
  padding-bottom: 12px;
  color: rgb(255, 255, 255);
}

.footer-col h4 {
  color: white;
  font-size: large;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 5px;
  margin-bottom: 10px;
  text-transform: uppercase;

}

.footer-col h6 {
  color: rgb(97, 94, 94);
  margin-left: 60px;
  margin-top: 5px;

  font-family: Arial, Helvetica, sans-serif;

  text-transform: uppercase;
}

.footer-col .vk-logo {
  margin-top: 5px;
  margin-left: 30px;
}

.footer-col {
  margin-left: 20px;
  padding-right: 40px;
  padding-left: 50px;
  padding-top: 20px;
  padding-bottom: 10px;
  width: 100%;
}

.footer-col-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 10px;
  margin-left: -65px;
}

.footer-col i {
  font-size: x-large;
  margin-top: 2px;
  margin-right: 10px;
  color: rgb(243, 11, 11);
}

/* footer-follow-area */

.footer-col-follow {
  width: 100%;

}

.social-links-foot {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-right: 2px;
}

.footer-col-follow h4 {
  color: white;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: large;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.footer-col-follow i {
  font-size: x-large;
  width: 20px;
  margin-top: 2px;
  margin-right: 8px;
  color: rgb(243, 11, 11);
  transition: all 0.1s ease;

}

.footer-col-follow i:hover {
  color: rgb(243, 243, 159);

}

.help-contant {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: 30px;
  width: 698px;
}

@media (max-width:600px) {
  .row-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(3, 2, 2);
    margin-left: 0px;
    height: 500px;
  }

  .footer-col-img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-left: -10px;
    margin-bottom: 10px;
    border-bottom: 1px solid red;
  }

  .help-contant {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    /* border-bottom: 1px solid red; */
    margin-bottom: 20px;
    padding: 6px;

  }

  .footer-col {
    display: flex;
    flex-direction: column;
    justify-content: right;
    padding: 5px;
    margin: 10px;
    margin-left: 10px;
    width: 100%;
  }


  .footer-col-follow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .footer-col-follow h4 {
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: large;
    font-family: Arial, Helvetica, ssans-serif;
    text-transform: uppercase;

  }

  .footer-col h6 {
    color: rgb(97, 94, 94);
    margin-left: 10px;
    margin-top: 5px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
  }

  .footer-col-follow i {
    font-size: larger;

    margin-top: 2px;
    margin-right: 1px;
    color: rgb(243, 11, 11);
    transition: all 0.1s ease;

  }

  .footer-col-follow i:hover {
    color: rgb(243, 243, 159);

  }


}

/* footer-follow-area-end*/



/* --------------------------------------------------------------
 # FOOTER STYLE -end
/* -------------------------------------------------------------- */

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  transition: ease-in-out 0.3s;
}

.count-box {
  border-radius: 10px;
}

.count-box .purecounter p {
  color: #e80404;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  color: #fd0303;
  border-radius: 50px;
  line-height: 0;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #fff;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.counts .count-box:hover {
  background: rgba(255, 0, 0, 0.204);
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-size: larger;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: rgba(255, 255, 255, 0.2);
}

.skills .progress-bar {
  width: 1px;
  height: 7px;
  transition: 1.8s;
  background-color: #ce0a0a;
}


/*--------------------------------------------------------------
# Interests
--------------------------------------------------------------*/
.interests .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: ease-in-out 0.3s;
}

.interests .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.interests .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  color: #fff;
}

.interests .icon-box:hover {
  background: rgba(255, 0, 0, 0.204);
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;

  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.12);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #c43131e7;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #dededeea;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.25);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  color: #7c7c7c;
  background: rgba(255, 255, 255, 0.088);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fd0303;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/


.tit-image img {
  position: relative;
  width: 100%;
  /* top: 80px; */
  right: 0px;

}

.gallery h1 {
  text-align: center;
  padding-top: 50px;

  font-family: sans-serif;
}

.gallery h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0px;
  padding-bottom: 10px;
  margin-bottom: 0px;
  color: rgb(158, 162, 166);
  font-family: sans-serif;
  font-size: large;
  text-transform: capitalize;
  text-align: center;

}

.image-book {

  display: flex;
  position: relative;
  top: 45px;
  /* margin-top: 100px; */
  flex-direction: column;

}

.section-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 33.33%;
  position: relative;


}

/* .section-gallery img:hover{
  scale: 1.2;
  
} */

.image-book img {
  position: relative;
  width: 33%;
  padding: 2px;
  transition: 0.6s ease-in-out;

}


.head-gly {
  position: absolute;
  top: 100px;
  left: 40px;
  text-transform: uppercase;
  color: rgb(20, 19, 19);
  padding: 10px;
  margin-left: 30px;

}

.display-1 {
  width: 400px;

  margin-left: 0px;
}

.head-gly h1 {
  color: rgb(80, 80, 80);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  scale: (1.2);
}

/* .head-gly h1:hover {
  transform: scale(1.2);
  color: rgb(243, 243, 244);
  top: 30px;

} */

@media (max-width: 768px) {
  .head-gly {

    position: absolute;
    top: -10px;
    left: 0px;
    text-transform: uppercase;
    color: rgb(20, 19, 19);
    /* padding: 3,10px; */
    margin-left: 10px;

  }


  .display-1 {
    width: 180px;

    margin-top: 20px;
  }

  .gallery h1 {
    text-align: center;
    padding-top: 10px;


  }
}



/*--------------------------------------------------------------
# Gallery-close
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/


.cv_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;



}

.cv_container img {

  width: 1000px;
  margin-right: 20px;
  margin-bottom: 40px;

}

.cv_container .section-title {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-right: 700px;
  margin-left: 15px;

}

@media (max-width: 600px) {
  .cv_container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;


  }

  .cv_container img {

    width: 360px;
    margin: 0px;

  }

  .cv_container .section-title {
    display: flex;
    flex-direction: column;
    align-items: start;

    margin-top: 20px;
    margin-right: 105px;

  }
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: rgba(204, 204, 204, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #fd0303;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #fff;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #fd0303;
  border-color: #fd0303;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #fd0303;
}

.services .icon-box:hover .icon::before {
  background: #fd0303;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 3px 10px 3px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #fd0303;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fd0303;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
}

.portfolio-details .container {
  padding-top: 20px;
  padding-bottom: 40px;
}

.portfolio-details .portfolio-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;

}

.portfolio-details .portfolio-info {
  padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.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-info p {
  font-size: 15px;
  padding: 15px 0 0 0;
}

@media (max-width: 600px) {
  .portfolio-details img {
    padding-top: 20px;
    width: 350px;
    /* height: 150px; */
  }
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-info {
    padding-top: 20px;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fd0303;
}

.cv_download_button{
  border: 1px solid red;
  border-radius: 20px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}
.cv_download_button:hover{
  background-color: #cf0a0a72;
  color: #d3d1d1;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  padding: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.contact .info-box i.bx {
  font-size: 24px;
  color: #fd0303;
  border-radius: 50%;
  padding: 14px;
  float: left;
  background: rgba(255, 255, 255, 0.1);
}

.contact .info-box h3 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin: 10px 0 8px 68px;
}

.contact .info-box p {
  padding: 0;
  color: #fff;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}

.contact .info-box .social-links {
  margin: 5px 0 0 68px;
  display: flex;
}

.contact .info-box .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  margin-right: 12px;
  transition: 0.3s;
}

.contact .info-box .social-links a:hover {
  color: #fd0303;
}

.contact .php-email-form {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.contact .php-email-form .error-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #fd0303;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #fd0303;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  transition: 0.3s;
  color: #fff;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.11);
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #fd0303;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #fd0303;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Credits
--------------------------------------------------------------*/
.credits {
  position: fixed;
  /* margin-left: 665px;
  margin-top: 10px; */
  /* left: 10px; */

  right: 0;
  bottom: 0;
  /* padding: 10px; */
  /* text-align: right; */
  /* padding-top: 90px;
  padding-right: 185px;
  padding-top: 200px;
  /* margin-right: 88px; */
  font-size: 15px;
  color: #fff;
  z-index: 99999;
  transform: rotate(-90deg);
}

@media (max-width: 992px) {
  .credits {
    text-align: center;
    padding: 0px;
    position: fixed;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.8); */
  }
}

.credits a {
  color: #fd0303;
  transition: 0.3s;
}

.credits a:hover {
  color: #fff;
}


.gallery_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.social-links-gal {
  margin-top: 10px;
  display: flex;
}

.social-links-gal a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 0, 0, 0.514);
  color: #fff;
  line-height: 1;
  margin-right: 15px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: ease-in-out 0.2s;
}

.social-links-gal a:hover {
  color: #0220fec0;
}

@media (max-width: 600px) {
  .gallery_content {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .social-links-gal {
    margin-top: 2px;
    display: flex;
    align-items: center;
  }

  .social-links-gal a {
    font-size: 16px;
    transition: ease-in-out 0.5s;
    background: rgba(255, 255, 255, );
    color: #fff;
    line-height: 1;
    margin-right: 10px;
    margin-bottom: 8px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
  }

  .social-links-gal a:hover {
    background: #fd0303;
  }

}


/* .cursor_1 {
  
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1px solid white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .1s;
  cursor: pointer;
  

}

.cursor_2 {
  
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #f70000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  

} */
@media (min-width: 600px) {
  .cursor_1 {

    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid white;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .1s;
    cursor: pointer;


  }

  .cursor_2 {

    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #f70000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;

  }
}

/* ---------------------------------------------------------------- */

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.8;
}

#myImg:hover {
  opacity: 1;
}

/* The Modal (background) */
.modal {
  /* display: none; Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 9;
  /* Sit on top */
  padding-top: 80px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
/* #caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
} */

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0)
  }

  to {
    -webkit-transform: scale(1)
  }
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 55px;
  right: 300px;
  color: #f1f1f1;
  font-size: 60px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #f50b0b;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media (max-width: 600px) {
  .modal-content {
    width: 100%;
  }

  .close {
    top: 600px;
    margin-left: 0px;
    margin-right: 0px;
    left: 0px;
    right: 0px;
    color: #ff0000;
    font-size: 60px;
    font-weight: bold;
    transition: 0.3s;
  }

  #myModal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .modal-content {
    width: 100%;
  }

  .close {
    top: 600px;
    margin-left: 0px;
    margin-right: 0px;
    left: 0px;
    right: 0px;
    color: #ff0000;
    font-size: 60px;
    font-weight: bold;
    transition: 0.3s;
  }

  #myModal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}