
// =====================
// Theme Variables
// =====================
$color-primary: #4682B4;
$color-secondary: #555;
$color-accent: red;
$color-text: #333;
$color-bg: #fff;

$font-size-xs: 10px;
$font-size-sm: 14px;
$font-size-md: 17px;
$font-size-lg: 20px;
$font-size-xl: 36px;
$font-size-base: 16px;

$spacing-xs: 4px;
$spacing-sm: 8px;
$spacing-md: 10px;
$spacing-lg: 12px;
$spacing-xl: 14px;
$spacing-xxl: 20px;
$spacing-section: 40px;
// =====================
// Styles
// =====================

      

    :root{
      --bg:#0f1724;
      --card:#0b1220;
      --accent:#6ee7b7;
      --muted:#94a3b8;
      --gap:1rem;
      --duration:4000ms; /* default slide duration */
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }
    
    .slideshow{
      width:min(960px,95%);
      background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border-radius:14px;padding:2rem;box-shadow:0 8px 30px rgba(2,6,23,0.6);
      display:grid;grid-template-rows:auto 1fr auto;gap:var(--gap);
    }

    .stage{
      position:relative;overflow:hidden;min-height:160px;display:flex;align-items:center;justify-content:center;padding:1.5rem;
    }

    .slide{
      position:absolute;inset:0;display:flex;align-items:center;justify-content:center;flex-direction:column;padding:1.25rem;opacity:0;pointer-events:none;transition:opacity 600ms ease;
    }
    .slide.active{opacity:1;pointer-events:auto}

    /* text basics */
    .title{font-size:clamp(20px,4vw,36px);line-height:1.05;margin:0 0 .35rem;text-align:center}
    .subtitle{font-size:clamp(12px,2vw,16px);color:var(--muted);margin:0;text-align:center}

    /* Effect: fade (default) */
    .effect-fade .title,.effect-fade .subtitle{animation:fadeIn 900ms ease both}
    @keyframes fadeIn{from{opacity:.02;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}

    /* Effect: slide-up */
    .effect-slide-up .title{animation:slideUp 700ms cubic-bezier(.2,.9,.3,1) both}
    .effect-slide-up .subtitle{animation:slideUp 900ms cubic-bezier(.2,.9,.3,1) both}
    @keyframes slideUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}

    /* Effect: typewriter (title only) */
    .effect-typewriter .title{overflow:hidden;white-space:nowrap;border-right:.14em solid rgba(230,238,248,.8);animation:typeWriter 2.2s steps(30) 1 both, blink .8s steps(1) infinite;max-width:90%}
    @keyframes typeWriter{from{width:0}to{width:100%}}
    @keyframes blink{50%{border-color:transparent}}

    /* Effect: letter-flip */
    .effect-flip .title{display:inline-block}
    .effect-flip .title span{display:inline-block;opacity:0;transform:translateY(20px) rotateX(40deg);animation:flipIn .6s cubic-bezier(.2,.8,.2,1) both}
    .effect-flip .title span:nth-child(odd){animation-delay:calc(var(--i) * 40ms)}
    @keyframes flipIn{from{opacity:0;transform:translateY(20px) rotateX(40deg)}to{opacity:1;transform:translateY(0) rotateX(0)}}

    /* Effect: blur-slide */
    .effect-blur .title,.effect-blur .subtitle{filter:blur(6px);transform:translateY(14px);animation:unblur 700ms cubic-bezier(.2,.9,.3,1) both}
    @keyframes unblur{to{filter:blur(0);transform:translateY(0);opacity:1}}

    /* Effect: flicker (neon) */
    .effect-flicker .title{color:var(--accent);text-shadow:0 6px 30px rgba(110,231,183,.06),0 0 18px rgba(110,231,183,.08);animation:flicker 2s ease both}
    @keyframes flicker{0%{opacity:.3}10%{opacity:1}30%{opacity:.5}50%{opacity:1}100%{opacity:1}}

    /* controls */
    .controls{display:flex;gap:.6rem;align-items:center;justify-content:center}
    .btn{background:transparent;border:1px solid rgba(255,255,255,.06);padding:.55rem .75rem;border-radius:10px;color:inherit;cursor:pointer;font-weight:600}
    .btn:hover{background:rgba(255,255,255,.02)}
    .indicators{display:flex;gap:.45rem}
    .dot{width:10px;height:10px;border:0px;border-radius:0%;background:rgba(255,255,255,.06);cursor:pointer}
    .dot.active{background:var(--accent);box-shadow:0 0 8px rgba(110,231,183,.2)}

    /* small footer */
    .meta{display:flex;justify-content:space-between;align-items:center;gap:1rem;color:var(--muted);font-size:13px}

    /* responsive */
    @media (max-width:520px){.slideshow{padding:1rem;border-radius:12px}.title{font-size:20px}}
      

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}



