:root{
    --theme-dark-blue: rgba(6,37,78,1);
    --theme-darker-blue:rgba(6,37,78,0.5);
    --theme-light-blue: rgba(28,59,100,1);
    --theme-grey: rgba(126,129,141,1);
    /* --theme-black: rgba(20, 20, 20, 0.5); */
    --theme-black: rgba(10, 10, 10, 0.5) !important;
    --theme-white: rgba(255,255,228,1);
    --theme-mint: rgb(109, 152, 134);
    --theme-mint: rgb(109, 152, 134);
    --theme-4: #ECDBBA;
    --theme-orange: rgb(255, 130, 67);
    --theme-dark-orange: #EE3B24;
    --font-sans: "Calibre Regular","Inter","San Francisco","SF Pro Text",-apple-system,system-ui,sans-serif;
    --font-mono: "SF Mono Light","Fira Code","Fira Mono","Roboto Mono",monospace;
    --fz-xxs: 12px;
    --fz-xs: 13px;
    --fz-sm: 14px;
    --fz-md: 16px;
    --fz-lg: 18px;
    --fz-xl: 20px;
    --fz-xxl: 22px;
    --fz-heading: 32px;
    --border-radius: 4px;
    --nav-height: 100px;
    --nav-scroll-height: 70px;
    --tab-height: 42px;
    --tab-width: 120px;
    --easing: cubic-bezier(0.645,0.045,0.355,1);
    --transition: all 0.25s cubic-bezier(0.645,0.045,0.355,1);
    --hamburger-width: 30px;
    --ham-before: top 0.1s ease-in 0.25s,opacity 0.1s ease-in;
    --ham-before-active: top 0.1s ease-out,opacity 0.1s ease-out 0.12s;
    --ham-after: bottom 0.1s ease-in 0.25s,transform 0.22s cubic-bezier(0.55,0.055,0.675,0.19);
    --ham-after-active: bottom 0.1s ease-out,transform 0.22s cubic-bezier(0.215,0.61,0.355,1) 0.12s;
    
}
@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes animatescroll
{

    0%
    {
        transform: translateY(0);
        opacity:0.5;
    }
    50%
    {
        transform: translateY(65px);
        opacity:1;
    }
    100%
    {
        transform: translateY(160px);
        opacity:0;
    }
}
@keyframes rotate
{
    0%
    {
        transform:  rotate(45deg);
    }
    100%
    {
        transform: rotate(405deg);
    }
}
@keyframes bounce {
    0% {
      transform: scale(1.2);
    }
    50% {
      transform: scale(1.4);
    }
    100% {
      transform: scale(1.2);
    }
}
@font-face {
    font-family: 'SF Mono';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SFMonoRegular.woff') format('woff');
}
@font-face {
    font-family: 'SF Mono';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SFMonoRegular.woff') format('woff');
}
@font-face {
    font-family: 'SF Mono Light';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SFMonoLight.woff') format('woff');
}
@font-face {
    font-family: 'Calibre Regular';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Calibre-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Calibre Medium';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Calibre-Medium.woff') format('woff');
}

