/* General */

@import url('bootstrap.min.css');
@import url('aos.css');
@import url('magnific-popup.css');


html{
  -webkit-font-smoothing: antialiased;
}

body{
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.625em;
  color:#767676;
}

::-webkit-scrollbar{
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #070d63;
}

::selection{
  background-color:#070d63;
  color:#fff;
}

-webkit-::selection{
    background-color:#070d63;
    color:#fff;
}

::-moz-selection{
    background-color:#070d63;
    color:#fff;
}

/* Text style */

h1,
.h1{ 
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 4.125rem;
  font-weight: 700;
  line-height: 1.05;
  color: #343434;
}

h2,
.h2{ 
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.2;
  color: #343434;
  margin:2rem 0;
}

h3,
.h3{ 
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.925rem;
  line-height: 1.25;
  color: #343434;
  margin:1.5rem 0;
}

h4,
.h4{ 
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.325rem;
  line-height: 1.2;
  color: #343434;
  margin:1.5rem 0;
}

h5,
.h5{ 
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #343434;
  margin:1.2rem 0;
}

h6,
.h6{ 
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #343434;
  margin:1rem 0;
  text-transform: uppercase;
}


h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a{
  color:inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover{
  text-decoration: none;
}

p{
  margin-bottom: 1rem;
}

ul{
  list-style: none;
  padding-left: 0;
}

a {
  color:#070d63;
  -webkit-transition: color .3s ease-out;
       -o-transition: color .3s ease-out;
          transition: color .3s ease-out;
}

a:hover,
a:focus {
  color:#070d63;
  outline: none;
}

a:focus{
  text-decoration: none;
}

.lead{
  line-height: 1.9;
  font-size: 1.125rem;
}


/* Buttons */

.btn{
  font-family: 'Montserrat', sans-serif;
  position: relative;
  display: inline-block;
  border:0.2em solid #070d63;
  border-radius: 30px;
  padding:1.2em 2.4em 1.15em;
  font-size: 0.875em;
  color:#fff;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  background-color:#070d63;
  border-width: 1px;
  -webkit-transition: all .3s ease-out!important;
          transition: all .3s ease-out!important;
}

.btn:hover,
.btn:focus,
.btn:active{
  color: #000;
  background-color: transparent;
  border-color: #070d63;
  -webkit-box-shadow:none;
  box-shadow: none;
  outline: none!important;
}

.btn-white{
  background-color: #fff;
  border-color: #fff;
  color: #343434;
}

.btn-white:hover{
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-b-white{
  background-color: transparent;
  border-color: #fff;
}

.btn-b-white:hover{
  background-color: #fff;
  color: #000;
}

.btn-bg-dark:hover,
.btn-bg-dark:focus{
  color: #fff;
  border-color:#fff;
}

/* Loader */

.loader{
  position:absolute;
  z-index: 10;
  z-index: 100;
  left: 0;
  width: 100%;
  top:0;
  height: 100%;
  background: #fff;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #070d63;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}


/* Backgrounds */


.bg-light{
  background: #f5f5f5!important;
}

.bg-dark{
  background:#1d1d1d!important;
  color:#cfdacf;
}

.bg-dark .row-experience:nth-child(even){
  background-color:#272727;
}

.bg-dark .btn:hover,
.bg-dark .btn:focus{
  color: #fff
}

.bg-primary{
  background:#070d63!important;
  color:#fff;
}

.bg-dark .progress{
  background: #383838;
}


/* Text Colors */


.text-dark{
  color:#343434!important;
}

.text-white{
  color:#fff!important;
}

.text-gray{
  color:#767676!important;
}

.text-primary{
  color:#070d63!important;
}

.text-light-gray{
  color:#cfdacf;
}

.text-yellow{
  color:#ffd633;
}
.text-green{
  color: #00b341;
}


/*-------------------------------------------------------------------------------
Navbar
-------------------------------------------------------------------------------*/

.navbar{
  position: absolute;
  z-index: 10;
  width: 100%;
  padding: 0 3rem;
  border-bottom: 1px solid rgba(52,52,52,0.1);
  height:4.7rem;
}

.navbar{
  padding: 0 1.5rem;
}

@media(min-width: 992px){
  .navbar{
    padding: 0 3rem;
  }
}

.navbar,
.navbar a,
.navbar a:hover,
.navbar a:focus{
  color:#343434;
}

.toggler{
 width:2rem;
 height: 2rem;
 padding:0;
 background: none;
 border:0;
}

.toggler:focus{
  outline: none;
}

.toggler-icon{
  display: block;
  border-top:2px solid #343434;
  margin-top: 0.5rem;
}

.toggler-icon:first-child{
  margin-top: 0;
}

.navbar-brand{
  float: left;
  font-family: 'Montserrat', sans-serif;
  font-size:1.875rem;
  font-weight: 700;
  color:#fff;
  margin-right: 4rem;
  padding:0;
  line-height: 1;
}

.navbar-brand:hover,
.navbar-brand:focus{
  color:#fff;
}

.navbar ul{
  margin-bottom:0;
}

.navbar-desctop .social-icons{
  margin:0.38rem 0 0 -1.5rem;
}

.navbar-desctop .phone{
  position: relative;
  top:0.3rem;
  margin-left: 4rem;
}

.social-icons{
  margin-left: -1.5rem;
}

.social-icons li{
  float: left;
  margin-left: 1.5rem;
}


.social-icons ion-icon{
  display: block;
  font-size:1.2rem;
  color:#343434;
  transition: all 0.3s ease;
}

.social-icons ion-icon:hover{
  color: #070d63;
}

ul.social-icons {
  list-style: none;   /* removes dots */
  margin: 0;
  padding: 0;
  display: flex;      /* makes them align horizontally */
  gap: 10px;          /* spacing between icons */
}

ul.social-icons li {
  display: inline-block; /* ensures no bullets */
}


/* Navbar Desctop */


.navbar-desctop:before{
  content:'';
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 0;
  background:#fff;
  transition: all 0.3s ease;
}

.navbar-nav-desctop{
  font-family: 'Montserrat', sans-serif;
  font-size:0.8rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top:0.3rem;
}

.nav-link{
  padding: 0;
}

.navbar-nav-desctop li a{
  color: #343434;
  transition:all 0.3s;
}

.navbar-nav-desctop li a:hover{
  text-decoration: none;
}

.navbar-nav-desctop > li{
  position: relative;
  float: left;
  margin-right: 2.1rem;
} 

.navbar-nav-desctop > li > a{
  display: flex;
  align-items: center;
}

.navbar-nav-desctop > li > .active,
.navbar-nav-desctop >  li:hover > a{
  color:#767676;
}

.navbar-nav-desctop li ul{
  opacity: 0;
  visibility: hidden;
  padding:0.7rem 1.8rem;
  position: absolute;
  top:85%;
  background:#1a1c26;
  color:#000;
  min-width: 12rem;
  margin-left: -1.5rem;
  transition:all 0.3s linear;
}

.navbar-nav-desctop li:hover ul{
  top:100%;
  opacity: 1;
  visibility: visible;
}

.navbar-nav-desctop li ul li{
  margin:1rem 0;
}

.navbar-nav-desctop li ul li a{
  opacity: 0.5;
  display: block;
}

.navbar-nav-desctop li ul .active a,
.navbar-nav-desctop li ul li:hover a{
  opacity: 1;
}



/* Navbar Mobile */


.click-capture{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  background: rgba(0,0,0,0.3);
  transition: opacity 0.5s;
}

.navbar-mobile{
  display: block;
  align-items: baseline;
  flex-wrap: unset;
  padding:1.5rem 2.6rem 1.3rem;
  position: fixed;
  top:0;
  bottom:0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: -ms-flexbox;
  box-shadow:0 0 50px rgba(0,0,0,0.1);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.navbar-mobile .social-icons{
  margin-top:0;
}

.navbar-mobile .close{
  position: absolute;
  right: 1rem;
  top:0.5rem;
  font-size: 3rem;
  color: #343434;
  transition:all 0.3s ease;
  cursor: pointer;
}

.navbar-mobile .close:hover{
  opacity: 1;
}

@media (min-width: 576px){
  .navbar-mobile{
    width: 50%;
    max-width: 32rem;
  }
}

.navbar-mobile-footer{
  margin-top: auto;
}

.navbar-nav-mobile{
  display: block;
  font-size:3.6vh;
  margin-top: 8vh;
  font-weight: 600;
}

.navbar-nav-mobile  li{
  margin-bottom: 5vmin;
}

.navbar-nav-mobile li a{
  color:#a7a7a7;
}

.navbar-nav-mobile li .active,
.navbar-nav-mobile  li a:hover{
  color:#343434;
}

.menu-is-open{
  overflow:hidden;
}

.menu-is-open .navbar-mobile{
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.menu-is-open .click-capture{
  visibility: visible;
  opacity: 1;
}


/* Navbar Fixed */

.navbar.fixed{
  position: fixed;
  z-index: 10;
  top:0;
  box-shadow:0 0 30px rgba(0,0,0,0.1);
}

.navbar.fixed:before{
  height: 100%;
}


/* Navbar White */


.navbar-white{
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-white:not(.fixed) .phone,
.navbar-white:not(.fixed) a,
.navbar-white:not(.fixed) a:hover{
    color: #fff;
}

.navbar-white:not(.fixed) .navbar-nav-desctop li a{
  color: #fff;
}

.navbar-white:not(.fixed) .navbar-nav-desctop > .active > a,
.navbar-white:not(.fixed)  .navbar-nav-desctop > li > .active, 
.navbar-white:not(.fixed)  .navbar-nav-desctop > li:hover > a {
    color: #070d63;
}

.navbar-white:not(.fixed) .social-icons ion-icon{
  color: #fff;
}

.navbar-white:not(.fixed) .social-icons ion-icon:hover{
  color: #070d63;
}

.navbar-white:not(.fixed) .toggler-icon{
  border-color: #fff;
}


/*-------------------------------------------------------------------------------
Main
-------------------------------------------------------------------------------*/



/* Masthead */



.masthead{
  position: relative;
  min-height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
  padding:9rem 0 5rem 0;
  background-position: left top;
  background-size: cover;
}

.opener{
  position: relative;
  z-index: 1;
  width: 100%;
}

.opener .modal-content{
  background-color: rgba(255,255,255,0.9);
}

/* Sections */

.section{
  position: relative;
  padding:9rem 0;
}

.section-sm{
  padding: 6rem 0;
}

.pp-section{
  background: #fff;
  background-position: 50%;
  background-size: cover;
  padding:8rem 0 6rem;
}

.section:not(#home) .intro{
  opacity: 0;
  transform:translateY(130px);
  transition:all 1.3s;
}

.section:not(#home) .intro.animate{
  opacity: 1;
  transform:translateY(0);
}

.pp-scrollable{
  padding:0;
  overflow-x: hidden;
}

.pp-scrollable .intro{
  width: 100%;
  height: 100%;
  white-space: nowrap;
}

.pp-scrollable .intro:before{
  content:'';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
}

.pp-scrollable .scroll-wrap{
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  padding: 8rem 0 6rem;
  white-space: normal;
}

.intro .h1{
  font-size: 4.125rem;
}

.intro h2{
  font-size: 2.92325rem;
}

#pp-nav li, .pp-slidesNav li{
  margin:14px;
}

#pp-nav span, .pp-slidesNav span{
  border:0;
  background-color: #343434;
}

#pp-nav.pp-nav-white span, .pp-slidesNav span{
  background-color: #fff;
}

#pp-nav li .active span, .pp-slidesNav .active span{
  background-color: #070d63!important;
}

#pp-nav li .active span, .pp-slidesNav-yellow .active span{
  background-color: #ffd633;
}

#pp-nav li .active span, .pp-slidesNav-green .active span{
  background-color: #00b341;
}

