*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100vw;
    overflow-x: hidden;
}
  
body {
    width: 100vw;
}

.page{
    position: relative;
}

.header{
    color: white;
    background: transparent;
    position: fixed;
    z-index: 2;
    top: 0;
    transition: 0.3s ease-in-out;
    box-shadow: 0.3s ease;
    height: 80px;
    width: 100%;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.scrolled{
    height: 50px;
    background: black;
    transition: .3s ease-in-out;
}

.header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    padding: 0px 20px;
    
}

.header-content a.logo {
  transition: text-decoration-thickness 0.4s ease;
  font-size: 18px;
  color: white;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.header-content a.logo:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
}

.nav{
    display: flex;
    width: 40%;
}

.nav-list{
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-link a{
    color: white;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    font-size: 15px;
}

.nav-link a:hover{
    border-bottom: 2px solid white;
    transition: 0.3s;
}

.menu-icon{
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon .bar{
    width: 25px;
    height: 3px;
    background-color: red;
    margin: 4px 0;
    transition: 0.4s;
}

@media (max-width:768px){
    .nav{
        display: none;
        flex-direction: column;
        background-color: black;
        width: 100%;
        position: relative;
        top: 80px;
        left: 0;
        text-align: center;
    }
    .nav-list{
        flex-direction: column;
        width: 100%;
    }
    .nav-link a{
        padding: 12px;
        border-bottom: 1px solid white;
        width: 100%;
        display: block;
    }
    .menu-icon{
        display: flex;
    }
    .nav.show{
        display:flex;
       
    }
}


.about{
    background-image: url(Images/CardistryBGD2.jpg);
    background-size: cover;
    height: 115vh;
    position: relative;
    top: -80px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
}

.about-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.title{
    font-family:'Roboto Condensed', sans-serif;
    color:white;
    font-size: 9vw;
}

.Intro{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5vw;
    color: white;
    margin-top: 10px;
}

.arrow-wrap {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translate(-50%, -25px);
    -webkit-animation: arrow 0.5s 1s infinite ease-out alternate;
    animation: arrow 0.5s 1s infinite ease-out alternate;
    text-align: center;
}


.arrow {
    position: relative;
    padding: 15px;
    border-left: solid 5px red;
    border-bottom: solid 5px whitesmoke;
    display: block;
}

.arrow-down {
    transform: rotate(-45deg);
    position: relative;
    margin-top: -15px;
}

@keyframes arrow {
    0% {
      bottom: 0px;
    }
    100% {
      bottom: 10px;
    }
}

/* Hover effect */
.arrow-wrap:hover {
    animation-play-state: paused;
}

/* Responsive styling for mobile screens */
@media (max-width: 768px) {
    /* Place arrow differently on mobile */
    .arrow-wrap {
        bottom: 30px;
        
    }
}

.overview h2{
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
    font-size: 3vw;
    margin: 8px;
    padding: 30px;
}

.Avatar{
    vertical-align: middle;
    width: 145px;
    height: 140px;
    border-radius: 50%;
    margin-left: 15px;
}

.text-buttons{
    display: flex;
    flex-direction: column;
}

.overview{
    background-image: url(Images/CardBG2.jpg);
    background-size:contain;
    margin: -80px 0 0 0;
    padding:0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
    
}

.OV{
    display: flex;
    align-items: flex-start;
    max-width: 1150px;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: left;
}

.description{
    margin-left: 25px;
    font-size: 1.2em;
}

.buttons{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.OV button{
    background: rgb(165, 1, 1);
    color: #fff;
    font-weight: 600;
    border: none; 
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    margin-top: 20px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.OV button:hover{
    background-color: #8a0000;
    transform: translateY(-2px); 
    box-shadow: 0px 6px 8px rgba(0,0,0,0.2);
}
 
@media (max-width: 768px) {
    .overview {
        padding: 0px;
    }
    
    .OV {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .content{
        flex-direction: column;
    }

    .Avatar {
        margin-left: 0;
        margin-bottom: 20px;
        width: 120px;
        height: 120px;
    }

    .description {
        margin-left: 0;
        font-size: 4vw;
    }

    .buttons{
        flex-direction: column;
        align-items: center;
    }

    .OV button{
        width: 150px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .OV{
        align-items: center;
    }

    h2 {
        font-size: 6vw;
    }
    
    .description {
        font-size: 5vw;
    }

    .Avatar {
        margin: 0;
        width: 100px;
        height: 100px;
    }

    .OV button{
        width: 100%;
        height: 16px;
        padding: 10px;
    }
    .buttons{
        align-items: center;
    }
}


/* Section Styles */
.overall {
    padding: 80px 0px;
    color: rgb(68, 44, 44);
    text-align: center;
}

.container {
    margin: 0 auto;
    display: flex;
    gap:20px;
    width: 800px;
}
  
  /* Cards */
.card-column {
    width: 50%;
    float: left;
    padding: 1%;
    box-sizing: border-box;
}
  
.column-1 {
    padding-top: 200px;
}
  
.card {
    width: 92%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background: #EB5160;
    color: #fff;
    cursor: pointer;
    margin-bottom: 60px;
}
  
.border {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 6px;
    border: 1px solid #fff;
    opacity: 0.5;
    left: -6px;
    top: -6px;
}
  
.card h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    position: relative;
    padding: 220px 0px 60px 10px;
    width: 100%;
}
  
.card > img {
    width: 90%;
    position: absolute;
    top: -6%;
    left: -6%;
}
  
.card-color-0 {
    background-color: #565f25;
}
  .card-color-1 {
    background-color: #2367b5;
}
  
.card-color-2 {
    background-color: #9A1B1B;
}

  
  /* The cover (expanding background) */

.x-1 {
    transform: rotate(45deg);
}
  
.x-2 {
    transform: rotate(-45deg);
}
  
  /* 
  ** Transitions
  */
  
.card {
    transition: opacity 200ms linear 320ms, transform 200ms ease-out 320ms;
}
  
.border {
    transition: opacity 200ms linear, transform 200ms ease-out;
}
  
.card img {
    transition: opacity 200ms linear 0ms, transform 200ms ease-in 0ms;
}
  
.card h1 {
    transform: translate3d(20%, 0px, 0px);  
    transition: opacity 200ms linear 120ms, transform 200ms ease-in 120ms;
}
   
  /* 
  ** Media Queries
  */
  
@media screen and (max-width: 600px) {
    .card-column {
      width: 90%;
    }
    
    .column-1 {
      padding-top: 0px;
    }
    
    .open-content img {
      margin-top: 40px;
    }
}

.slider{
    width: 100%;
    border: 1px solid red;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
}

.slider .list{
    display: flex;
    width: 100%;
    min-width:calc(var(--width)*var(--quantity));
    position: relative;
}

.slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (10s / var(--quantity)) * (var(--position) * -1));
    
}

.slider .list .item img{
    width: 100%;
}

@keyframes autoRun{
    from{
        left:100%
    }to{
        left:calc(var(--width) * -1)
    }
}

.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}

.slider .item:hover{
    filter: grayscale(0)
}

/*Education.html styles*/

#education-levels .sectiontitle .headerLine {
  width: 280px;
  background-image: url(Images/black_and_green.jpg);
}



.education-heading{
  background-image: url(Images/Edu2.jpg);
  background-size:contain;
  height: 65vh;
  position: relative;
  top: -80px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items:center;
  flex-direction: column;
}

.education-heading h1{
  font-family:'Roboto Condensed', sans-serif;
  font-size: 5rem;
  padding-top: 7%;
  color: rgb(252, 252, 252);
}

/*Projects.HTML styles*/
/*Heading*/

.project-heading{
    background-image: url(Images/Certsbg.jpg);
    background-size: contain;
    height: 65vh;
    position: relative;
    top: -80px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
}

.project-heading h1{
    font-size: 6vw;
    padding-top: 7%;
}
.achievements{
    display:flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
}

.page2{
  background: url(Images/BlueFB.jpg) no-repeat center center fixed;
	background-size: cover;
	overflow: hidden;
	cursor: default;
}

.Projects-title h1 {
	color: rgba(38, 50, 56, 1);
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	top: 48px;
}

.cert {
	width: 400px;
	height: 300px;
	position: relative;
	margin: 5% auto;
    margin-top: 0%;
	border-radius: 8px;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2), 0px 2px 6px rgba(0, 0, 0, 0.4);
	overflow: hidden;
    
}