body{
    margin: 0px;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-color: black;
    color: var(--slate);
    font-family: var(--font-sans);
    font-size: var(--fz-xl);
    line-height: 1.3;
    counter-reset: section;
    scroll-behavior: smooth;
    margin-top:100px !important;
    color: var(--theme-white);
}
/* width */
::-webkit-scrollbar {
    width: 8px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme-white);
    opacity: 0.5;
    border-radius: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: var(--theme-grey);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--theme-white);
    opacity: 0.5;
}
:focus {
    /* outline: 2px dashed var(--theme-white) !important; */
    outline-offset: 3px;
}
a {
    display: inline-block;
    text-decoration: none;
    text-decoration-skip-ink: auto;
    color: inherit;
    color: var(--theme-orange);
    position: relative;
    transition: var(--transition);
}
a:hover, a:focus {
    /* color: currentColor; */
    color: var(--theme-orange);
}
button {
    cursor: pointer;
    border: 0px;
    border-radius: 0px;
}
svg {
    width: 100%;
    height: 100%;
    fill: currentcolor;
    vertical-align: middle;
}
img, svg, .gatsby-image-wrapper {
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px 0px 10px;
    font-weight: 600;
    color: var(--theme-orange);
    line-height: 1.1;
}
p > a {
    display: inline-block;
    text-decoration: none;
    text-decoration-skip-ink: auto;
    position: relative;
    transition: var(--transition);
    color: var(--theme-white);
}
button:focus:not(:focus-visible) {
    outline: 0 !important;
}
.dropdown-menu{
    background-color: var(--theme-mint);
}
a.inline-link::after {
    content: "";
    display: block;
    width: 0px;
    height: 1px;
    position: relative;
    bottom: 0.37em;
    background-color: var(--theme-white);
    transition: var(--transition);
    opacity: 0.5;
}
.uppercase{
    text-transform: uppercase;
}
.underline-effect::before, .underline-effect::after{
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
}
.underline-effect::before{
    content: '';
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}
.underline-effect:hover::before, .underline-effect:focus::before{
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
section{
    max-width: 100vw;
}
.overflowy-hidden{
    overflow-y: hidden;
}
.overflowy-scroll{
    overflow-y: scroll;
}
.social li a:hover{
    /* color: #EE3B24 ; */
    transform: scale(1.1);
}
.shadow-white-lg{
    box-shadow: 0 1rem 3rem rgba(255,255,255,.175)!important;
}
.fontismono{
    font-family: var(--font-mono);
}
.fontissans{
    font-family: var(--font-sans);
}
#initiatives{
    background-color: var(--theme-darker-blue);
    /* padding-top: 110px !important; */
}
.theme-darker-blue-bg{
    background-color: var(--theme-darker-blue);
}
.heading-div{
    text-align: -webkit-center;
}
.heading-div h1, .heading-div h2, .heading-div h3, .heading-div h4, .heading-div h5, .heading-div h6{
    width: fit-content;
    position: relative;
}
.fadein-text-slow{
    animation: fadeIn linear 1s;
}


/* Navbar */

.nav-header{
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    position: fixed;
    top: 0px;
    z-index: 11;
    padding: 0px 45px;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--theme-black);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    filter: none !important;
    pointer-events: auto !important;
    user-select: auto !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.nav {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    color: var(--theme-white);
    font-family: var(--font-mono);
    counter-reset: item 0;
    z-index: 12;
}
.nav .logo {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}
.nav .logo a {
    color: var(--theme-white);
}
#logo1{
    display: none;
}

