@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
    height: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    font-size: 100%;
    overflow-x: hidden;
}

body {
    background: #fefefe;
    background-color: #fefefe;
    color: #212121; 
    font-family: 'Montserrat', sans-serif; 
    height: 100%;
    max-width: 100vw;  
    padding: 0;
    margin: 0;
}

/* SVG animationr */

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 2s linear forwards;
}

@keyframes dash {
  from {
    stroke-dashoffset: 822;
      fill-opacity:0;
  }
  to {
    stroke-dashoffset: 0;
      fill-opacity:1;
  }
}


.path2 {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: dash3 1s linear forwards;
}

@keyframes dash3 {
  from {
    stroke-dashoffset: 400;
      fill-opacity:0;
  }
  to {
    stroke-dashoffset: 0;
      fill-opacity:1;
  }
}


.path2:hover {
  animation: dash2 0.5s linear forwards;
}

@keyframes dash2 {
  from {
    stroke-dashoffset: 0;
      fill-opacity:1;
  }
  to {
    stroke-dashoffset: 400;
      fill-opacity:0;
  }
}

/* Timeline holder */
ul.timeline {
    list-style-type: none;
    position: relative;
    padding-left: 1.5rem;
}

 /* Timeline vertical line */
ul.timeline:before {
    content: ' ';
    background: #fff;
    display: inline-block;
    position: absolute;
    left: 16px;
    width: 4px;
    height: 100%;
    z-index: 400;
    border-radius: 1rem;
}

li.timeline-item {
    margin: 20px 0;
}

/* Timeline item arrow */
.timeline-arrow {
    border-top: 0.5rem solid transparent;
    border-right: 0.5rem solid #fff;
    border-bottom: 0.5rem solid transparent;
    display: block;
    position: absolute;
    left: 2rem;
}