.blur {
	background: url(Images/Blue\ Back.jpg) no-repeat center center fixed;
	background-size: cover;
	width: 430px;
	height: 330px;
	position: relative;
	top: -15px;
	left: -15px;
	border-radius: 8px;
	-webkit-filter: blur(8px);
	-moz-filter: blur(8px);
	filter: blur(8px);
}

.color {
	background: rgba(255, 255, 255, .60);
	width: 430px;
	height: 330px;
}

.profile {
	cursor: grabbing;
	width: 400px;
	height: 300px;
	position: relative;
	top: -330px;
	border-radius: 8px;
}

.profile img {
	width: 100px;
	height: 100px;
	border-radius: 100px;
	position: relative;
	top: 32px;
	display: block;
	margin: 0 auto;
}

.profile h1 {
	color: rgba(38, 50, 56, 1);
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	position: relative;
	top: 48px;
}

.profile p {
	color: rgba(38, 50, 56, .87);
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	position: relative;
	top: 56px;
}

.info a {
	color: rgba(255, 255, 255, 1);
	transition: color 0.4s;
	text-decoration: none;
}
a:hover {
	color: rgba(255, 255, 255, .70);
	transition: color 0.4s; 
}

.info {
	text-align: center;
	margin: 0 auto;
	position: relative;
	top: 86px;
	background: rgba(38, 50, 56, 1);
	width: 32px;
	height: 32px;
	border-radius: 100px;
	background-position: center center;
	background-size: cover;
	transition: all 0.2s ease;
	z-index: 0;
}