.navLinks {
    display: none;
    -webkit-box-align: center;
    align-items: center;
}
.navLinks > ul {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.navLinks > ul li {
    margin: 0px 5px;
    position: relative;
    counter-increment: item 1;
    font-size: var(--fz-sm);
}
.navLinks > ul li a {
    padding: 8px;
}
.navLinks > ul > li:last-child a{
    padding-right: 0px;
} 
.navLinks > ul > li:first-child a{
    padding-left: 0px;
} 
.navLinks > ul li a::before {
    margin-right: 5px;
    color: var(--theme-white);
    font-size: var(--fz-xxs);
    text-align: right;
}
.sidebar{
    display: block;
}
.sidebar-btn {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-right: -15px;
    padding: 15px;
    border: 0px;
    background-color: transparent;
    color: inherit;
    text-transform: none;
    transition-timing-function: linear;
    transition-duration: 0.15s;
    transition-property: opacity, filter;
}
.sidebar-btn .ham-box {
    display: inline-block;
    position: relative;
    width: var(--hamburger-width);
    height: 24px;
}
.sidebar-btn .ham-box-inner {
    position: absolute;
    top: 50%;
    right: 0px;
    width: var(--hamburger-width);
    height: 2px;
    border-radius: var(--border-radius);
    background-color: var(--theme-white);
    transition: transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
    transform: rotate( 
0deg);
}
.sidebar-btn .ham-box-inner::before, .sidebar-btn .ham-box-inner::after {
    content: "";
    display: block;
    position: absolute;
    left: auto;
    right: 0px;
    width: var(--hamburger-width);
    height: 2px;
    border-radius: 4px;
    background-color: var(--theme-white);
    transition-timing-function: ease;
    transition-duration: 0.15s;
    transition-property: transform;
}
.sidebar-btn .ham-box-inner::before {
    width: 120%;
    top: -10px;
    opacity: 1;
    transition: var(--ham-before);
}
.sidebar-btn .ham-box-inner::after {
    width: 80%;
    bottom: -10px;
    transform: rotate( 
0deg);
    transition: var(--ham-after);
}
.navAside {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    padding: 50px 10px;
    width: min(75vw, 400px);
    height: 100vh;
    outline: 0px;
    background-color: var(--light-navy);
    box-shadow: -10px 0px 30px -15px var(--navy-shadow);
    z-index: 9;
    transform: translateX(100vw);
    visibility: hidden;
    transition: var(--transition);
}
.navAside nav {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    color: var(--lightest-slate);
    font-family: var(--font-mono);
    text-align: center;
}
.navAside nav > ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    width: 100%;
}
.navAside nav > ul li {
    position: relative;
    margin: 0px auto 20px;
    counter-increment: item 1;
    font-size: clamp(var(--fz-sm),4vw,var(--fz-lg));
}
.navAside nav > ul a {
    display: inline-block;
    text-decoration: none;
    text-decoration-skip-ink: auto;
    color: inherit;
    position: relative;
    transition: var(--transition);
    width: 100%;
    padding: 3px 20px 20px;
}
.navAsideOpen {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    position: fixed;
    overflow-y: scroll;
    top: 0px;
    bottom: 0px;
    right: 0px;
    padding: 50px 10px;
    width: min(75vw, 400px);
    min-height: 100vh;
    outline: 0px;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: -10px 0px 30px -15px var(--navy-shadow);
    z-index: 9;
    transform: translateX(0vw);
    visibility: visible;
    transition: var(--transition);
}
.navAsideOpen nav {
    display: flex;
    margin-top: 80px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    color: var(--lightest-slate);
    font-family: var(--font-mono);
    text-align: center;
}

.navAsideOpen nav > ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    width: 100%;
}
.navAsideOpen nav > ul li {
    position: relative;
    margin: 0px auto 20px;
    counter-increment: item 1;
    font-size: clamp(var(--fz-sm),4vw,var(--fz-lg));
}
.navAsideOpen nav > ul a {
    display: inline-block;
    text-decoration: none;
    text-decoration-skip-ink: auto;
    color: inherit;
    position: relative;
    transition: var(--transition);
    width: 100%;
    padding: 3px 20px 20px;
}
.navAsideOpen .dropdown-menu li{
    margin-bottom: 0;
    text-align: center;
}
.sidebar-closebtn {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-right: -15px;
    padding: 15px;
    border: 0px;
    background-color: transparent;
    color: inherit;
    text-transform: none;
    transition-timing-function: linear;
    transition-duration: 0.15s;
    transition-property: opacity, filter;
}
.sidebar-closebtn .ham-box {
    display: inline-block;
    position: relative;
    width: var(--hamburger-width);
    height: 24px;
}
.sidebar-closebtn .ham-box-inner {
    position: absolute;
    top: 50%;
    right: 0px;
    width: var(--hamburger-width);
    height: 2px;
    border-radius: var(--border-radius);
    background-color: var(--green);
    transition: transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
    transform: rotate( 
225deg);
}
.sidebar-closebtn .ham-box-inner::before {
    width: 100%;
    top: 0px;
    opacity: 1;
    transition: var(--ham-before-active);
}
.sidebar-closebtn .ham-box-inner::after {
    width: 100%;
    bottom: 0px;
    transform: rotate( 
-90deg);
    transition: var(--ham-after-active);
}
.sidebar-closebtn .ham-box-inner::before, .sidebar-closebtn .ham-box-inner::after {
    content: "";
    display: block;
    position: absolute;
    left: auto;
    right: 0px;
    width: var(--hamburger-width);
    height: 2px;
    border-radius: 4px;
    background-color: var(--theme-white);
    transition-timing-function: ease;
    transition-duration: 0.15s;
    transition-property: transform;
}
.navAsideOpen .dropdown-menu{
    position: relative !important;
    width: 90% !important;
    margin: 0 auto !important;
    inset: 0!important;
    padding-top: 20px;
    transform: translate(0,0) !important;
    transition: var(--transition);
}