.fnt-12 {
font-size: 10px;	
}
.fnt-14 {
font-size: 14px;	
}
.fnt-17 {
font-size: 17px;	
}

.fnt-36 {
font-size: 36px;	
}

.hero-card {
  position: absolute;
  margin-top: -10%;
  margin-left: 0%;
  z-index: 3;
 
}
.rectangle {
  height: 120px;
  width: 120px;
  /*background-color: #E1C16E;*/
  background-color: #4682B4;
  margin-left:6%;
  
}

.triangle-left {
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-right: 50px solid #555;
	border-bottom: 25px solid transparent;
	transform: skew(-60deg);
	
}

.triangle-right {
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-left: 50px solid #555;
	border-bottom: 25px solid transparent;
	transform: skew(-30deg);
}

.parallelogram {
	width: 120px;
	height: 120px;
	transform: skew(-5deg);
	/*background-color: #E1C16E;*/
	background-color: #4682B4;
	border-radius:0px;
	/*margin-left:2%;*/
}
.trapezoid {
	border-bottom: 50px solid #555;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	height: 0;
	width: 125px;
}
.oval {
  height: 50px;
  width: 100px;
  background-color: #555;
  border-radius: 50%;
}
.circle {
  height: 50px;
  width: 50px;
  background-color: #555;
  border-radius: 50%;
}
.square {
  height: 50px;
  width: 50px;
  background-color: #555;
}

.triangle-up {
	width: 0;
	height: 0;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-bottom: 50px solid #555;
}
.triangle-down {
	width: 0;
	height: 0;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-top: 50px solid #555;
}

.hero-badge {
margin-top:20%;
width:100%;	
}
.hero-image {
  width:100%;
  margin-top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height:300px;
  }
  
  .ivd-img {
	 width:100%;
	 height:auto;
	 margin-top:0%;
	 opacity:0.7;
 }
  .image {
  width:100%;
  margin-top: 5%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-color: #f6f5f6;
  }
  
   
.header-logo{

  /*animation: rotation 5s infinite linear;*/

}

@keyframes rotation {

  from {

    transform: rotate(0deg);

  }

  to {

    transform: rotate(359deg);

  }

}

.img-one {
	width:40%;
}

.img-two {
	width:50%;
}

.img-three {
	width:50%;
	/*border-radius: 50%;*/
}

.code-one {
	margin-top:1%; 
	font-size:20px;
}

.geeks {
			width: 100%;
			/*height: 300px;*/
			overflow: hidden;
			margin: 0 auto;
			cursor: pointer;
		}

		.geeks img {
			width: 100%;
			transition: 0.3s all ease-in-out;
		}

		.geeks:hover img {
			transform: scale(1.2);
		}
		
/*@font-face {
   font-family: myFirstFont;
  src: url(../font/SansationLight.ttf);
    src: url(../font/Rajdhani-Medium.ttf);

}

* {
   font-family: myFirstFont;
}*/


/*hover animation*/

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: white;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  /*background-color: #0087ca;*/
  background-color:blue;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.table, th, td {
  border: 0px solid;
}
/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  background-color: #fff;
  height: 300px;
  opacity: 0.8;

}

