/**
* Template Name: MyResume
* Updated: Jul 27 2023 with Bootstrap v5.3.1
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
  font-size: 1.2em;
}

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 1%;
  bottom: 1%;
  z-index: 996;
  background: #FFC107; /*8000e9*/
  width: 4.5%;
  height: 4.5%;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 2em;
  line-height: 0;
  color:#fff;
}

.back-to-top:hover {
  background: #ffd34f;
  color:#424242
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #FFC107;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 2.5%;
  height: 4.5%;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 2% 0;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: auto;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -100%;
  }
}

@media (min-width: 991px) {
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 10px;
  transition: 0.3s;
  font-size: 1em;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 1em;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {
  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #51ff01;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #424242;
  background: #FFC107;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #4F4F4F; 
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #4F4F4F;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  position: fixed;
  left: 1%;
  top: 5%;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 1.5em;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
#home {
  width: 100%;
  height: 100vh;
  background: url("../img/background-lines-abstract-gold.png") top right no-repeat;
  background-size: 100%;
  background-position: center;
  position: relative;
}

@media (min-width: 992px) {
  #home {
    padding-left: 160px;
  }
}

#home:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#home h1 {
  margin: 0 0 0 0;
  font-size: 4em;
  font-weight: 700;
  line-height: 1;
  color: #45505b;
}

#home p {
  color: #45505b;
  margin: 1.5em 0 0 0;
  font-size: 1.6em;
  font-family: "Poppins", sans-serif;
}

#home p span {
  color: #D32F2F;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  #home {
    text-align: center;
  }

  #home h1 {
    font-size: 2em;
    line-height: 1.2;
  }

  #home p {
    margin-top: 1em;
    font-size: 1.3em;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 4% 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 3%;
}

.section-title h2 {
  font-size: 2.2em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2%;
  padding-bottom: 2%;
  position: relative;
  color: #45505b;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 12%;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 6%);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 4%;
  height: 3%;
  background: #0563bb;
  bottom: 0;
  left: calc(50% - 2%);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# resources
--------------------------------------------------------------*/
.resources .content h3 {
  font-weight: 700;
  font-size: 1.3em;
  color: #728394;
}

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

.resources .content ul li {
  margin-bottom: 2%;
  display: flex;
  align-items: center;
}

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

.resources .content ul i {
  font-size: 1.6em;
  margin-right: 5px;
  color: #0563bb;
  line-height: 0;
}

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

/*--------------------------------------------------------------
# Call
--------------------------------------------------------------*/
.call .count-box {
  padding: 3% 3% 2.5% 3%;
  margin-top: 3%;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.call .count-box i {
  position: absolute;
  top: -2.5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.4em;
  background: #0563bb;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8%;
  height: 4.8%;
}

.call .count-box span {
  font-size: 3.6%;
  display: block;
  font-weight: 600;
  color: #011426;
}

.call .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 1.4em;
}

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

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

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

.skills .progress-bar-wrap {
  background: #f2f3f5;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #0563bb;
}
/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 1.3;
  font-weight: 700;
  margin-top: 2%;
  margin-bottom: 2%;
  color: #45505b;
}

.resume .resume-item {
  padding: 0 0 2% 4%;
  margin-top: -0.1%;
  border-left: 0.2em solid #0563bb;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 1.125;
  font-size: 1.125em;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 1%;
}

.resume .resume-item h5 {
  font-size: 1em;
  background: #f7f8f9;
  padding: 0.3em 1.5em;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 1%;
}

.resume .resume-item ul {
  padding-left: 4%;
}

.resume .resume-item ul li {
  padding-bottom: 1%;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50px;
  left: -0.9em;
  top: 0;
  background: #fff;
  border: 0.2em solid #0563bb;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 1.5em;
  color: #4F4F4F;
  float: left;
  width: 1.8em;
  height: 1.8em;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 7%;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 0.5%;
  color: #45505b;
}

.contact .info p {
  padding: 0 0 0 7%;
  margin-bottom: 0;
  font-size: 0.8em;
  color: #728394;
}

.contact .info .email,
.contact .info .phone,
.contact .info .url {
  margin-top: 4%;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i,
.contact .info .url:hover i{
  background: #FFC107;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #45505b;
  transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #003b5c;
  color: #00b5e2;
  font-size: 0.7em;
  text-align: center;
  padding: 2% 0;
}

#footer h3 {
  font-size: 3.6em;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 1.5% 0;
}

#footer p {
  font-size: 1.5em;
  font-style: italic;
  padding: 0;
  margin: 0 0 4% 0;
}


#footer .copyright {
  margin: 0;
  flex: 1;
  text-align: center;
}

#footer .credits {
  font-size: 1.1em;
}