.info.active {
	width: 100%;
	height: 200%;
	position: relative;
	top: -100%;
	background: rgba(38, 50, 56, 1);
	transition: width .1s ease, height .2s ease, top .2s ease, z-index .2s ease;
	z-index: 999;
}

.info i.block {
	color: rgba(255, 255, 255, .6);
	display: block;
}

.info .fa-info {
	padding: 8px;
	cursor: pointer;
	visibility: visible;
    opacity: 1;
	transition: visibility 0s, opacity 0.4s ease;
}

.info.active .fa-info {
	visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.4s ease;
}



.info .fa-angle-down {
	cursor: pointer;
	visibility: hidden;
}

.info.active .fa-angle-down {
	position: relative;
	margin: 0 auto;
	width: 24px;
	height: 24px;
	padding: 4px;
	visibility: visible;
	position: relative;
	top: 128px;
	animation-name: visible;
	animation-duration: 0.3s;
}


@keyframes visible {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.info p {
	color: rgba(255, 255, 255, 1);
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	line-height: 110%;
	font-weight: 400;
	text-align: center;
	padding: 24px;
	position: relative;
	top: 144px;
	visibility: hidden;
}

.info.active p {
	visibility: visible;
	animation-name: entrance-first;
	animation-duration: 0.4s;
}

.info .link {
	visibility: hidden;
	margin: 24px 24px 0px 24px;
	padding: 16px 4px 4px 4px;
	cursor: pointer;
	position: relative;
	top: 144px;
}

.info.active .link {
	visibility: visible;
	animation-name: entrance-second;
	animation-duration: 0.5s;
}

@keyframes entrance-first {
	0% {
		top: 200px;
	}
	100% {
		top: 144px;
	}
}

@keyframes entrance-second {
	0% {
		top: 200px;
	}
	100% {
		top: 144px;
	}
}

:root {
    --purple: #603f8b;
    --aqua: #b4fee7;
    --violet: #a16ae8;
    --fuchsia: #fd49a0;
    --white: #efefef;
    --black: #222;
    --trueBlack: #000;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    background-color: var(--black);
  }
  
  .main {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .projects {
    display: grid;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 100px;
  }
  
  .projects_item {
    display: flex;
  }
  
  .project_image {
    display: flex;
    height: 250px;
    box-shadow: 0 50px 100px 0 var(--violet);
  }
  
  .project_image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .project {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background-color: var(--purple);
    border-radius: 5px 25px 5px 50px;
    transition: transform 0.1s linear, box-shadow 0.2s; 
  }
  
  .project_text:focus,
  .project:focus {
    outline: 2px dashed var(--aqua);
  }
  
  .project:focus,
  .project:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.2);
  }
  
  .project_content {
    padding: 0.5rem 1rem 1rem;
    color: var(--white);
  }
  
  .project_title {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: auto;
    color: var(--black);
    padding: 0.5rem;
    border-radius: 5px 0 0 5px;
    transform: rotate(-3.3deg);
    transform-origin: left top;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.325rem;
    position: absolute;
    overflow: hidden;
    z-index: 1;
    background-color: rgba(253, 73, 160, 0.75);
    animation: 0s 0s fly-in 0 reverse both;
  }
  
  @media (min-width: 535px) {
    .project_title {
      animation: 0.5s 0.25s fly-out 1 both;
    }
  }
  
  .project:focus .project_title,
  .project:hover .project_title {
    animation: 0.5s ease-in 0s fly-in 1 both;
  }
  
  .project_text {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.5;
    text-size-adjust: 0.2px;
    padding: 0 1rem;
  }
  
  .project_text p:first-of-type:first-letter {
    font-size: 1.8em;
    font-family: 'Roboto Condensed', sans-serif;
    margin-right: 0.05em;
  }
  
  @media (min-width: 480px) {
    .project_text {
      overflow: auto;
      max-height: 20rem;
      scrollbar-width: thin;
      scrollbar-color: var(--aqua) var(--violet);
    }
  
    .project_text::-webkit-scrollbar {
      width: 12px;
    }
  
    .project_text::-webkit-scrollbar-track {
      background: var(--violet);
    }
  
    .project_text::-webkit-scrollbar-thumb {
      background-color: var(--aqua);
    }
  }
  
  .project_text strong {
    color: var(--aqua);
  }
  
  .upcharge {
    position: relative;
    font-weight: 600;
    background-color: var(--violet);
    padding: 0.5rem 0.75rem;
    color: var(--trueBlack);
    border-radius: 0 10px;
    z-index: 0;
    overflow: hidden;
  }
  
  .upcharge::after,
  .upcharge::before {
    content: "+";
    display: block;
    line-height: 0;
    font-size: 3rem;
    position: absolute;
    color: var(--purple);
    z-index: -1;
    opacity: 0.3;
  }
  
  .upcharge::before {
    left: 0;
    top: 0.5rem;
  }
  
  .upcharge::after {
    right: 0;
    bottom: 1.25rem;
  }
  
  .note {
    display: block;
    text-align: center;
    padding: 0.5rem;
    font-weight: 900;
    background-image: linear-gradient(
      -45deg,
      transparent 10%,
      var(--aqua) 10.5%,
      var(--aqua) 90%,
      transparent 90.5%
    );
    color: var(--black);
    font-size: 1.3em;
    font-style: italic;
    margin-top: 1rem;
}
  
  @keyframes fly-in {
    0% {
      top: 0;
      right: 0;
      font-size: 1.325rem;
    }
  
    25% {
      top: 0;
      right: -200%;
      font-size: 1.325rem;
    }
  
    26% {
      font-size: 2rem;
    }
  
    100% {
      top: 2rem;
      right: 0;
      font-size: 2rem;
    }
}
  
  @keyframes fly-out {
    0% {
      top: 2rem;
      right: 0;
      font-size: 2rem;
    }
  
    50% {
      top: 0;
      right: -200%;
      font-size: 1.325rem;
    }
  
    100% {
      top: 0;
      right: 0;
      font-size: 1.325rem;
    }
}