.column a {
  float: none;
  color: black;
  padding: 12px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.column a:hover {
  background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  
}
.can-ban {
font-family:arial black; 
font-size: 72px;
}

.header-text {
font-family: arial black; 
color: #555;
font-size: 17px;
float: center;
}

.motto {
font-size:17px;
letter-spacing:1px;
}

input[type=text], input[type=password], select, textarea, file {

  width: 100%;
  padding: 10px 12px;
  margin: 8px 0;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  background-color:  transparent;
 
  

  
 /*border-left-width: 0px;
  border-right-width: 0px; 
  border-top-width: 0px; 
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-color:  skyblue; */
}

   .fontuser {
            position: relative;
            
        }
          
        .fontuser i{
            position: relative;
            float: right;
            margin-right: 8%;
            left: 15px;
            top: 40px;
            color: gray;
            
        }
          
        .fontpassword {
           position: relative;
           }
          
       .fontpassword i{
            position: relative;
            float: right;
            margin-right: 8%;
            left: 15px;
            top: 40px;
            color: gray;
            
        }
.date {

 width: 100%;
  padding: 10px 12px;
  margin: 8px 0;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  background-color: transparent;
  
  
/*border-left-width: 0px;
  border-right-width: 0px; 
  border-top-width: 0px; 
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-color:  #00B8F4;*/

}

.file {

 width: 100%;
  padding: 10px 12px;
  margin: 8px 0;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  background-color: transparent;
  
  
/*border-left-width: 0px;
  border-right-width: 0px; 
  border-top-width: 0px; 
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-color:  #00B8F4;*/

}

.custom-file-input {
  color: transparent;

}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
  
}
.custom-file-input::before {
  content: 'Select some files';
  color: black;
  display: inline-block;
  background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
 
}
.custom-file-input:hover::before {
  border-color: black;
 
}
.custom-file-input:active {
  outline: 0;

}
.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9); 
 
}

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");

//Variables
$mobile-breakpoint: 350px;
$large-mobile-breakpoint: 530px;
$tablet-breakpoint: 700px;
$desktop-breakpoint: 1200px;


//Mixins 
//Centering Mixins
@mixin horizontal-center {
  margin-left: auto;
  margin-right: auto;
}

@mixin vertical-center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}


//Media Query mixins
@mixin mobile {
  @media (min-width: #{$mobile-breakpoint}) and (max-width: #{$large-mobile-breakpoint - 1}) {
    @content;
  }
}

@mixin tablet {
  @media (min-width: #{$large-mobile-breakpoint}) and (max-width: #{$tablet-breakpoint - 1}) {
    @content;
  }
}

@mixin desktop {
  @media (min-width: #{$tablet-breakpoint}) and (max-width: #{$desktop-breakpoint}) {
    @content;
  }
}

//Animations
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-in {
   0% {
    top: -300px;
  }
  100% {
    top: 0;
  }
}

@keyframes scaleDown {
    0% {
    transform: scale(1);
  }
   10% {
    transform: scale(0.7);
  }
   95% {
    transform: scale(0.7);
  }
   100% {
    transform: scale(1);
  }
}

@keyframes reveal-info {
  0% {
    height: 0;
  }
  5% {
    height: 350px;
  }
  95% {
    height: 350px;
  }
  100% {
    height: 0;
  }
}

//Body 



body {
  margin: 0;
  padding: 0;
}

.card-header {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px 14px;
  text-align: left;
  background-color: ;
  border-radius: 8px;
}


.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  padding: 16px;
  text-align: center;
  width: 60%;
  /*background-image:linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,255,1));*/
  background-image: linear-gradient(120deg, rgba(0,0,0,0.5), rgba(0, 0, 0, 0.5));
  border-radius: 6px;
  margin-left: 20%;
  margin-top: -2%;
  z-index: 1;
  
   }
   
   .card-form {
	/*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);*/
  padding: 16px;
  text-align: center;
  /*background-image: linear-gradient(120deg, rgba(0,0,0,0.5), rgba(0, 0, 0, 0.5));*/
  border-radius: 6px;
  margin-top: 5%;
  z-index: 1;
   width: 100%;
  margin-left: 1%;



}