.vertical-socials{
    display: none;
    width: 40px;
    position: fixed;
    bottom: 30%;
    right: 40px;
    left: auto;
    z-index: 10;
}
.vertical-socials-inner{
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    list-style: none;
    color: var(--theme-white);
}
.vertical-socials-inner li a{
    padding: 10px;
}
.vertical-socials-inner li a:hover{
    color: #EE3B24 ;
}
.top-link{
    visibility: visible;
    z-index: 100;
    font-size: 1.25rem;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    background: var(--clr-secondary);
    width: 2rem;
    height: 2rem;
    display: none;
    place-items: center;
    border-radius: var(--radius);
    color: var(--clr-white);
    animation: bounce 2s ease-in-out infinite;
}





/* Home Section Starts */
#home{
    align-items: center;
    flex-direction: column;
    height:  calc(100vh - 100px);
    width: 100vw;
    overflow: hidden;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    max-width: 100vw;
}
#home h1, #home h2, #home h3, #home h4, #home h5, #home h6{
    font-family: var(--font-sans);
    /* text-shadow: 0 0 10px var(--theme-white); */
    color: var(--theme-white);
    margin-bottom: 15px;
}
#home h1{
    font-size: 2remem;
}
#home > img{
    width: 200px;
}
#home .center {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 0;
    height: 100px;
    border-left: 6px dashed rgba(255,255,255,.1);
}
#home .center .arrow {
    position: absolute;
    top: 0;
    left: -5px;
    height: 40px;
    width: 6px;
    background: #fff;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff, 0 0 80px #fff;
    animation: animatescroll 2s infinite;
}
#home .center .arrow::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: -7px;
    width: 20px;
    height: 20px;
    border-bottom: 6px solid #fff;
    border-right: 6px solid #fff;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff, 0 0 80px #fff;
    transform: rotate(45deg);
}
.threeIs{
    margin-top: 15px;
}
.threeIs span:nth-child(2)::before , .threeIs span:nth-child(2)::after{
    content:"•";
    padding: 0 15px;
}
.rotating1{
    opacity: 1;
    position: absolute;
    left: -10px;
    top: 5%;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    animation: rotate 30s linear infinite,fadeIn 1s linear forwards;
    /* animation-delay: 7s; */
    box-shadow: 0 0 20px #fff;
}
.rotating2{
    opacity: 1;
    position: absolute;
    bottom: -4rem;
    right: -75px;
    width: 10rem;
    height: 10rem;
    border: 1rem solid #fff;
    animation: rotate 40s linear infinite,fadeIn 1s linear forwards;
    /* animation-delay: 7s; */
    box-shadow: 0 0 20px #fff;
}