.experience-heading{
    background-image: url(Images/Experiencebg.jpg);
    background-size:contain;
    height: 65vh;
    position: relative;
    top: -80px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
}

.experience-heading h1{
    font-family:'Roboto Condensed', sans-serif;
    font-size: 6vw;
    padding-top: 7%;
    color: rgb(252, 252, 252);
}


div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  font-size: 13px;
  direction: ltr;
}

.sectionClass {
  padding: 80px 0px 50px 0px;
  position: relative;
  background: url(Images/GreenFB.jpg) no-repeat center center fixed;
	background-size: cover;
	overflow: hidden;
	cursor: default;
}

.sectionClass2 {
  padding: 80px 0px 50px 0px;
  position: relative;
  background: url(Images/RedFB.jpg) no-repeat center center fixed;
	background-size: cover;
	overflow: hidden;
	cursor: default;
}

.row {
  width: 980px;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.row:before,
.row:after {
  content: "";
  display: table;
}

.fullWidth {
  width: 100%;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}


/********************************/


/*  SECTION WORK EXPERIENCE
********************************/

#work-experience .sectiontitle .headerLine {
  width: 280px;
}

.cbp_tmtimeline {
  margin: 0px 30px 0 0;
  padding: 0px;
  list-style: none;
  position: relative;
}