.container {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 1200px;
  height: 900px;
  /*background-color:#D7CCC8 ;*/
  background-color: lightblue;
  font-size: 14px;
  font-family: "Montserrat", sans;
  .container-inner { 
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   position: relative;
   animation: fade-in 1.5s ease, slide-in 1.2s ease;
   -webkit-animation: fade-in 1.5s ease, slide-in 1.2s ease;
    .main-content {
      flex-basis: 50%;
      order: 1;
      align-self: center;
      display: flex;
      flex-direction: column;
      .main-headings { 
        width: 100%;
        align-self: center;
        display: flex;
        flex-direction: column;
        animation: scaleDown 6s ease 2s;
       -webkit-animation: scaleDown 6s ease 2s;
        #by-line {
          width: 60%;
          padding-bottom: 1px;     
          padding-left: 3px;
          margin-left: 15px;
          font-size: 85%;
          border-bottom: 1px solid #757575;             
          font-style: italic;
        }
        .heading {
         // align-self: flex-end;
           margin-top: 20px;
           margin-left: 80px;
          #heading1, #heading2, #heading3 {
            margin: 0;
            margin-top: -20px;
          }
          #heading1, #heading2 {
            font-size: 500%;
            font-weight:normal;
            letter-spacing: -2px;
          }
          #heading1 {
            margin-left: 50px;
            }
          #heading2 {
            margin-left: 150px;
          }
          #heading3 {
            margin-top: -52px;
            font-size: 1000%;
            font-weight: 800;
            letter-spacing: 2px;
            }
        }
        .short-bio {
          width: 60%;
          margin-top: -30px;
          margin-left: 90px;
          font-style: italic;
          font-size: 105%;
        }
        a {
         // width: 72%;
          margin-left: 92px;
         // margin-right: auto;
          align-self: flex-start;
          font-weight: bold;
          font-size: 120%;
          font-family: helvetica;
          text-decoration: none;
          color: black;
          &:hover {
            text-decoration: underline;
          }
        }  
      }  
       .more-info {
          margin-top: -70px;
          width: 50%;
          height: 0px;
          margin-left: auto;
          margin-right: auto; 
          align-self: flex-start;
          overflow: hidden;
          animation: reveal-info 4s ease 3s;
         -webkit-animation: reveal-info 4s ease 3s;
       }
    }
    .image-wrapper {
      flex-basis: 50%; 
      order: 2;
      //background-color was #8D6E63
      .image-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        animation: scaleDown 6s ease 2s ;
       -webkit-animation: scaleDown 6s ease 2s;
        img {
          width: 100%;
          height: auto;
          position: relative;
         }
        }
      }     
   }
}



//Media Query for mobile devices 
@include mobile {
   * {
    animation-name: none !important;
  }

  
  .container {
    width: 90%;
    height: 700px;
    @include horizontal-center;
    font-size: 5px;
    margin-bottom: 20px;
  }
  .container-inner {
    flex-direction: column !important;
    justify-content: center !important;
  }
  .main-content, .image-wrapper {
    flex-basis: 100% !important;
  }
  .main-content {
    order: 2 !important;
    outline: 1px solid red;
    margin: 0 50px;
  }
  .image-wrapper {
    order: 1 !important;
  }
  .heading {
    margin-left: 55px !important;
  }
  #heading1, #heading2 {
   margin: 0;
   margin-top: -5px !important;
    }
  #heading2 {
    margin-left: 100px !important;
  }
  #heading3 {
    margin-top: -20px !important;
  }
  .short-bio {
    margin-top: -10px !important;
    margin-left: 60px !important;
  }
   .more-info {
    height: 150px !important;
    width: 60% !important;
    margin: 0 !important;
    align-self: flex-start !important;
    margin-top: 0px !important;
    margin-left: 60px !important;
    //text-align: justify;
    font-size: 8px;
  }
  .link {
    display: none;
  }
  .image-wrapper {
    order: 1 !important;    
    width: 100%;
    height: 100px !important;
    justify-content: center !important;
  }
  .image-container {
    width: 100% !important;
    height: 400px;    
    @include horizontal-center;
    @include vertical-center;
  }
  img {
    width: 80% !important;
    height: auto !important;
    top: -20px;
    @include horizontal-center;
  }
}


