@charset "UTF-8";

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

/* Boostrap Icons  */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");


/* CSS Document */
a {
  color: #161616 !important;
}
a:hover {
  color: #ff931e !important;
  text-decoration: none !important;
}   
    
.container {
  text-align: center;
}
.col-container {
  display: table;
  width: 100%;
}
.col {
  display: table-cell;
  padding: 4.5rem;
  background: #f6f6f6;
  border-radius: 25px;
}
.content {
  padding: 3rem 0 3rem 0;
  margin-right: 15px;
  margin-left: 15px;    
}

/* Logo */
.logo {
  padding: 2rem 0 2rem 0;
}

.small-logo {
  width: 200px;
  height: auto;
}

@media (min-width: 668px) and (max-width: 768px) {
  .logo {
    padding:10rem 0 10rem 0;
  }
}

@media (min-width: 320px) and (max-width: 667px) {
  .logo {
    padding: 8rem 0 8rem 0;
  }
  .small-logo {
    width: 150px;
    height: auto;
  }
    
  .footer {
    margin-top: -2rem !important;
  }    
}

/* SVG Logo Color */
.st0 {
  fill: #FF931E;
}
.st1 {
  fill: #FFFFFF;
}
.st2 {
  fill: #161616;
}
#small-circle {
  -webkit-animation: small-circle 3s both infinite;
  animation: small-circle 3s both infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes small-circle {
  0% {
    -webkit-transform: rotatez(0deg);
    transform: rotatez(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes small-circle {
  0% {
    -webkit-transform: rotatez(0deg);
    transform: rotatez(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* Social Media */
.social-media {
  display: inline-block;
  margin: 0 0.5rem 1.5rem 0.5rem;
}
.project {
  padding: 1rem 0 35px 0;
}
.projects, .photography, .journey, .contact {
  padding: 1rem 15px 35px 15px;
}

/* Project */

.project. .row {
  margin: 10px;
}

@media (min-width: 320px) and (max-width: 667px) {
  .project .row {
    margin: 2px;
  }
  h1 {
    font-size: 1.6rem;
  }  
  h2 {
    font-size: 1.4rem;
  }  
  h3 {
    font-size: 1.2rem;
  }     
}

/* Add padding BETWEEN each column */
.project .row, .project .row > .column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  display: none; /* Hide all elements by default */
  /*float: left;
  width: 33.33%;*/
}

/* Clear floats after rows */
.project .row:after {
  list: "";
  display: table;
  clear: both;
}
/* Content */
.list {
  border: 1px solid #eee;
  height: 100%;
  /*  padding: 1rem;*/
  /*	border-radius: 5px;*/
  /*  background: #f9f9f9;*/
}
.list img {
  width: 100%;
}
.list-content {
  padding: 1rem;
}
.label {
  margin: 2px;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  width: auto;
  padding: 3px 5px 3px 5px;
  color: #333;
  background: #eee;
}
/* ZoomIn Hover-Mask Effect */
.hover-mask a {
  display: block;
  position: relative;
  overflow: hidden;
}
.hover-mask img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hover-mask:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.hover-mask a h2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  height: 100%;
  width: 100%;
  padding: 45% 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}
.hover-mask:hover a h2 {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}
.hover-mask .glyphicon {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  color: #fff;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}
.hover-mask:hover .glyphicon {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=1);
  opacity: 1;
}
.readmore {
  margin: 0 auto;
  width: 90px;
  padding: 5px;
  font-size: 0.8rem;
  color: #fff;
  border: 1px solid #fff;
}
/* The "show" class is added to the filtered elements */
.show {
  display: block;
}
/* Button*/
#myBtnContainer .btn {
  border: 1px solid #eee;
  outline: none;
  padding: 3px 10px;
  cursor: pointer;
  margin: 3px 3px 3px 0;
}
#myBtnContainer .btn:hover {
  background-color: #eee;
  border: 1px solid #eee;
}
#myBtnContainer .btn.focus {
  color: #fff !important;
  background-color: #ff931e;
  border: 1px solid #fff;
}
.morebtn {
  margin: 3px;
}
.morebtn .btn-secondary {
  cursor: pointer;
  min-width: 75px;
  color: #fff !important;
  background-color: #161616 !important;
  border-color: #161616 !important;
}
.morebtn .btn-secondary:hover {
  color: #fff !important;
  background-color: #555 !important;
  border-color: #555 !important;
}
.morebtn .btn-secondary:focus, .btn-secondary.focus {
  background-color: #161616 !important;
  border-color: #161616 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 147, 30, 0.5);
}
.carousel {
  z-index: 1 !important;
}
.carousel-indicators li {
  width: 25px !important;
  height: 2px !important;
}

@media (min-width: 320px) and (max-width: 667px) {
  .carousel-control-prev, .carousel-control-next {
    display: none;
  }
  .carousel-indicators li {
    width: 15px !important;
    height: 2px !important;
  }
}

/* Sub Project */
.project-content {
  text-align: center;
}
.sub-project img {
  width: 100%;
  height: auto;
}
.sublogo {
  max-width: 380px;
  height: auto;
}

@media (min-width: 320px) and (max-width: 667px) {
  .sublogo {
    max-width: 200px;
    height: auto;
  }
}

.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-header {
  border-bottom: none !important;
  padding: 1rem 1rem 0 1rem !important;
}
.modal-title {
  padding: 0.5rem 0 0 0;
}

/* Photography */

/* Journey*/
ul.timeline {
  list-style-type: none;
  text-align: left;
/*  position: relative;   */ 
}
ul.timeline:before {   
  content: ' ';
  background: #000;
  display: inline-block;
  position: absolute;
  left: 0rem;
  width: 1px;
  height: 100%;
  z-index: 1;
}

ul.timeline > li {
  margin: 55px 0 0 20px;
}

ul.timeline > li:before {
  content: ' ';
  background: white;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid #ff931e;
  left: -0.45rem;
  width: 15px;
  height: 15px;
  z-index: 1;
}

.history {
  padding-left: 20px;    
}

.skill {
  padding-right: 4rem;
  padding-left: -2rem !important;
}

.tools{
   padding-top:2.8rem; 
}


.linkedin {
    padding-top:0.8rem;
}

.google {
    padding-top:4rem;
}

.stackskills {
    padding-top:6rem;
}

.ibm {
    padding-top:3rem;
}


@media (min-width: 320px) and (max-width: 736px) { 
ul.timeline {
  margin-left: -3.5rem !important;        
}
    
ul.timeline > li {
  margin: 45px 0 0 0px !important;    
} 
    
ul.timeline:before, ul.timeline > li:before {   
  display: none; 
}  


.history {
  padding: 3.5rem 0 0 0;    
} 
    
.tools{
   padding-top:1rem !important; 
}
    
    
.skill {
  padding-right: 0 !important;
}     
    
.emp {
  margin-top: -1rem !important;    
  margin-left: 1rem;        
}  
    
.ibm {
    padding-top:0 !important;
}    
    
.edu {
    margin-left: -2.5rem !important; 
} 

.edu-title {
    text-align: left !important; 
    margin-top: -3rem !important;
}

.linkedin {
    padding-top:0rem !important;
    margin-top: -3.5rem !important;
}

.google {
    padding-top:3rem !important;
}

.stackskills {
    padding-top:3rem !important;
} 
    
}

.pie-chart {
  margin: 3rem 0 3rem 0;
}

#labels{ 
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
}

hr.line {
  width: 3rem;
  border-top: 1px solid #555;
}



/* Contact*/
.divline {
  margin: 0 auto;
  border-right: 1px solid #000;
  height: 3rem;
  width: 1px;
}

.logo-outline {
  width: 100px !important;
}

/* Button*/
.btn-success {
  background-color: #161616 !important;
  border-color: #161616 !important;
}
.btn-success:hover {
  background-color: #ff931e !important;
  border-color: #ff931e !important;
}
.btn-success:focus, .btn-success.focus {
  background-color: #161616 !important;
  border-color: #161616 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 147, 30, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  background-color: #ff931e !important;
  border-color: #ff931e !important;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  background-color: #ff931e !important;
  border-color: #ff931e !important;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 147, 30, 0.5);
}
.form-control {
    border-radius:3px;
}