/* Connecting Line */

.cbp_tmtimeline:before {
  content: '';
  position: absolute;
  top: 3%;
  bottom: 0;
  width: 10px;
  background: #09493b;
  left: 13%;
  height: 100%;
}

.cbp_tmtimeline li:last-child:before {
  content: initial;
}

.cbp_tmtimeline > li .cbp_tmtime span {
  display: block;
  text-align: right;
}

.cbp_tmtimeline > li .cbp_tmtime span:first-child {
  font-size: 0.9em;
  color: #bdd0db;
}

.cbp_tmtimeline > li .cbp_tmtime span:last-child {
  font-size: 2.9em;
  color: #3594cb;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
  color: #6cbfee;
}

.cbp_tmtimeline > li .cbp_tmlabel {
  margin: 0 0 15px 25%;
  background: #09493b;
  color: #FFF;
  padding: 30px;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.4;
  font-family: 'Roboto Condensed', sans-serif;
  position: relative;
  border-radius: 5px;
  min-height: 150px;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
  background: #09493b;
}

.cbp_tmtimeline > li .cbp_tmlabel h3 {
  margin-top: 0px;
  color: white;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
}

.cbp_tmtimeline > li .cbp_tmlabel h4 {
  opacity: 0.7;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
  text-align: left;
}

.cbp_tmtimeline > li .cbp_tmlabel h4 i {
  margin-right: 5px;
  vertical-align: middle;
}

.cbp_tmtimeline > li .cbp_tmlabel:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #09493b;
  border-width: 10px;
  top: 70px;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
  border-right-color: #09493b;
}

.cbp_tmtimeline > li .cbp_tmicon {
  width: 150px;
  height: 150px;
  top: 3%;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 1.4em;
  line-height: 40px;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #151515;
  background: #09493b;
  border-radius: 50%;
  text-align: center;
  left: 8%;
  margin: 0 0 0 -25px;
}

.cbp_tmtimeline li {
  margin-bottom: 70px;
  position: relative;
}

.sectionClassProject {
  position: relative;
  display: block;
  /* background: #f7f7f7; */
  margin: 0 auto;
  padding: 80px 1.875em 3.125em;
}