//Media Query for tablet devices 

@include tablet {
  * {
    animation-name: none !important;
  }
  

  
  .container {
    width: 90%;
    height: 700px;
    @include horizontal-center;
    font-size: 8px;
  }
  .container-inner {
    flex-direction: column !important;
    justify-content: center !important;
  }
  .main-content, .image-wrapper {
    flex-basis: 100% !important;
  }
  .main-content {    
    width: 80%;
    order: 2 !important;    
    align-self: center !important;
  }
  .main-headings {
    width: 100%;
    margin-top: 20px; 
    @include horizontal-center;
  }  
  .heading {
    margin-left: 55px !important;
  }
  #heading1, #heading2 {
    margin: 0;
    margin-top: -15px !important;
    }
  #heading3 {
    margin-top: -30px !important;
  }
  .short-bio {
    margin-top: -20px !important;
    margin-left: 60px !important;
  }
  .link {
    display: none;
  }
  .more-info {
    height: 150px !important;
    width: 60% !important;
    margin: 0 !important;
    align-self: flex-start !important;
    margin-top: 0px !important;
    margin-left: 60px !important;
    text-align: justify;
  }
  .image-wrapper {
    order: 1 !important;    
    width: 100%;
    height: 400px;
    justify-content: center !important;
  }
  .image-container {
    width: 100% !important;
    height: 400px;    
    @include horizontal-center;
  }
  img {
    width: 80% !important;
    height: auto !important;
    top: -20px;
    @include horizontal-center;
  }
}

/*

@include tablet {
  .container {
    width: 100%;
    height: auto;
    font-size: 7px;
  }
  #heading3 {
    margin-top: -35px !important;
  }
  .link {
    margin-left: 30px;
  }
  .more-info {
    margin-top: -40px !important;
  }
}
*/
//Media query for desktop devices 

@include desktop {
  .container {
    width: 100%;
    height: 900px;
    font-size: 9px;
  }
  #heading3 {
    margin-top: -35px !important;
  }
  .link {
    margin-left: 30px;
  }
  .more-info {
    margin-top: -40px !important;
  }
} 
 
 .wrapper {
  /*overflow: hidden;*/
  display: flex;
  height: 400px;
  width: 1400px;
  margin: 0 auto;
  overflow-x: scroll; /*this enables you to control the scroll if you uncoment it.*/
}

.wrapper div {
  height: 300px;
  min-width: 300px;
  margin-left: 100px;
}

.pink {
  background-color: pink;
  border-radius: 8px;
}

.blue {
  background-color: blue;
  border-radius: 8px;
}

.yellow {
  background-color: yellow;
  border-radius: 8px;
}

.orange {
  background-color: orange;
  border-radius: 8px;
}

.purple {
  background-color: purple;
  border-radius: 8px;
}

.aqua {
  background-color: aqua;
  border-radius: 8px;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1500px, 0, 0); /* The image width */
  }
}


.wrapper div {
  height: 300px;
  min-width: 300px;
  margin-left: 100px;
  animation: slide 35s linear infinite;
  
}

.avatar{
margin-left: auto;
margin-right: auto;
width: 30%;
/*-webkit-mask-image: linear-gradient(black, transparent);
mask-image: linear-gradient(transparent, black);
mask-image: linear-gradient(to bottom, transparent, black, transparent);*/
/*border-radius: 3px;*/
border-radius: 50%;
border: 4px solid #eee;
margin-top: 4%;
cursor: pointer;

 
 }

.disp-img {
width: 100%;
height: '';
margin-top: 0%;
opacity: 0.8;


}

.card-img {
width: 100%;
height: 350px;
margin-top: 0%;
}

.fixed-header, .fixed-footer{
        width: 100%;  
        padding: 0px 0;
        color: #;
        
        
    }
    .fixed-header{
   		top: 0;
        position: fixed; 
        z-index: 3;
        text-align: center;
       /*  background-color: #333;*/
       background-color: #000;
       opacity: 0.8;
       
    }
    
    .fixed-footer{
    	
        bottom: 0;
        height: 100px;
		position: relative;
        background: #;
        text-align: center;
    }