#about{
    background-color: var(--theme-darker-blue);
    /* background-color: white; */
    font-family: var(--font-sans);
    /* color: black; */
    color: var(--theme-white);
}
/* #about h2{
    font-family: var(--font-mono);
    color: black;
}  */
  
  button:focus {
    outline: none;
  }
  
  .deck {
    margin: 15px;
    /* width: 270px; */
    height: 380px;
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    font-family: var(--font-sans);
    border-radius: 10px;

  }
  
  .rcard {
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    border-radius: 10px;
  }
  
  .face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: whitesmoke;
    border-radius: 10px;
  }
  
  .back {
    overflow: hidden;
    z-index: -1;
    display: block;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    box-sizing: border-box;
    color: black;
  }
  .back:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: 100% 100%;
    /* background: url("https://i.imgur.com/W3tra4F.gif"); */
    background-color: var(--theme-mint);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  
  .front, .back {
    transition: all 0.5s linear;
  }
  
  .front {
    /* background-color: #2196f3; */
    background-image: url(https://images.unsplash.com/photo-1526289034009-0240ddb68ce3?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8M3x8ZGFyayUyMHBhdHRlcm58ZW58MHx8MHx8&w=1000&q=80); 
    background-repeat: no-repeat; 
    background-size: cover;
    z-index: 1;
    /* box-shadow: 5px 5px 5px #aaa; */
    /* position: relative; */
  }
  /* .front::after{
      position: absolute;
      top: 0;
      left:0;
      content: "";
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.01);
  } */
  /* .back {
    box-shadow: 0 0 0 #aaa;
  } */
  
  .flipped, .deck:hover .hovercard {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  /* .flipped .front, .hovercard:hover .front {
    box-shadow: 0 0 0 #aaa;
  } */
  /* .flipped .back, .hovercard:hover .back {
    box-shadow: 5px 5px 5px #aaa;
  } */
  
  .bottext {
    position: absolute;
    color: whitesmoke;
    width: 100%;
    height: 100px;
    bottom: 0;
    border-radius: 0 0 10px 10px;
    text-align: center;
    padding: 10px;
  }
  .bottext h2 {
    margin: 0;
  }
  .bottext h3 {
    margin: 10px 0;
  }
  
  .rad-button {
    border: 2px solid gray;
    color: gray;
    width: 90px;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 110px;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
  }
  
  .rad-button:hover {
    color: gray;
    background-color: white;
  }
  
  .front h2, .front h3 {
    text-align: center;
    color: whitesmoke;
  }
  
  .back h2 {
    margin: 0;
    border-radius: 10px 10px 0 0;
    padding: 10px;
    text-align: center;
    color: black;
  }
  .back ul {
    text-align: center;
    list-style: none;
    padding: 10px;
    margin: 0;
  }
  .back ul li {
    margin-top: 15px;
    color: whitesmoke;
  }
  .back .botprice {
    position: absolute;
    bottom: 30px;
    border-radius: 0 0 10px 10px;
    text-align: center;
    width: 100%;
    padding: 15px;
    color: whitesmoke;
  }
  .back .botprice h3 {
    margin: 0px;
  }
  
  .return {
    position: absolute;
    width: 100%;
    background-color: transparent;
    border: none;
    color: gray;
    cursor: pointer;
    padding: 5px;
    bottom: 0;
    border-radius: 0 0 10px 10px;
    background-color: gainsboro;
    font-size: 18px;
  }
  .return:focus {
    outline: none;
  }


.init-section {
    position: relative;
    background: url(../imgs/city.jpg);
    background-size: cover;
    min-height: 80vh;
    background-attachment: fixed;
    max-width: 100vw;
    padding: 0;
    width: 100vw;
}
.init-section::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: rgba(0,0,0,0.8);
    pointer-events: none;
}
.init-section-heading {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.init-section-heading h2{
    z-index: 1;
    position: relative;
}
.init-bx{
    text-align: center;
    align-items: center;
    margin-bottom: 2rem;
}
.init-bx .init-heading h2 {
    font-size: 15px;
    color: #fff;
    font-family: var(--font-mono);
}
.init-bx .init-imgbx {
    position: relative;
    height: 100px;
    border-radius: 10px;
}
.init-bx .init-imgbx a:hover img{
    transform: scale(1.1);
}
.init-bx .init-imgbx img {
    /* position: absolute; */
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s;
}
.adviser{
    background-color: var(--theme-darker-blue);
}
.adviser .heading{
    text-align: -webkit-center;
}
.adviser h2{
    width: fit-content;
    position: relative;
}
.adviser-content {
    color: var(--theme-white);
}
.footer{
    margin-top: 40px;
}
.footer-inner .row{
    flex-direction: column-reverse;
}
.footer-inner .details{
    text-align: -webkit-center;
}

.footer-inner .logo{
    width: 180px;
    color: var(--theme-white)
}
.footer-socials ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    color: var(--theme-white);
    margin-top: 20px;
    padding-left: 0;
}
.footer-socials ul li{
    margin: 0 20px;
}
.footer-socials ul li:hover{
    color: var(--theme-orange) ;
}
.footer-inner p{
    color: var(--theme-white);
}
.footer-inner .contact{
    margin-bottom: 50px;
}
.footer-inner .contact h4{
    font-family: var(--font-sans);
}
.contact-form div{
    text-align: center;
    margin: 15px 0;
}
.contact-form div:last-child{
    margin: 0;
}
.contact-form div input, .contact-form div textarea{
    font-family: var(--font-sans);
    /* opacity: 0.1; */
    color: white;
    background-color: black;
    padding:10px;
}
.buttons {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%;
}.btn {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  margin: 0 0 2em;
  max-width: 160px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}
.btn:hover {
  text-decoration: none;
}

.btn-1 {
  background: #e02c26;
  font-weight: 100;
}
.btn-1 svg {
  height: 45px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.btn-1 rect {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 422, 0;
  transition: all 0.35s linear;
}

.btn-1:hover {
  background: rgba(225, 51, 45, 0);
  font-weight: 900;
  letter-spacing: 1px;
}
.btn-1:hover rect {
  stroke-width: 5;
  stroke-dasharray: 15, 310;
  stroke-dashoffset: 48;
  transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.btnn {
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 45px;
    margin: 0 0 2em;
    max-width: 160px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
  }
  .btnn:hover {
    text-decoration: none;
    color: var(--theme-white);
  }
  
  .btn-1 {
    background: var(--theme-dark-blue);
    font-weight: 100;
  }
  .btn-1 svg {
    height: 45px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .btn-1 rect {
    fill: none;
    stroke: var(--theme-white);
    stroke-width: 3;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
  }
  
  .btn-1:hover {
    background: var(--theme-dark-blue);
    font-weight: normal;
    letter-spacing: 1px;
  }
  .btn-1:hover rect {
    stroke-width: 5;
    stroke-dasharray: 15, 310;
    stroke-dashoffset: 48;
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .event-details{
      list-style: none;
      padding-left: 0;
  }

.gallery-row .gallery-image{
    height: 100%;
    width: 100%;
    height: 180px;
}
.gallery-row a{
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-width: 340px;
    overflow: hidden;
}
.gallery-row a img{
    transition: all 0.3s;
}
.gallery-row a:hover img{
    transform: scale(1.1);
}
.modal{
    background-color: rgba(0,0,0,0.8);
}
.modal-content{
    border: none!important;
    background-color: transparent;
    height: 80%;
}
.modal-content .btn-close-white{
    top:-30px;
    right: 0px;
}
.modal-content img{
    height: 100%;
    max-height: 80%;
}

/* contact */
  #formMessage{
      visibility: hidden;
      height: fit-content;
  }
  
@media (min-width:576px){
    .gallery-row .gallery-image{
        height: 160px;
    }
    .gallery-row a{
        max-width: 100%;
    }
    .modal-dialog{
        max-width: 80%;
    }
    .modal-content .btn-close-white{
        top:-30px;
        right: -30px;
    }
}
@media (min-width:768px) {
    #home{
        flex-direction: row;
    }
    #home > img{
        width: 300px;
    } 
    .rotating1{
        top:20%;
    }
    .rotating2{
        right: 10%;
    }
    .footer-inner .row{
        flex-direction: row;
    }
    .footer-inner .contact{
        margin-bottom: 0px;
    }
    .gallery-row .gallery-image{
        height: 160px;
    }
}
@media (min-width: 600px) {
    
  .btn {
    margin: 0 1em 2em;
  }
}
@media (min-width:1080px){
    .navLinks{
        display: flex;
    }
    .sidebar{
        display: none;
    }
    #logo1{
        display: block;
    }
    #logo2{
        display: none;
    }
    .vertical-socials{
        display: block;
    }
    .rotating2{
        right: 20%;
    }
    .gallery-row .gallery-image{
        height: 180px;
    }
    .modal-dialog{
        max-width: 60%;
    }
}