.sectionClass2Project {
  position: relative;
  display: block;
  background: #f7f7f7; 
  margin: 0 auto;
  padding: 80px 1.875em 3.125em;
}

.projectParagraph {
  font-size: 18px;
  margin: 0.5em 0 0;
  font-family: 'Roboto Condensed', sans-serif;
}

.projectParagraphLink {
  font-size: 15px !important;
  font-weight: 500 !important;
  margin-top: 50px !important;
  margin-bottom: 0px;
  text-align: right;
}

.projectParagraphLink a {
  color: white;
  text-decoration: underline;
}

.cbp_tmicon img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
}

.faPra {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 70px;
  vertical-align: middle;
  color: white;
  line-height: 150px;
}

.label {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  color: #FFFFFF;
  display: inline;
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
  padding: 5px 15px;
}

.date {
  color: #BFC3C7;
  display: block;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 30px;
  right: 20px;
}

.date i {
  margin-right: 8px;
  vertical-align: top;
  font-size: 18px;
  line-height: 20px;
}

@media (max-width: 1024px) {
  .cbp_tmtimeline:before {
    display: none;
  }
  .cbp_tmtimeline > li .cbp_tmtime {
    width: 100%;
    position: relative;
    padding: 0 0 20px 0;
  }
  .cbp_tmtimeline > li .cbp_tmtime span {
    text-align: left;
  }
  .cbp_tmtimeline > li .cbp_tmlabel {
    margin: 30px 0 70px 0;
    padding: 50px 30px 30px 30px;
    font-weight: 400;
    font-size: 95%;
    float: left;
  }
  .cbp_tmtimeline > li .cbp_tmlabel:after {
    right: auto;
    border-right-color: transparent;
    border-bottom-color: rgb(50, 68, 84);
    top: -20px;
  }
  .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: transparent;
    border-bottom-color: rgb(43, 58, 72);
    left: 65px;
  }
  .cbp_tmtimeline > li:nth-child(even) .cbp_tmlabel:after {
    right: 65px;
  }
  .cbp_tmtimeline > li:nth-child(odd) .cbp_tmicon {
    position: relative;
    float: left;
    left: auto;
    margin: 0px 5px 0 0px;
  }
  .cbp_tmtimeline > li:nth-child(even) .cbp_tmicon {
    position: relative;
    float: right;
    left: auto;
    margin: 0px 5px 0 0px;
  }
  .cbp_tmtimeline > li .cbp_tmtime span:last-child {
    font-size: 1.5em;
  }
}

@media (max-width: 32em) {
  .cbp-ntaccordion {
    font-size: 70%;
  }
}


/* AUTHOR LINK */



.about-me-img {
  width: 120px;
  height: 120px;
  left: 10px;
  /* bottom: 30px; */
  position: relative;
  border-radius: 100px;
}


.authorWindow {
  width: 600px;
  background: #75439a;
  padding: 22px 20px 22px 20px;
  border-radius: 5px;
  overflow: hidden;
}

.authorWindowWrapper {
  display: none;
  left: 110px;
  top: 0;
  padding-left: 25px;
  position: absolute;
}