.btn-act {
  border: solid 2px $color-accent;
  padding: 12px 14px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 50%;
  float: left;
  margin-left:4px;
  background-color:blue;
  color:white;

}

.flip-card {
  background-color: transparent;
  padding: 16px;
  text-align: center;
  background-color: #FFF;
  border-radius: 6px;
  height: 400px;

  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #FFF;
  color: black;
}

.flip-card-back {
 /* background-color: #2980b9;*/
 background-color: #0099CC;
  color: white;
  transform: rotateY(180deg);
}

.login-btn {
margin-left: 0.5%;
padding: 10px 14px;
border-radius:4px;
text-decoration:none;
background-color: #0066CC;
color: #FFF;
cursor: pointer;
border: 0px;
}

.my-bkgrd {
width:100%;
/*height: 400px;*/
position: relative;
background-size: cover;
background-position: center;

}

.hero-text {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  margin-top: 25%;
  margin-left: 28%;
  transform: translate(-45%, -40%);
  color:#333;
  z-index: 2;
 
}

 
 .visa {
width: 100%;
}
 
body {margin:0;font-family:sans-serif}

.topnav {
  overflow: hidden;
 /* background-color: transparent; */
  background-color: transparent;
  font-weight: bold;
  font-size: 14px;
  letter-spacing:2px;
/*  font-family: arial black;*/
}

.topnav a {
  float: left;
  display: block;
  color: #EEE;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px;
  
}

.topnav .active {
  /*background-color: #0066cc ;*/
  color: skyblue;
  font-weight: bold;
}

.topnav .icon {
  display: none;
}



.dropdown {
  float: left;
  
  /*overflow: hidden;*/
}

.dropdown .dropbtn {
  font-size: 14px;    
  border: none;
  outline: none;
  color: #EEE;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  letter-spacing: 2px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: blue;
  color: black;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

//Media Query for mobile devices 
@include mobile {
   * {
    animation-name: none !important;
  }
  .container {
    width: 90%;
    height: 700px;
    @include horizontal-center;
    font-size: 5px;
    margin-bottom: 20px;
  }
  .container-inner {
    flex-direction: column !important;
    justify-content: center !important;
  }
  .main-content, .image-wrapper {
    flex-basis: 100% !important;
  }
  .main-content {
    order: 2 !important;
    outline: 1px solid red;
    margin: 0 50px;
  }
  .image-wrapper {
    order: 1 !important;
  }
  .heading {
    margin-left: 55px !important;
  }
  #heading1, #heading2 {
   margin: 0;
   margin-top: -5px !important;
    }
  #heading2 {
    margin-left: 100px !important;
  }
  #heading3 {
    margin-top: -20px !important;
  }
  .short-bio {
    margin-top: -$font-size-xs !important;
    margin-left: 60px !important;
  }
   .more-info {
    height: 150px !important;
    width: 60% !important;
    margin: 0 !important;
    align-self: flex-start !important;
    margin-top: 0px !important;
    margin-left: 60px !important;
    //text-align: justify;
    font-size: 8px;
  }
  .link {
    display: none;
  }
  .image-wrapper {
    order: 1 !important;    
    width: 100%;
    height: 100px !important;
    justify-content: center !important;
  }
  .image-container {
    width: 100% !important;
    height: 400px;    
    @include horizontal-center;
    @include vertical-center;
  }
  img {
    width: 80% !important;
    height: auto !important;
    top: -20px;
    @include horizontal-center;
  }
}


//Media Query for tablet devices 