/* Timeline item circle marker */
li.timeline-item::before {
    content: ' ';
    background: #ddd;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #fff;
    left: 11px;
    width: 14px;
    height: 14px;
    z-index: 400;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.move-right {
    transition-property: all;
    transform: translateX(0%);
    transition: 420ms ease-out;
}

.move-right:hover {
    transform: translateX(10%);
    transition: 320ms ease-in;
}

.shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(198,161,33, 0.35) !important;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #fefefe;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  color: #212121;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: blue;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

header {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
    z-index: 1;
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

video {
    filter: grayscale(100%);
    transition: 450ms ease-out;
    transition-property: all;
}


video:hover {
    filter: grayscale(0%);
    transition: 320ms ease-in;
}

.card img {
        filter: grayscale(100%);
    transition: 450ms ease-out;
    transition-property: all;
}

.card img:hover {
    filter: grayscale(0%);
    transition: 320ms ease-in;
    transition-property: all;
}

header .container {
  position: relative;
  z-index: 1;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #5064c8 46%, #70c3ff 100%);
  opacity: 0.5;
  z-index: 2;
}

.h-90 {
  height: 90% !important;
}

.img-wrapper {
  position: relative;
  width: auto;
}

.image {
  display: block;
  width: auto;
  height: auto;
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
    background-color: #095488;
    background-image: linear-gradient(23deg, #095488 0%, #0e73b8 46%, #70c3ff 100%);
  overflow: hidden;
  width: auto;
  height: 0;
  transition: .5s ease;
}

.img-wrapper:hover .img-overlay {
  height: 20%;
}

.card-floating {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
    background-color: #095488;
  overflow: hidden;
  width: 30vh;
  height: 40vh;
  transition: .5s ease;    
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
    background-color: #095488;
    background-image: linear-gradient(23deg, #095488 0%, #0e73b8 46%, #70c3ff 100%);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.card-floating:hover .card-overlay {
  height: 100%;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

@media (pointer: coarse) and (hover: none) {
  header {
    background: url('/images/hero-mobile-btsg-1.jpg') white no-repeat center center scroll;
  }
  header video {
    display: none;
  }
}

.bg-form {
    background: #eee; 
}


.font-shadow2 {
    font-shadow: 2px 2px 2px rgba(0,0,0,0.15);
}

div:hover .font-shadow2 {
    font-shadow: 2px 2px 2px rgba(0,0,0,0); !important;
}



.gradient {
  background-image: linear-gradient(0deg, rgba(13,13,13,0.5) 0%, rgba(41,95,174,0.3858718487394958) 48%, rgba(255,255,255,0.3) 100%);
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 600px;
  object-fit: cover;
  position: relative;
  z-index: 2; !important;
}

form {
    margin-left:auto;
    margin-right:auto;
    width: 75vw;
    height: 75vh;
    padding:30px;
    border : solid gray 1px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 5px;
    background: white;
}


fontarea{
    background: transparent; 
    width: 50vw;
    height: 25vh;
    border: nonez;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; 
    display: block;
    font-family: 'Montserrat', sans-serif; 
    overflow: hidden;
}


div .container-fluid {
    width: 100vw; !important;
    max-width: 100vw; !important;
}

.bg-offWhite {
    background-color: #fefefe; !important;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out;
}

.bg-light-footer {
    background-color: #f2f2f2;
}

.alert-warning {
  color: #ffffff; !important;
  background-color: #fe351c; !important;
  border-color: #fe351c; !important;
}

nav a {
    font-transform: uppercase; 
} 

.middle-center {
    display: flex !important;
    position: absolute !important;
    justify-content: space-around; 
    align-items: center !important;
    align-content: center !important;
    text-align: center !important;
    vertical-align: middle !important;
    top: 50vh;
    left: 50vw;    
}    
    
@media screen and (max-width: 1920px) {
  
html {
    font-size: 22px; !important;
    width: 100vw; 
   overflow-x: hidden;
}


.mt-hero {
    margin-top: inherit;
    }
  

.showMobile {
        display: none;
    }       
  
.center {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 43%;
    left: 50%;
}    
    
.centerSlider {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 33%;
    left: 28%;
}   
    
}


@media screen and (max-width: 1706px) {
  
html {
    font-size: 20px; !important;
    width: 100vw;
    overflow-x: hidden;
}


.mt-hero {
    margin-top: inherit;
    }
  

.showMobile {
        display: none;
    }       

    
.center {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 50%;
    left: 50%;
}    

.centerSlider {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 33%;
    left: 21%;
}   
       
    
}


@media screen and (max-width: 1200px) {
  
html {
    font-size: 18px; !important;
    width: 100vw;
    overflow-x: hidden;
}

.center {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 50%;
    left: 50%;
} 
    
.centerSlider {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 33%;
    left: 20%;
}   
    
}

@media screen and (max-width: 992px) {
  
html {
    font-size: 16px; !important;
    overflow-x: hidden;
    width: 100vw;
}


.showMobile {
        display: none;
    }          
    
.mt-hero {
    margin-top: 6rem; !important;
    }


.center {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 50%;
    left: 50%;
}  
    
.centerSlider {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 33%;
    left: 20%;
}   
       
}
    
@media screen and (max-width: 768px) {
  
html {
    font-size: 15px; !important;
    width: 100vw;
    overflow-x: hidden;
}

.fixed-left {
    left: 0; !important;
    margin-left: 0; !important;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 30vh; !important;
  left: 15%;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}    
    
.showMobile {
        display: block;
    }      
  
    
.noMobile {
        display: none; !important;
    }      

.mt-hero {
    margin-top: 6rem; !important;
    }

.center {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 50%;
    left: 50%;
}
    
.centerSlider {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 33%;
    left: 16%;
}   
       
}

@media screen and (max-width: 576px) {
  
html {
    font-size: 14px; !important;
    width: 100vw;
    overflow-x: hidden;
}

.showMobile {
        display: block;
    }      
 
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 30vh; !important;
  left: 15%;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}        
    
.noMobile {
        display: none; !important;
    }  

.fixed-left {
    left: 0; !important;
    margin-left: 0; !important;
}    
    
.mt-hero {
    margin-top: 6rem; !important;
    }

.center {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 50%;
    left: 50%;
}        

.centerSlider {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle;
    top: 33%;
    left: 16%;
}   
       
    
}


.font-shadow {
    text-shadow: 2px 2px 2px rgba(0,0,0,0.25);
}


.closeHeight {
    line-height: 2rem; !important;
}

.closeHeight-2 {
    line-height: 0.5rem; !important;
}


.center-btn {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    vertical-align: middle; 
}

.bg-dark-body {
    background: #1b1b1b; !important;
    background: linear-gradient(to right, #1b1b1b, #212121); !important;
}

.font-slide-white {
	color: #ffffff;
    text-decoration: none; !important;
	background: linear-gradient(currentColor, currentColor) bottom / 0 .1rem no-repeat;
	transition: 0.25s background-size ease-in;
    background-position: left bottom;
}

.font-slide-white:hover {
	background-size: 100% .1rem;
    color: #ffffff;
    transition: 0.25s background-size ease-out;
    
}


.font-slide-blue {
	color: #212121;
    text-decoration: none; !important;
	background: linear-gradient(#fe351c, #f93f28) bottom / 0 .1rem no-repeat;
	transition: 0.25s background-size ease-in;
    background-position: left bottom;
}

.font-slide-blue:hover {
	background-size: 100% .1rem;
    color: #fe351c; !important;
    transition: 320ms ease-out;
    
}

.font-slide {
	color: #212121;
    text-decoration: none; !important;
	background: linear-gradient(currentColor, currentColor) bottom / 0 .1rem no-repeat;
	transition: 0.25s background-size ease-in;
    background-position: left bottom;
}

.font-slide:hover {
	background-size: 100% .1rem;
    color: #252525;
    transition: 0.25s background-size ease-out;
    
}



.bottom-left {
    position: absolute;
    bottom: 50px; !important;
    left: 50px; !important;
}

.saturate {
    transition: 450ms ease-in; /* Animation */
    transform: scale(1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    filter: saturate(0); !important;
}

.saturate:hover {
    filter: saturate(1); !important;
    transition: 320ms ease-out; /* Animation */
    transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

snip1375 {
  position: relative;
  overflow: hidden;
  min-width: inherit;
  max-width: auto;
}

.snip1375 img {
    max-width: 100%;
    vertical-align: top;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 1;
}

.snip1375:hover img,
.snip1375.hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}


.zoom {
    transform: scale(1);
    transition-property: all;
    transition: 450ms ease-out; 
}

.zoom:hover {
    transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    transition: 320ms ease-in; /* Animation */
}


.zoom-md {
    transform: scale(1);
    transition-property: all;
    transition: 450ms ease-in; 
}

.zoom-md:hover {
    transform: scale(1.3); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    transition: 320ms ease-out; /* Animation */
}


.snip1374 {
  position: relative;
  overflow: hidden;
  min-width: inherit;
  max-width: auto;
}

.snip1374 img {
    max-width: 100%;
    vertical-align: top;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background-color: transparent;
    filter: brightness(0.85) saturate(0.85) contrast(1) blur(2px);
    z-index: 1;
}

.snip1374:hover img,
.snip1374.hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
    filter: brightness(1) saturate(1.2) contrast(0.85) blur(0px);
}

.btn-glow {
    filter: brightness(1) saturate(1) contrast(1) blur(0px) hue-rotate(0deg);
}

.btn-glow:hover {
    filter: brightness(1.2) saturate(1.2) contrast(1) blur(0px) hue-rotate(0deg);
}

.bg-cover {
    background-size: cover; !important;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.no-borders {
    border-radius: 0; !important;
    border-width: 0; !important;
}

.bg-light-mode {
  background-color: #fcfcfc !important;
    opacity: 1;
}

.d-pic {
    opacity: 1;
    -webkit-transition: 2s ease-out;
  -moz-transition: 2s ease-out;
  -o-transition: 2s ease-out;
  transition: 2s ease-out;
}

.d-pic-none {
    opacity: 0;
    -webkit-transition: 2s ease-out;
  -moz-transition: 2s ease-out;
  -o-transition: 2s ease-out;
  transition: 2s ease-out;
}

.bg-gold {
    background-color: #d1b751;  /* fallback for old browsers */
    background-color: -webkit-linear-gradient(to right, #e5ce6f, #d1b751); !important;  /* Chrome 10-25, Safari 5.1-6 */
    background-color: linear-gradient(to right, #e5ce6f, #d1b751); !important; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
}

.all-scroll {
    cursor: all-scroll !important;
}

.bg-red {
    background-color: #EB3349;  /* fallback for old browsers */
    background-color: -webkit-linear-gradient(to right, #F45C43, #EB3349) !important;  /* Chrome 10-25, Safari 5.1-6 */
    background-color: linear-gradient(to right, #F45C43, #EB3349) !important; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
}

.bg-orange {
    background-color: #f5af19;  /* fallback for old browsers */
    background-color: -webkit-linear-gradient(to right, #f5af19, #f12711); !important;  /* Chrome 10-25, Safari 5.1-6 */
    background-color: linear-gradient(to right, #f5af19, #f12711); !important; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
}

.text-hov-blue {
    color: #212121; !important;
}

.text-hov-blue:hover {
    color: #fefefe; !important;
}


.bg-blue{
    background-color: #bea800;  /* fallback for old browsers */
    background-color: -webkit-linear-gradient(to right, #1663A0, #1488CC); !important;  /* Chrome 10-25, Safari 5.1-6 */
    background-color: linear-gradient(to right, #1663A0, #1488CC); !important; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
}

.bg-hover-blue:hover{
    background-color: #BE9300;  /* fallback for old browsers */
    background-color: -webkit-linear-gradient(to right, #1663A0, #1488CC); !important;  /* Chrome 10-25, Safari 5.1-6 */
    background-color: linear-gradient(to right, #1663A0, #1488CC); !important; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
}


.bg-blue-yellow {
    background-color: #6ecfff;  /* fallback for old browsers */
    background-color: -webkit-linear-gradient(to right, #84fab0, #00c6ff); !important;  /* Chrome 10-25, Safari 5.1-6 */
    background-color: linear-gradient(to right, #0072ff, #00c6ff); !important; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
}

.bg-white {
  background-color: #fff !important;
    opacity: 1;
}

a.bg-white:hover, a.bg-white:focus,
button.bg-white:hover,
button.bg-white:focus {
  background-color: #ffffff !important;
}

.bg-light-dynamic {
  background-color: rgba(255, 255, 255, 0);
    transition: 320ms ease-in;
}

.bg-light-dynamic:hover {
  background-color: rgba(255, 255, 255, 1) !important;
    transition: 250ms ease-out;
}

.bg-dark-dynamic {
  background-color: rgba(31, 27, 36, 0.05);
    transition: 320ms ease-in;
}


.bg-dark-dynamic:hover {
  background-color: rgba(31, 27, 36, 1);
    transition: 320ms ease-out;
}

.bg-dark {
    background-color: #121212;
}

.bg-orange {
    background-color: #fe351c; !important;
}

.bg-light-scroll {
  background-color: rgba(255, 255, 255, 1) !important;
    transition: 250ms ease-out;
}

.bg-dark-footer {
  background-color: #1b1b1b; !important;
}

.bg-dark {
  background-color: rgba(27, 27, 27, 0.25) !important;
}

.bg-dark:hover {
  background-color: rgba(27, 27, 27, 1) !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #061315 !important;
}

.btn-primary {
  color: #ffffff; !important;
  background-color: #0253b3; !important;
  border-color: #0253b3; !important;
}

.mt-neg-12 {
    margin-top: -6vh;
}

.inline {
  display: inline;
}


.shadow-hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-hover:hover {
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}


.anticipate {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  transition: transform .5s ease-in; /* Animation */
  margin: 0 auto;
}

.anticipate:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    transition: transform .25s ease-out; /* Animation */
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; 
} 
 

@-webkit-keyframes squashstretch {
    from {
		-webkit-transform: translateY(-6vh);
		        transform: translateY(-6vh); 
	}
	
	10% { 
		width: 3vh;
		height: 7vh;
	}
	
	50% { 
		width: 7vh;
		height: 3vh;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		-webkit-transform: translateY(11vh);
		        transform: translateY(11vh);
	}
    to {
		-webkit-transform: translateY(0);
		        transform: translateY(0); 
	}
    
}

@keyframes squashstretch {
	from {
		-webkit-transform: translateY(-6vh);
		        transform: translateY(-6vh); 
	}
	
	10% { 
		width: 3vh;
		height: 7vh;
	}
	
	50% { 
		width: 7vh;
		height: 3vh;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		-webkit-transform: translateY(11vh);
		        transform: translateY(11vh);
	}
    to {
		-webkit-transform: translateY(0);
		        transform: translateY(0); 
	}
    
}


.squash-stretch:hover {
    -webkit-animation: squashstretch 1.4s ease-in-out 0s infinite alternate;
	        animation: squashstretch 1.4s ease-in-out 0s infinite alternate;
}

.animation-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 40px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 300px;
	background: #fefefe;
}

.cube {
	margin-top: 0;
	border-radius: 3vh;
	width: 3vh;
  height: 3vh;
	background-color:#3470f2;
}

.cube:hover {
    -webkit-animation: squashstretch 1.4s ease-in-out 0s infinite alternate;
	        animation: squashstretch 1.4s ease-in-out 0s infinite alternate;
}

@-webkit-keyframes squashstretch {
	0% {
		-webkit-transform: translateY(0);
		        transform: translateY(0); 
	}
	
	10% { 
		width: 4vh;
		height: 3vh;
	}
	
	50% { 
		width: 3vh;
		height: 4vh;
		-webkit-transform: translateY(-10vh);
		        transform: translateY(-10vh);
	}
}

@keyframes squashstretch {
	0% {
		-webkit-transform: translateY(0);
		        transform: translateY(0); 
	}
	
	10% { 
		width: 4vh;
		height: 3vh;
	}
	
	50% { 
		width: 3vh;
		height: 4vh;
		-webkit-transform: translateY(-10vh);
		        transform: translateY(-10vh);
	}
}


.font-white {
  color: rgba(255, 255, 255, 1) !important;
}

a.font-white:hover, a.font-white:focus {
  color: rgba(255, 255, 255, 1)!important;
}

.font-white-high {
  color: rgba(245, 245, 245, 0.87) !important;
}

a.font-white-high:hover, a.font-white-high:focus {
  color: rgba(255, 255, 255, 1)!important;
}

.font-white-med {
  color: rgba(33, 33, 33, 0.6) !important;
}

a.font-white-med:hover, a.font-white-med:focus {
  color: rgba(255, 255, 255, 1)!important;
}


.font-dark {
  color: #fe351c;
}

a.font-dark:hover, a.font-dark:focus {
  color: orangered;
}

.active {
    color: #fa4138; !important;
}

.font-dark-high {
  color: rgba(33, 33, 33, 0.87);
}

a.font-dark-high:hover, a.font-dark-high:focus {
  color: rgba(21, 98, 158, 0.87);
}

.font-dark-med {
  color: rgba(33, 33, 33, 0.7); !important;
}

a.font-dark-med:hover, a.font-dark-med:focus {
  color: rgba(153, 153, 153, 0.6); !important;
}

.font-blue {
    color: #BE9300; !important;
}

.font-blue a, p {
    color: #BE9300; !important;
}

.font-blue-med {
  color: rgba(5, 76, 127, 0.87); !important;
}

a.font-blue-med:hover, a.font-dark-med:focus {
  color: rgba(5, 76, 127, 0.87); !important;
}

.font-bold {
    font-weight: 500; !important;
}

.font-bold2 {
    font-weight: 300; !important;
}

.font-dark-disabled {
  color: rgba(13, 13, 13, 0.75) !important;
}

a.font-dark-disabled:hover, a.font-dark:focus {
  color: rgba(21, 98, 158, 0.38)!important;
}

.move-up-1 {
    transform: translateY(-5%);
}

.move-left {
    transition: 1s ease-in;
    transition-property: all;
    transform: translateX(0%);
}

.move-left:hover {
    transition: 750ms ease-out;
    transition-property: all;
    transform: translateX(-5%);
}


.font-gold {
    color: #be9300; !important;
}

.font-gold:hover {
    color: #a88202; !important;
}

.font-Xlarge {
    font-size: 3rem;
    font-weight: 700; !important;
    letter-spacing: -0.6px;
}


.font-Xlarge3 {
    font-size: 15vw;
    font-weight: 400; !important;
    letter-spacing: -0.05rem;
    line-height: 3rem;
    text-shadow: 2px 2px 7px rgba(33,33,33,0.81);
}


.font-Xlarge2 {
    font-size: 3rem;
    font-weight: 400; !important;
    letter-spacing: -0.05rem;
    line-height: 3rem;
    text-shadow: 2px 2px 7px rgba(33,33,33,0.81);
}

.font-large {
    font-size: 2rem;
    font-weight: 700; !important;
    letter-spacing: -0.3px;
}

.font-large2 {
    font-size: 2rem;
    font-weight: 400; !important;
    letter-spacing: -0.3px;
}

.font-body {
    font-size: 1.5rem;
    font-weight: 500; 
}

.font-body-400 {
    font-size: 1.25rem;
    font-weight: 400; !important;
}

.font-body-strong {
    font-size: 1.25rem;
    font-weight: 700; !important;
    letter-spacing: -0.5vh;
}


.font-small-400 {
    font-size: 0.8333rem;
    font-weight: 400; !important;
}

.font-small-300 {
    font-size: 0.8333rem;
    font-weight: 300; !important;
}

.font-small {
    font-size: 0.6333rem;
    font-weight: 500; !important;
}


.font-md {
    font-size: 0.8333rem;
    font-weight: 400; !important;
}


.font-small-wide {
    font-size: 0.8333rem; !important;
    font-weight: 400; !important;
    letter-spacing: 0.25vh; !important;
}

.font-small-strong {
    font-size: 0.8333rem;
    font-weight: 600; !important;
    letter-spacing: -0.15vh;
}

.font-small-nav {
    font-size: 0.7333rem;
    font-weight: 600; !important;
    letter-spacing: 0.02rem;
}

.font-Xsmall {
    font-size: 0.6rem;
    font-weight: 500; !important;
    letter-spacing: 0.025rem;
}

.dropdown:hover .dropdown-menu{display:block}

.text-dark {
    color: #050505; !important;
}

.text-black {
    color: #050505; !important;
}


.font-muted {
  color: #999999 !important;
}

.font-light-mode {
  color: #f8f9fa !important;
    text-decoration: none;
}

a.font-light-mode:hover, a.font-light-mode:focus {
  color: #cbd3da !important;
}

.font-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}


@media screen and (max-width: 1706px) {

    .w-lg-50     {
        min-width: 50vw; !important;
    }
    
    
    .w-lg-100     {
        min-width: 100vw; !important;
    }
    
.card-square {
    width: 25vw; !important;
    height: 25vw; !important;
    align-content: center; !important;
    align-items: center; !important;
}

    
.w-lg-40 {
  min-width: 40vw; !important;
}
}


@media screen and (max-width: 1200px) {
  
.card-square {
    width: 25vw; !important;
    height: 25vw; !important;
    align-content: center; !important;
    align-items: center; !important;
}


    .w-lg-50     {
        min-width: 50vw; !important;
    }
    
    
    .w-lg-100     {
        min-width: 100vw; !important;
    }
  
.w-lg-40 {
  min-width: 40vw; !important;
}
    
}


@media screen and (max-width: 992px) {
  
.card-square {
    width: 25vw; !important;
    height: 25vw; !important;
    align-content: center; !important;
    align-items: center; !important;
}


    .w-md-50     {
        min-width: 50vw; !important;
    }
    
    
    .w-md-100     {
        min-width: 100vw; !important;
    }
    
.w-md-40 {
  min-width: 40vw; !important;
} 
    
}


@media screen and (max-width: 768px) {
  
.card-square {
    width: 50vw; !important;
    height: 50vw; !important;
    align-content: center; !important;
    align-items: center; !important;
}


    .w-sm-50     {
        min-width: 50vw; !important;
    }
    
    
    .w-sm-100     {
        min-width: 100vw; !important;
    }
    
    
.w-md-40 {
  min-width: 40vw; !important;
}
    
}

@media screen and (max-width: 576px) {
  
.card-square {
    width: 75vw; !important;
    height: 75vw; !important;
    align-content: center; !important;
    align-items: center; !important;
}
    

    .w-sm-50     {
        min-width: 50vw; !important;
    }
    
    
    .w-sm-100     {
        min-width: 100vw; !important;
    }
  
    
.w-sm-40 {
  min-width: 40vw; !important;
}
    
}

.hidden {
    display: none;
    opacity: 0;
    transition: 250ms ease;
}

/* Rounded tabs */

@media (min-width: 576px) {
  .rounded-nav {
    border-radius: 50rem !important;
  }
}

@media (min-width: 576px) {
  .rounded-nav .nav-link {
    border-radius: 50rem !important;
  }
}

/* With arrow tabs */

.with-arrow .nav-link.active {
  position: relative;
}

.with-arrow .nav-link.active::after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #061315;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

/* lined tabs */

.lined .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
}

.lined .nav-link:hover {
  border: none;
  border-bottom: 3px solid transparent;
}

.lined .nav-link.active {
  background: none;
  color: #212121;
  border-color: #061315;
}

section.pricing {
  background: #fcfcfc;
  background: linear-gradient(to right, #fcfcfc, #fefefe);
}

.pricing .card {
  border: none;
    background-color: #ffffff;
  border-radius: 1rem;
  transition: all 0.2s;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.pricing hr {
  margin: 1.5rem 0;
}

.pricing .card-title {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  letter-spacing: .1rem;
  font-weight: bold;
}

.pricing .card-price {
  font-size: 3rem;
  margin: 0;
}

.pricing .card-price .period {
  font-size: 0.8rem;
}

.pricing ul li {
  margin-bottom: 1rem;
}

.pricing .font-muted {
  opacity: 0.7;
}

.pricing .btn {
  font-size: 80%;
  border-radius: 5rem;
  letter-spacing: .1rem;
  font-weight: bold;
  padding: 1rem;
  opacity: 0.7;
  transition: all 0.2s;
}

/* Hover Effects on Card */

@media (min-width: 992px) {
  .pricing .card:hover {
    margin-top: -.25rem;
    margin-bottom: .25rem;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
  }
  .pricing .card:hover .btn {
    opacity: 1;
  }
}

.parallax {
	 font-style: normal;
	 font-weight: normal;
	 -webkit-font-smoothing: antialiased;
	 -webkit-font-kerning: normal;

	 
	 transform-style: preserve-3d;
	 transform: perspective(60rem);
	 position: fixed;
	 display: flex;
}
 .Menu-list {
	 font-transform: uppercase;
	 text-align: center;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 transform: rotateX(-10deg) rotateY(20deg);
     transition: 450ms ease-out;
}

.Menu-list:hover {
	 font-transform: uppercase;
	 text-align: center;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 transform: rotateX(0deg) rotateY(0deg);
    transition: 320ms ease-in;
}

 .Menu-list-item {
	 position: relative;
	 color: transparent;
	 cursor: pointer;
}
 .Menu-list-item::before {
	 content: '';
	 display: block;
	 position: absolute;
	 top: 49%;
	 left: -10%;
	 right: -10%;
	 height: 4px;
	 border-radius: 4px;
	 margin-top: -2px;
	 background: #0d0d0d;
	 transform: scale(0);
	 transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
	 z-index: 1;
}
 .Mask {
	 display: block;
	 position: absolute;
	 overflow: hidden;
	 color: #0d0d0d;
	 top: 0;
	 height: 49%;
	 transition: all 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}
 .Mask span {
	 display: block;
}
 .Mask + .Mask {
	 top: 48.9%;
	 height: 51.1%;
}
 .Mask + .Mask span {
	 transform: translateY(-49%);
}
 .Menu-list-item:hover .Mask, .Menu-list-item:active .Mask {
	 color: #0e72ec;
	 transform: skewX(12deg) translateX(5px);
}
 .Menu-list-item:hover .Mask + .Mask, .Menu-list-item:active .Mask + .Mask {
	 transform: skewX(12deg) translateX(-5px);
}
 .Menu-list-item:hover::before, .Menu-list-item:active::before {
	 transform: scale(1);
}
 

#section04 a {
  padding-top: 60px;
}
#section04 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb04 2s infinite;
  animation: sdb04 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb04 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes sdb04 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}

.demo a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 1;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #ffffff; !important
  font : normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}
.demo a:hover {
  opacity: .5;
}


.shadow-effect {
		    background: #fff;
		    padding: 20px;
		    border-radius: 30px;
		    text-align: center;
	border:1px solid #ECECEC;
		    box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
		}

		#customers-testimonials .shadow-effect p {
		    font-family: inherit;
		    font-size: 17px;
		    line-height: 1.5;
		    margin: 0 0 17px 0;
		}
		.testimonial-name {
		    margin: -17px auto 0;
		    display: table;
		    width: auto;
		    background: #343a40;
		    padding: 9px 35px;
		    border-radius: 12px;
		    text-align: center;
		    color: #fff;
		    box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
		}
		#customers-testimonials .item {
		    text-align: center;
		    padding: 50px;
				margin-bottom:80px;
            width: 300px;
		    opacity: .87;
		    -webkit-transform: scale3d(0.8, 0.8, 1);
		    transform: scale3d(0.8, 0.8, 1);
		    -webkit-transition: all 0.3s ease-in-out;
		    -moz-transition: all 0.3s ease-in-out;
		    transition: all 0.3s ease-in-out;
		}
		#customers-testimonials .owl-item.active.center .item {
		    opacity: 1;
		    -webkit-transform: scale3d(1.0, 1.0, 1);
		    transform: scale3d(1.0, 1.0, 1);
		}
		.owl-carousel .owl-item img {
		    transform-style: preserve-3d;
		    max-width: 600px;
    		margin: 0 auto 17px;
		}
		#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
		    background: #343a40;
		    transform: translate3d(0px, -50%, 0px) scale(0.7);
		}
#customers-testimonials.owl-carousel .owl-dots{
	display: inline-block;
	width: 100%;
	text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
	display: inline-block;
}
		#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
		    background: #4c4c4c;
		    display: inline-block;
		    height: 20px;
		    margin: 0 2px 5px;
		    transform: translate3d(0px, -50%, 0px) scale(0.3);
		    transform-origin: 50% 50% 0;
		    transition: all 250ms ease-out 0s;
		    width: 20px;
		}



.square{
	height: 170px;
    width: 170px;
    transform: rotate(-20deg);
    box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -20px 20px 55px, rgba(255, 255, 255, 0.6) -2px 2px 2px 1px inset, rgba(255, 255, 255, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 2px 0px inset;
    border-radius: 26%;
    background: linear-gradient(60deg, rgb(245, 245, 245), rgb(250, 250, 250));
	position: absolute;
}

a .neu-font {
    text-decoration: none; !important;
    color: #eaeaea;
    font-weight: 400;
}

a.neu-font:hover, a.neu-font:focus,
button.neu-font:hover,
button.neu-font:focus {
  color: #999999 !important;
    text-decoration: none; !important;
}

.green-pill-btn{
  width:8.333rem;
  height:1.5rem;
    padding: 1rem;
	border-radius: 2rem;
	background: #29ae34;
   box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -5px 0px 55px, rgba(43, 174, 57, 0.6) -2px 2px 2px 1px inset, rgba(43, 174, 57, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 2px 0px inset;
	 border: 3px solid rgba(43, 174, 57,.05);
    transition: 450ms ease-in;
}


.green-pill-btn a{
  text-decoration: none; !important;
    color: #ffffff;
    font-weight: 400;
    font-transform: uppercase;
}

.green-pill-btn:hover{
    height: 3rem; !important; 
	background: #29ae34;
    box-shadow: rgba(161, 212, 167, 0.5) -3px 3px 6px, rgba(161, 212, 167, 0.55) -5px 0px 12px, rgba(43, 174, 57, 0.6) -2px 2px 2px 1px inset, rgba(43, 174, 57, 0.4) 2px 2px 3px 0px inset, rgba(161, 212, 167, 0.5) 1px 1px 2px 0px inset;
    border: 3px solid rgba(43, 174, 57,.5);
    transition: 320ms ease-out;
}

.green-pill-btn:hover a{
    color: #fff;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
    height: 
    z-index: 1;
    height: auto;
    overflow: hidden;
background: rgba(5, 76, 127,0.25);
    transition: 450ms ease-in;
    transition-property: all;
}

.card-img-overlay:hover {
background: rgba(5, 76, 127,0);
    transition: 320ms ease-out;
}

.neu-circle-btn{
	height: 48px;
	width: 48px;
	border-radius: 50%;
	background: #F8F8F8;
   box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -5px 0px 55px, rgba(255, 255, 255, 0.6) -2px 2px 2px 1px inset, rgba(255, 255, 255, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 2px 0px inset;
	 border: 3px solid rgba(255,255,255,.05);
    transform: scale(1);
    transition: 420ms ease-out;
}


.neu-circle-btn a{
  text-decoration: none; !important;
    color: #eaeaea;
    font-weight: 400;
    font-transform: uppercase;
}


.neu-circle-btn:hover{
	height: 48px;
	width: 48px;
	border-radius: 25%;
	background: #F8F8F8;
   box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -5px 0px 25px, rgba(255, 255, 255, 0.6) -2px 2px 2px 1px inset, rgba(255, 255, 255, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 2px 0px inset;
	 border: 3px solid rgba(255,255,255,.05);
    transform: scale(1.1);
    transition: 320ms ease-in;
}

.neu-circle-btn:hover a{
    color: #999999;
}

.neu-pill-btn{
  width:200px;
  height:36px;
	border-radius: 18px;
	background: #F8F8F8;
   box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -5px 0px 55px, rgba(255, 255, 255, 0.6) -2px 2px 2px 1px inset, rgba(255, 255, 255, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 2px 0px inset;
	 border: 3px solid rgba(255,255,255,.05);
    transform: translateY(0%);
    transition: 420ms ease-out;
}


.neu-pill-btn a{
  text-decoration: none; !important;
    color: #eaeaea;
    font-weight: 400;
    font-transform: uppercase;
}

.neu-pill-btn:hover{
  width:200px;
  height:48px;
	border-radius: 24px;
	background: #F8F8F8;
     box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -5px 0px 12px, rgba(255, 255, 255, 0.6) -2px 2px 2px 1px inset, rgba(255, 255, 255, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 2px 0px inset;
	 border: 3px solid rgba(255,255,255,.05);
    transform: translateY(-15%);
    transition: 320ms ease-in;
}

.neu-pill-btn:hover a{
    color: #999999;
}

.neu-square-btn{
	height: 96px;
	width: 96px;
	border-radius: 25%;
	background: #F8F8F8;
   box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -5px 0px 55px, rgba(255, 255, 255, 0.6) -2px 2px 2px 1px inset, rgba(255, 255, 255, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 2px 0px inset;
	 border: 3px solid rgba(255,255,255,.05);
    transform: scale(1);
    transition: 420ms ease-out;
}


.neu-square-btn:hover{
	height: 96px;
	width: 96px;
	border-radius: 50%;
	background: #F8F8F8;
   box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -5px 0px 25px, rgba(255, 255, 255, 0.6) -2px 2px 2px 1px inset, rgba(255, 255, 255, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 2px 0px inset;
	 border: 3px solid rgba(255,255,255,.05);
    transform: scale(1.2);
    transition: 320ms ease-in;
}


.animated-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    line-height: 5vw;
    display: inline-block;
    text-align: center;
    background: #f8f8f8;
    border-color: #fcfcfc;
    position: relative;
   box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -5px 0px 35px, rgba(255, 255, 255, 0.6) -2px 2px 2px 1px inset, rgba(255, 255, 255, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.02) 1px 1px 2px 0px inset;
	 border: 3px solid rgba(255,255,255,.02);
  text-decoration: none; !important;
    color: #eaeaea;
    font-weight: 400;
    font-transform: uppercase;
}

.animated-btn::before, .animated-btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    color: #eaeaea;
    background: rgba(234, 234, 234, 0.8);
    animation: ripple-1 2s ease-in-out;
    z-index: -1;
    box-shadow: inset -6px -6px 12px #f8f8f8, 
            inset 6px 6px 12px #fcfcfc;
}

.animated-btn::after {
    background: rgba(209, 209, 209, 0.6);
    animation: ripple-2 2s ease-in-out;
    animation-delay: 0.5s;
    color: #eaeaea;
   box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -5px 0px 25px, rgba(255, 255, 255, 0.6) -2px 2px 2px 1px inset, rgba(255, 255, 255, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.02) 1px 1px 2px 0px inset;
	 border: 3px solid rgba(255,255,255,.02);
}

@keyframes ripple-1 {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes ripple-2 {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}


//.animated-btn:hover {
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    background: #f8f8f8; 
    position: relative;
    box-shadow: inset -5px -5px 10px #f8f8f8, 
            inset 5px 5px 10px #fcfcfc;
    color: #999999;
}

.animated-btn:hover::before, .animated-btn:hover::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: rgba(234, 234, 234, 0.8);
    animation: ripple-1 2s infinite ease-in-out;
    z-index: -1;
    color: #999999;
    box-shadow: inset -5px -5px 10px #f8f8f8, 
            inset 5px 5px 10px #fcfcfc;
}

.animated-btn:hover::after {
    background: rgba(209, 209, 209, 0.6);
    animation: ripple-2 2s infinite ease-in-out;
    animation-delay: 0.5s;
    color: #999999;
   box-shadow: rgba(0, 0, 0, 0.05) -3px 3px 6px, rgba(0, 0, 0, 0.055) -5px 0px 25px, rgba(255, 255, 255, 0.6) -2px 2px 2px 1px inset, rgba(255, 255, 255, 0.4) 2px 2px 3px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 2px 0px inset;
	 border: 3px solid rgba(255,255,255,.05);
}

@keyframes ripple-1 {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes ripple-2 {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.wrapper {
	margin: 50px;
	width: 300px;
	height: 300px;
	overflow: hidden;
	position:relative;
}

#navbar {
  position: fixed;
    width: 100vw;
  top: 0;
    padding: 1rem; !important;
  display: block;
  transition: top 320ms ease-out;
    z-index: 2;

}

#navbar a {
  display: block;
}

navbar div ul {
    vertical-align: middle;
}



.btn-blue {
  color: #fff;
  background-color: #fe351c; !important;
  border-color: #f93f28; !important;
    transition-property: all; !important;
    transition: 320ms ease-out; !important;
    transform: translateY(0%); !important;
}

.btn-blue:hover {
  color: #fff;
  background-color: #f93f28; !important;
  border-color: #f6523e; !important;
    transition-property: all; !important;
    transition: 420ms ease-out; !important;
    transform: translateY(-5%); !important;
    box-shadow: 0px 10px 10px -2px rgba(198,161,33, 0.45);  !important;
}

.btn-blue:focus, .btn-blue.focus {
  color: #fff;
  background-color: #d8be66; !important;
  border-color: #e7d38d; !important;
  box-shadow: 0 0 0 0.2rem rgba(198,161,33, 0.5); !important;
}

.btn-blue.disabled, .btn-blue:disabled {
  color: #fff;
  background-color: #e7d38d; !important;
  border-color: #e7d38d; !important;
}


.btn-green {
  color: #fff;
  background-color: #29ae34;
  border-color: #29ae34;
    transition-property: all;
    transition: 320ms ease-out;
    transform: translateY(0%);
}

.btn-green:hover {
  color: #fff;
  background-color: #42e34f;
  border-color: #42e34f;
    transition-property: all;
    transition: 320ms ease-out;
    transform: translateY(-5%);
    box-shadow: 0px 10px 10px -2px rgba(66, 227, 79, 0.45); 
}

.btn-green:focus, .btn-green.focus {
  box-shadow: 0 0 0 0.2rem rgba(66, 227, 79, 0.5);
}

.btn-green.disabled, .btn-green:disabled {
  color: #fff;
  background-color: rgba(66, 227, 79, 0.35);
  border-color: rgba(66, 227, 79, 0.35);
}

.btn-green:not(:disabled):not(.disabled):active, .btn-green:not(:disabled):not(.disabled).active,
.show > .btn-green.dropdown-toggle {
  color: #fff;
  background-color: rgba(66, 227, 79, 0.95);
  border-color: rgba(66, 227, 79, 0.95);
}

.btn-green:not(:disabled):not(.disabled):active:focus, .btn-green:not(:disabled):not(.disabled).active:focus,
.show > .btn-green.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(66, 227, 79, 0.5);
}


.btn-black {
  color: #fff;
  background-color: #050505; !important;
  border-color: #212121; !important;
    transition-property: all; !important;
    transition: 320ms ease-out; !important;
    transform: translateY(0%); !important;
}

.btn-black:hover {
  color: #fff;
  background-color: #212121; !important;
  border-color: #121212; !important;
    transition-property: all; !important;
    transition: 420ms ease-out; !important;
    transform: translateY(-5%); !important;
    box-shadow: 0px 10px 10px -2px rgba(198,161,33, 0.45);  !important;
}

.btn-black:focus, .btn-black.focus {
  color: #fff;
  background-color: #212121; !important;
  border-color: #121212; !important;
  box-shadow: 0 0 0 0.2rem rgba(198,161,33, 0.5); !important;
}

.btn-black.disabled, .btn-black:disabled {
  color: #fff;
  background-color: #4c4c4c; !important;
  border-color: #eaeaea; !important;
}


.btn-success {
  color: #fff;
  background-color: #29ae34; !important;
  border-color: #29ae34; !important;
    transition-property: all; !important;
    transition: 320ms ease-out; !important;
    transform: translateY(0%); !important;
}

.btn-success:hover {
  color: #fff;
  background-color: #42e34f; !important;
  border-color: #42e34f; !important;
    transition-property: all; !important;
    transition: 420ms ease-out; !important;
    transform: translateY(-5%); !important;
    box-shadow: 0px 10px 10px -2px rgba(66, 227, 79, 0.45);  !important;
}

.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #29ae34; !important;
  border-color: #1e7e34; !important;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); !important;
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #68876b; !important;
  border-color: #68876b; !important;
}

@media screen and (max-width: 768px) {
.h-mobile-100 {
    height: 100vh; !important;
    max-height: 100vh; !important;
    }
}

@media screen and (max-width: 992px) {
.h-mobile-100 {
    height: 100vh; !important;
    max-height: 100vh; !important;
    }
}


@media screen and (max-width: 1200px) {
.h-mobile-100 {
    height: 80vh; !important;
    max-height: 80vh; !important;
    }
}

@media screen and (max-width: 1706px) {
.h-mobile-100 {
    height: 80vh; !important;
    max-height: 80vh; !important;
    }
}

@media screen and (max-width: 1920px) {
.h-mobile-100 {
    height: 80vh; !important;
    max-height: 80vh; !important;
    }
}

.card {
    transition-property: all; !important;
    transition: 320ms ease-out; !important;
    transform: translateY(0%); !important;
}


.card:hover {
    transition-property: all; !important;
    transition: 420ms ease-out; !important;
    transform: translateY(-5%); !important;
}


.btn-right {
    transition-property: all; !important;
    transition: 250ms ease-out; !important;
    transform: translateX(0%); !important;
}


.btn-right:hover {
    transition-property: all; !important;
    transition: 320ms ease-out; !important;
    transform: translateX(3%); !important;
}

.vid-75{
    width: auto;
    min-width: 60vw; !important;
    margin-bottom: 0;
    overflow:hidden;
    display:block;
    height: 75vh; !important;
    background-size: cover;
}

#video{
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}


.count {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Carousel*/
        
.carousel,
.carousel-item,
.active {
            height: 100%;
        }
        
.carousel-inner {
            height: 100%;
        }
        
.flex-center {
            color: #fff;
        }
        
.carousel-caption {
            height: 100%;
            padding-top: 7rem;
        }

.square-spinner {
    width: 55px;
    display: block;
    background-color: #1765a2;
    height: 55px;
    -webkit-animation: 500ms rotate2 ease-in-out infinite;
    animation: 3s flip ease-in-out infinite;
}

@-webkit-keyframes flip {
    0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    25% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
    }
    50% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    }
    75% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(-180deg);
    transform: perspective(120px) rotateX(0deg) rotateY(-180deg);
    }
    100% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(-360deg);
    transform: perspective(120px) rotateX(0deg) rotateY(-360deg);
    }
}
  
@keyframes flip {
    0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    25% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
    }
    50% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    }
    75% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(-180deg);
    transform: perspective(120px) rotateX(0deg) rotateY(-180deg);
    }
    100% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(-360deg);
    transform: perspective(120px) rotateX(0deg) rotateY(-360deg);
    }
}