.section h2{
  margin-top: 0;
}

.bg-responsive{
  position: absolute;
  height: 100%;
  top:0;
  padding: 0;
}

.masked .btn:hover,
.masked .btn:focus{
  color: #fff;
}

.masked:before{
  content:'';
  position: absolute;
  top:0;
  width: 100%;
  height: 100%;
  background:rgba(52,52,52,0.35);
  }

@media (max-width: 767px){
  .masked-sm:before{
    content:'';
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
    background:rgba(52,52,52,0.35);
  }
}

.jarallax {
    position: relative;
    z-index: 0;
}

.bg-responsive.jarallax{
  position: absolute!important
}

.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


/* About */


.experience{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.experience-number{
  display: inline-block;
  font-size: 8rem;
  line-height: 1;
}

.experience-number.v2{
  position: relative;
  top:-1.4rem;
  color: #fff;
  padding:0 0.4rem;
  font-weight: 500;
}

.experience-number.v2:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0.7rem;
  bottom: 0.6rem;
  background-color: #070d63;
}

.experience-number.v3:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0.7rem;
  bottom: 0.6rem;
  background-color: #ffd633;
}

.text-parallax{
  background: url(../img/bg/text-parallax.jpg) 50% 50% no-repeat;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-parallax2{
  background: url(../img/bg/text-parallax.jpg) 50% 50% no-repeat;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.row-experience{
  padding:2rem 0;
}

.row-experience:nth-child(even){
  background: #fff;
  border-color:transparent;
}

.row-experience p{
  margin-bottom: 0;
}

.progress{
  height: 0.5rem;
  background-color: #f2f2f2;
}

.progress-bar{
  position: relative;
  background-color: transparent;
}

.progress-bar:before{
  background:#070d63;
  content:'';
  width:100%;
  height: 100%;
  transition:all 0.3s ease;
}

.lg.progress-bar:before{
  background: #ffd633;
}

.progress-bar[data-aos="width"]:before{
  width: 0;
}

.aos-animate.progress-bar[data-aos="width"]:before{
  width: 100%;
}


/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out; 
  -moz-transition: all 0.15s ease-out; 
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out; 
  -moz-transition: all 0.15s ease-out; 
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-iframe-holder .mfp-content{
  max-width: 1170px;
}

/** Additional sections */
 

  section.job {
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  section.job:nth-child(odd) {
    animation-delay: 0.3s;
  }
  section.job:nth-child(even) {
    animation-delay: 0.5s;
  }
  section.job:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
  }
 
  .company {
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
    font-style: italic;
  }
  .dates-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
  }
 
  ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
  }
  ul li {
    margin-bottom: 8px;
  }
  
  .skills {
    font-weight: 600;
    color: #555;
    font-style: normal;
  }


  /*Education*/
    section.edu {
    background: white;
   
  }
  
  /* Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
/* photo */


    img {
    border-radius: 50%;
   position: relative;
    display: block;
    margin: 10px;
    padding: 0px;
 
}