@include tablet {
  * {
    animation-name: none !important;
  }
  .container {
    width: 90%;
    height: 700px;
    @include horizontal-center;
    font-size: 8px;
  }
  .container-inner {
    flex-direction: column !important;
    justify-content: center !important;
  }
  .main-content, .image-wrapper {
    flex-basis: 100% !important;
  }
  .main-content {    
    width: 80%;
    order: 2 !important;    
    align-self: center !important;
  }
  .main-headings {
    width: 100%;
    margin-top: 20px; 
    @include horizontal-center;
  }  
  .heading {
    margin-left: 55px !important;
  }
  #heading1, #heading2 {
    margin: 0;
    margin-top: -15px !important;
    }
  #heading3 {
    margin-top: -30px !important;
  }
  .short-bio {
    margin-top: -20px !important;
    margin-left: 60px !important;
  }
  .link {
    display: none;
  }
  .more-info {
    height: 150px !important;
    width: 60% !important;
    margin: 0 !important;
    align-self: flex-start !important;
    margin-top: 0px !important;
    margin-left: 60px !important;
    text-align: justify;
  }
  .image-wrapper {
    order: 1 !important;    
    width: 100%;
    height: 400px;
    justify-content: center !important;
  }
  .image-container {
    width: 100% !important;
    height: 400px;    
    @include horizontal-center;
  }
  img {
    width: 80% !important;
    height: auto !important;
    top: -20px;
    @include horizontal-center;
  }
}

//Media query for desktop devices 

@include desktop {
  .container {
    width: 100%;
    height: 900px;
    font-size: 9px;
  }
  #heading3 {
    margin-top: -35px !important;
  }
  .link {
    margin-left: 30px;
  }
  .more-info {
    margin-top: -40px !important;
  }
} 
 
 .wrapper {
  /*overflow: hidden;*/
  display: flex;
  height: 400px;
  width: 1400px;
  margin: 0 auto;
  overflow-x: scroll; /*this enables you to control the scroll if you uncoment it.*/
}

.wrapper div {
  height: 300px;
  min-width: 300px;
  margin-left: 100px;
}

.pink {
  background-color: pink;
  border-radius: 8px;
}

.$color-accent {
  background-color: $color-accent;
  border-radius: 8px;
}

.yellow {
  background-color: yellow;
  border-radius: 8px;
}

.orange {
  background-color: orange;
  border-radius: 8px;
}

.purple {
  background-color: purple;
  border-radius: 8px;
}

.aqua {
  background-color: aqua;
  border-radius: 8px;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1500px, 0, 0); /* The image width */
  }
}


.wrapper div {
  height: 300px;
  min-width: 300px;
  margin-left: 100px;
  animation: slide 35s linear infinite;
  
}

.avatar{
margin-left: auto;
margin-right: auto;
width: 30%;
/*-webkit-mask-image: linear-gradient(black, transparent);
mask-image: linear-gradient(transparent, black);
mask-image: linear-gradient(to bottom, transparent, black, transparent);*/
/*border-radius: 3px;*/
border-radius: 50%;
border: 4px solid #eee;
margin-top: 4%;
cursor: pointer;

 
 }

.disp-img {
width: 100%;
height: '';
margin-top: 0%;
opacity: 0.8;


}

.card-img {
width: 100%;
height: 350px;
margin-top: 0%;
}

.fixed-header, .fixed-footer{
        width: 100%;  
        padding: 0px 0;
        color: #;
        
        
    }
    .fixed-header{
   		top: 0;
        position: fixed; 
        z-index: 3;
        text-align: center;
       /*  background-color: $color-text;*/
       background-color: #000;
       opacity: 0.8;
       
    }
    
    .fixed-footer{
    	
        bottom: 0;
        height: 100px;
		position: relative;
        background: #;
        text-align: center;
    }

/*.btn-act {
  border: solid 2px $color-accent;
  //color: red;
  padding: 12px $font-size-sm;
  font-size: 12px;
  cursor: pointer;
  border-radius: 50%;
  float: left;
  margin-left:4px;
  background-color:$color-accent;
  color:white;

}*/

.flip-card {
  background-color: transparent;
  padding: 16px;
  text-align: center;
  background-color: $color-bg;
  border-radius: 6px;
  height: 400px;

  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: $color-bg;
  color: black;
}

.flip-card-back {
 /* background-color: #2980b9;*/
 background-color: #0099CC;
  color: white;
  transform: rotateY(180deg);
}