.trans {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media screen and (max-width: 768px) {
  .authorWindow {
    width: 210px;
  }
  .authorWindowWrapper {
    bottom: -170px;
    margin-bottom: 20px;
  }
}

.slideshow{
  height: 100%;
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.myslides{
  display: none;
}

.prev, .next{
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next{
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover{
  background-color: rgba(0, 0, 0, 0.8);
}

.dot{
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,.dot:hover{
  background-color: #717171;
} 

.fade{
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade{
  from{opacity: .4}
  to{opacity: 1}
}


.wrapper {
  --color: #ffffff;
  --color-invert: #ff0000;
  --clip-path: circle(15px at left);
  --clip-path-hover: circle(70px at left);
  --clip-path-clicked: circle(100vw at left);
  --duration: .4s;
  --timing-function: ease;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  .video {
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    clip-path: var(--clip-path);
    transition: clip-path var(--duration) var(--timing-function);
    video {
      position: fixed;
      background: #c5d2f5;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
    }
  }
  .text {
    position: relative; 
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .2px;
    opacity: var(--opacity, 1);
    transition: opacity .3s var(--timing-function) .2s;
    &::before,
    &::after {
      content:"";
      position: absolute;
      bottom: 0;
      left: -1px;
      right: 25px;
      height: 0;
    }
    &::before {
      box-shadow: 26px 0 0 1px var(--color);
      right: var(--r, 100%);
      opacity: var(--opacity, 0);
      transition: right .5s ease-in, opacity .1s linear;
    }
    &::after {
      box-shadow: 26px 0 0 1px var(--color-invert);
      clip-path: var(--clip-path);
      transition: clip-path var(--duration) var(--timing-function);
    }
    > span {
      &::before,
      &::after {
        content: attr(data-text);
        padding-left: 26px;
      }
      &::before {
        color: var(--color);
      }
      &::after {
        color: var(--color-invert);
        clip-path: var(--clip-path);
        transition: clip-path var(--duration) var(--timing-function);
        position: absolute;
        left: 0;
      }
    } 
  }
  input {
    width: 220px;
    height: 40px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 40px;
    outline: none; 
    z-index: 2;
    appearance: none;
    cursor: pointer;
    &:focus {
      outline: 0;
    }
    &:hover {
      ~ .video {
        clip-path: var(--clip-path-hover);
      }
      ~ .text {
        &::before {
          --r: 25px;
          --opacity: 1;
        }
        &::after {
          clip-path: var(--clip-path-hover);
        }
        > span {
          &::after {
            clip-path: var(--clip-path-hover);
          }
        }
      }
    }
    &:checked {
      width: 100%;
      height: 100%;
      border-radius: 0;
      ~ .video {
        clip-path: var(--clip-path-clicked);
      }
      ~ .text {
        --opacity: 0;
        transition: opacity .3s var(--timing-function);
        &::after {
          clip-path: var(--clip-path-clicked);
        }
        > span {
          &::after {
            clip-path: var(--clip-path-clicked);
          }
        }
      }
    }
  }
}


.overlls {
  background: #010510;
  height: 100vh;
  font: 400 16px 'Roboto Condensed', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  .socials {
    position: fixed;
    display: block;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    > a {
      display: block;
      width: 30px;
      opacity: .2;
      transform: scale(var(--scale, .8));
      transition: transform .3s cubic-bezier(0.38,-0.12, 0.24, 1.91);
      &:hover {
        --scale: 1;
      }
    }
  }
}


.footer-top {
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 30px 0px;
    font-family: rubik;
    margin-top: 0;
    width: 100%;
    
}
.page-wrapper
{
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.footer-top, .footer-bottom {
    background-color: #989090;
    
}

footer p, footer strong, footer b, footer {
    color: #ffffff;

}

#waterdrop {
    height: 80px;
}

#waterdrop canvas {
    bottom: -70px !important;
}

.footer-site-info
{
  padding-top: 10px;
  
}

footer {
    text-align: right;
    width: 100%;
}
    
.footer-container {
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
}
    
.footer-container a {
    padding: 0px 16px;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: medium;
}
    
.fa:hover {
    color: #45405F;
}
    
.footer-icons {
    display: flex;
    justify-content: center;
    gap:20px;
    padding-bottom: 10px;
}
    
.copyright {
    color:#f2f2f2;
    overflow: hidden;
    margin-bottom: -30px;
}

.telegram{
    padding: 0px;
    width: 30px;
    text-decoration: none;
}

.telegram:hover{
    opacity: 0.7;
}

.linkedin{
    padding: 0px;
    width: 30px;
    text-decoration: none;
}

.linkedin:hover{
    opacity: 0.7;
}

.gmail{
    padding: 0px;
    width: 35px;
    text-decoration: none;
}

.gmail:hover{
    opacity: 0.7;
}