/* Skill tags tabs */

/* Style the tab */
.tab {
  overflow: hidden;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  color: #fff;
  text-transform: uppercase;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: none;
color:#00b341;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: none;
  color:#00b341;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0px;
  border-top: 1px solid #00b341;
  border-right: none;
}

.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Skill tags */
.skills.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.skills.tags li {
  background:none; 
  color:#00b341;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  border: 1px solid  #cfdacf;
}


/* Hover effect */
.skills.tags li:hover {
  background: none;
  color:#cfdacf;
  cursor: default;
   border: 1px solid #00b341;

}


/** scroll down */

.scroll-down-dec {
    position: absolute;
    left: 50px;
    z-index: 10;
    bottom: 60px;
}

.scroll-down-dec .scroll-down-wrap {
    border: none;
}

.scroll-down-wrap {
    float: left;
    height: 100%;
    position: relative;
    margin-left: 50px;
    padding-right: 50px;
    padding-top: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.mousey {
    float: left;
    width: 20px;
    height: 30px;
    border-radius: 6px;
    padding: 0 6px;
    border: 2px solid rgba(255, 255, 255, 0.41);
    box-sizing: border-box;
}

scroll animation {
    opacity: 0.112365;
    transform: translateY(8.87635px);
}

.scroll-down-wrap span {
    float: left;
    margin-left: 20px;
    position: relative;
    top: 8px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    color:#ffd633;
}

.scroller {
	position: relative;
	left: 50%;
	top: 6px;
	margin-left: -1.5px;
	width: 3px;
	height: 6px;
	border-radius: 25%;
	background-color: #ffd633;
	animation-name: scroll;
	animation-duration: 2.2s;
	animation-timing-function: cubic-bezier(.15, .41, .69, .94);
	animation-iteration-count: infinite;
}
@keyframes scroll {
	0% {
		opacity: 0;
	}
	10% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(10px);
		opacity: 0;
	}
}