.login-btn {
margin-left: 0.5%;
padding: $font-size-xs $font-size-sm;
border-radius:4px;
text-decoration:none;
background-color: #0066CC;
color: $color-bg;
cursor: pointer;
border: 0px;
}

.my-bkgrd {
width:100%;
/*height: 400px;*/
position: relative;
background-size: cover;
background-position: center;

}

.hero-text {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  margin-top: 25%;
  margin-left: 28%;
  transform: translate(-45%, -40%);
  color:$color-text;
  z-index: 2;
 
}

 
 .visa {
width: 100%;
}
 
body {margin:0;font-family:sans-serif}

.topnav {
  overflow: hidden;
 /* background-color: transparent; */
  background-color: transparent;
  font-weight: bold;
  font-size: $font-size-sm;
  letter-spacing:2px;
/*  font-family: arial black;*/
}

.topnav a {
  float: left;
  display: block;
  color: #EEE;
  text-align: center;
  padding: $font-size-sm 16px;
  text-decoration: none;
  font-size: $font-size-sm;
  
}

.topnav .active {
  /*background-color: #0066cc ;*/
  color: sky$color-accent;
  font-weight: bold;
}

.topnav .icon {
  display: none;
}



.dropdown {
  float: left;
  
  /*overflow: hidden;*/
}

.dropdown .dropbtn {
  font-size: $font-size-sm;    
  border: none;
  outline: none;
  color: #EEE;
  padding: $font-size-sm 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  letter-spacing: 2px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: $color-accent;
  color: black;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
	
	
.ivd-img {
	 width: 150%;
	 height: 500px;
	 margin-top: -24%;
	 opacity: 0.8;
 }

  .login-btn {
    width: auto;
  }

  .topnav {
    margin-top: -4%;
  }

  .topnav a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
    font-size: 24px;
    color: #eee;
    background-color: ;
    margin-top: -2%;
  }

  .dropdown-content a {
    float: left;
    display: block;
    background: transparent;
    font-size: $font-size-sm;
    color: white;
  }

  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    background-color: ;
  }

  .dropbtn a {
    float: none;
    display: block;
    text-align: left;
    color: $color-bg;
  }

  .topnav.responsive .dropdown {
    float: none;
  }

  .topnav.responsive .dropdown-content {
    position: relative;
  }

  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
    background-color: $color-text;
  }

  .img-one,
  .img-two {
    width: 10%;
  }

  .img-three {
    width: 10%;
    border-radius: 50%;
  }

  .code-one {
    margin-top: 0.5%;
    font-size: 12px;
  }

  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    background: $color-bg;
  }

  .avatar {
    margin-left: auto;
    margin-right: auto;
    width: 12%;
    mix-blend-mode: multiply;
    filter: contrast(1);
    background-color: transparent;
    margin-top: -3%;
  }

  .btn-act {
    border: solid 2px $color-accent;
    padding: 12px $font-size-sm;
    font-size: 12px;
    cursor: pointer;
    border-radius: 50%;
    float: left;
    margin-left: 4px;
    margin-top: -4%;
    background-color: $color-accent;
    color: white;
  }

  .motto {
    font-size: 12px;
  }

  .disp-img {
    width: 99%;
  }

  .card-img {
    width: 100%;
  }

  .visa {
    width: 20%;
    margin-top: -5%;
  }

  .header-text {
    font-family: arial black;
    color: grey;
    font-size: 12px;
    text-align: center;
  }

  .can-ban {
    font-family: arial black;
    font-size: 34px;
    margin-top: -2%;
  }

  .hero-badge {
    margin-top: 160%;
    width: 100%;
  }

  .hero-image {
    width: 100%;
    margin-top: 45%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 500px;
  }

  .image {
    align-items: center;
    width: 100%;
    margin-top: 35%;
    background-color: #f6f5f6;
  }

  .hero-text {
    text-align: center;
    position: absolute;
    transform: translate(-45%, -40%);
    color: $color-text;
    width: 100%;
    margin-top: -10%;
  }

  .fixed-header {
    top: 0;
    position: absolute;
    z-index: 3;
    text-align: center;
    background-color: transparent;
  }

}
