*,*::after,*::before{
          margin: 0;
          padding: 0;
          box-sizing: border-box;
}
html{
          font-size: 16px;
}
body{
          font-family: 'Open Sans', sans-serif;
          overflow-x: hidden;
}
.mainContainer{
          padding: 3vw;
}
@font-face {
          font-family: Mouser;
          src: url(Mouser.otf);
}

/****** loader ******/  
#loader{
          position: fixed;
          width: 100%;
          height: 100vh;
          background-image: url(page3bg2.png),url(page3bg1.png);
          background-repeat: repeat-y,repeat-y;
          background-position: 0% 0%, 100% 100%;
          background-size: 100% 100%;
          z-index: 100;
          background-color: #ffffff;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
} 
#loader.hidden {
  -webkit-animation: fadeOut 1s;
          animation: fadeOut 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
#loader img{
          width: 10vw;
          margin-bottom: 1vw;
}
.dot-collision {
  position: relative;
  width: 1vw;
  height: 1vw;
  border-radius: 50vw;
  background-color: #b4252d;
  color: #b4252d;
}

.dot-collision::before, .dot-collision::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-collision::before {
  left: -1vw;
  width: 1vw;
  height: 1vw;
  border-radius: 50vw;
  background-color: #b4252d;
  color: #b4252d;
  animation: dotCollisionBefore 2s infinite ease-in;
}

.dot-collision::after {
  left: 1vw;
  width: 1vw;
  height: 1vw;
  border-radius: 50vw;
  background-color: #b4252d;
  color: #b4252d;
  animation: dotCollisionAfter 2s infinite ease-in;
  animation-delay: 1s;
}

@keyframes dotCollisionBefore {
  0%,
  50%,
  75%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2vw);
  }
}

@keyframes dotCollisionAfter {
  0%,
  50%,
  75%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(2vw);
  }
}

        
/****** loader ******/        
nav{
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding-bottom: 3vw;
}
.mobileMenu{
          display: none;
}
nav img{
          width: 10vw;
}
nav .navbar a{
          font-size: 1.1vw;
          color: #25273D;
          font-weight: 700;
          padding-top: 4vw;
          padding-right: 1.5vw;
          padding-left: 1.5vw;
          padding-bottom: 0vw;
          cursor: pointer;
          transition: all 0.5s;
          text-decoration: none;
}
nav .navbar a:hover{
          color: #ffffff;
          padding-bottom: 3.5vw;
          background-color: #6C26CC;
}
main{
          position: relative;
          width: 100%;
          height: auto;
}
/****** PAGE 1 *******/
#page1{
          display: flex;
          justify-content: center;
          width: 100%;
          height: 100%;
}
#page1 .leftSide{
          height: 100%;
}
#page1 .leftSide video{
          width: 51.5vw;
          height: auto;
}
#page1 .leftSide .mobileVideo{
          display: none;
}
#page1 .rightSide{
          padding:0 4vw;
          height: 34.2vw;
          width: 30vw;
          margin-left: 1vw;
          background-color: #CC2639;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          background-image: url(shape1.png), url(shape2.png);
          background-repeat: repeat-y,repeat-y;
          background-position: 0% 0%, 100% 100%;
          background-size: 100% 100%;
          -webkit-animation-name: bgAnim;
          animation-name: bgAnim;
          -webkit-animation-duration: 20s;
          animation-duration: 20s;
          -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
          -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@keyframes bgAnim{
          0% {
                    background-position: 0% 0%, 100% 100%;
          }
          100% {
                    background-position: 0% -2000px, 100% 2000px;
          }
}
#page1 .rightSide h1{
          font-size: 3.5vw;
          color: #ffffff;
          font-weight: 300;
          font-family: Mouser;
}
#page1 .rightSide a{
          font-size: 1.5vw;
          background-color: #6224b7;
          border-radius: 0.3vw;
          padding: 1vw 3.5vw;
          color: #ffffff;
          font-weight: 500;
          text-decoration: none;
          margin-top: 1vw;
          transition: background-color 0.5s;
}
#page1 .rightSide a:hover{
          background-color: #511e97;
}
/****** PAGE 2 *******/
#page2Body{
          background-image: url(page2Bg1.png),url(page2Bg2.png);
          background-repeat: repeat-y,repeat-y;
          background-position: 0% 0%, 100% 100%;
          background-size: 100% 100%;
          -webkit-animation-name: bgAnim;
          animation-name: bgAnim;
          -webkit-animation-duration: 20s;
          animation-duration: 20s;
          -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
          -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
#page2 .rightSide,#page2 .leftSide{
          width: 50%;
          height: 100%;
}
#page2{
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 10vw 0;
}
#page2 .rightSide{
          display: flex;
          justify-content: center;
          align-items: center;
          
}
#page2 .rightSide p{
          font-size: 1.2vw;
          color: #25273D;
          line-height: 2.2vw;
}
#page2 .rightSide h3{
          display: none;
}
#page2 .leftSide img:nth-child(1){
          position: absolute;
          width: 10%;
          left: 9%;
          bottom: -20%;
}
#page2 .leftSide img:nth-child(2){
          position: absolute;
          width: 10%;
          left: 21%;
          top: -60%;
}
#page2 .leftSide img:nth-child(3){
          position: absolute;
          width: 10%;
          left: 33%;
          bottom: -20%;
}
/****** PAGE 3 *******/
#page3Body,#page4Body{
          background-image: url(page3bg2.png),url(page3bg1.png);
          background-repeat: repeat-y,repeat-y;
          background-position: 0% 0%, 100% 100%;
          background-size: 100% 100%;
          -webkit-animation-name: bgAnim;
          animation-name: bgAnim;
          -webkit-animation-duration: 20s;
          animation-duration: 20s;
          -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
          -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
#page3{
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 5vw 0;
}
.page3Container{
          display: flex;
          justify-content: center;
          align-items: flex-start;
}
.page3Mobile{
          display: none;
}
#page3 .one,#page3 .two,#page3 .three{
          width: 30%;
          margin: 0 2vw;
}
#page3 .one h1,#page3 .two h1,#page3 .three h1{
          font-family: Mouser;
          font-size: 3vw;
          font-weight: 400;
          color: #25273D;
          width: 5vw;
          padding-left: 1.5vw;
          transition: width 0.5s;
          cursor: pointer;
}
#page3 .one h1{
          background-color: #CC2639;
}
#page3 .two h1{
          background-color: #F0836E;
}
#page3 .three h1{
          background-color: #F0AF6E;
}
#page3 .one h1:hover{
          width: 13.5vw;
}
#page3 .two h1:hover{
          width: 24.5vw;
}
#page3 .three h1:hover{
          width: 9vw;
}
#page3 .one h5,#page3 .two h5,#page3 .three h5{
          font-size: 1vw;
          color: #25273D;
          font-weight: 700;
          line-height: 2vw;
          padding-left: 1.5vw;
}
#page3 .one p,#page3 .two p,#page3 .three p{
          font-size: 1vw;
          color: #25273D;
          font-weight: 400;
          line-height: 2vw;
          padding-left: 1.5vw;
}
/****** PAGE 4 *******/
#page4{
          margin: 3vw;
          display: flex;
          justify-content: space-between;
          align-items: center;
}
#page4 .leftSide{
          width: 40%;
          height: 30vw;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
}
#page4 .leftSide h1{
          font-size: 5vw;
          font-family: Mouser;
          color: #25273D;
          font-weight: 500;
          line-height: 6vw;
}
#page4 .leftSide h1 span{
          color: #CC2639;
}
#page4 .leftSide h1 span span{
          font-family: 'Open Sans', sans-serif;
}
#page4 .leftSide .contactInfo div{
          display: flex;
          align-items: center;
          margin: 1vw 0;
}
#page4 .leftSide .contactInfo div i{
          font-size: 1.4vw;
          color: #6C26CC;
          margin-right: 1.5vw;
}
#page4 .leftSide .contactInfo div p{
          font-size: 1vw;
          color: #25273D;
}
#page4 .rightSide{
          position: relative;
          width: 60%;
          height: 30vw;
          display: flex;
          justify-content: center;
          align-items: center;
}
#page4 .mapBorder1,#page4 .mapBorder2{
          width: 25vw;
          height: 15vw;
          background-color: #CC2639;
          position: absolute;
}
#page4 .mapBorder1{
          top: -1%;
          left: 9.5%;
          z-index: -1;
}
#page4 .mapBorder2{
          bottom: -1%;
          right: 9.5%;
          z-index: -1;
}

/****** FOOTER *******/
footer{
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; 
          margin-top: 7vw;
}
footer span{
          color: #C7C7C7;
          font-weight: 600;
          font-size: 1.1vw;
          margin-bottom: 1.5vw;
}
footer .socialIcons{
          display: flex;
          align-items: center;
          justify-content: center;
}
footer .socialIcons i{
          font-size: 1.5vw;
          color: #C7C7C7;
          margin:0 0.6vw;
          cursor: pointer;
          transition: color 0.3s;
}
footer .socialIcons i:hover{
          color: #6C26CC;
}

/*********** RESPONSIVE ************/
@media (max-width:900px) {
  /*****loader******/
  #loader img{
    width: 30vw;
    margin-bottom: 3vw;
}
.dot-collision {
position: relative;
width: 4vw;
height: 4vw;
border-radius: 50vw;
background-color: #b4252d;
color: #b4252d;
}
.dot-collision::before {
left: -4vw;
width: 4vw;
height: 4vw;
border-radius: 50vw;
background-color: #b4252d;
color: #b4252d;
animation: dotCollisionBefore 2s infinite ease-in;
}

.dot-collision::after {
left: 4vw;
width: 4vw;
height: 4vw;
border-radius: 50vw;
background-color: #b4252d;
color: #b4252d;
animation: dotCollisionAfter 2s infinite ease-in;
animation-delay: 1s;
}

@keyframes dotCollisionBefore {
0%,
50%,
75%,
100% {
transform: translateX(0);
}
25% {
transform: translateX(-6vw);
}
}

@keyframes dotCollisionAfter {
0%,
50%,
75%,
100% {
transform: translateX(0);
}
25% {
transform: translateX(6vw);
}
}
  /*****loader******/
          .mainContainer{
                    padding: 5vw;
          }
          nav img {
                    width: 33vw;
          }
          .mobileMenu{
                    display: block;
          }
          .navbar{
                    display: none;
          }
          #menuToggle {
                    display: grid;
                    position: absolute;
                    top: 5vw;
                    right: 5vw;
                    z-index: 10;
                    -webkit-user-select: none;
                    user-select: none;
                    width: auto;
          }
          .navbar-items {
                    display: flex;
                    align-items: center;
                    justify-content: right;
          }
          #menuToggle input {
                    display: block;
                    width: 40px;
                    height: 32px;
                    position: absolute;
                    top: -2px;
                    cursor: pointer;
                    opacity: 0;
                    right: 14px;
                    z-index: 12;
                    -webkit-touch-callout: none;
          }
          #menuToggle input:checked~#closeMenu {
                    display: block;
          }
          #closeMenu {
                    position: fixed;
                    width: 100vw;
                    height: 100vh;
                    z-index: 0;
                    top: -50px;
                    left: 0;
                    content: '';
                    display: none;
          }
          #menuToggle input:checked~span {
                    opacity: 1;
                    transform: rotate(45deg) translate(2px, -1px);
                    background: #C7C7C7;
          }
          #menuToggle span {
                    display: block;
                    width: 9vw;
                    height: 1.2vw;
                    margin-bottom: 1.5vw;
                    position: relative;
                    background: #25273D;
                    border-radius: 50vw;
                    z-index: 1;
                    transform-origin: 4px 0px;
                    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
          }
          #menuToggle input:checked~span:nth-last-child(3) {
                    opacity: 0;
                    transform: rotate(0deg) scale(0.2, 0.2);
                  
          }
          #menuToggle input:checked~span:nth-last-child(2) {
                    opacity: 1;
                    transform: rotate(-45deg) translate(0px, -3px);
                    background: #C7C7C7;
          }

          #menuToggle input:checked~ul {
                    transform: scale(1.0, 1.0);
                    opacity: 1;
          }
          #menu {
                    position: fixed;
                    z-index: 0;
                    width: 60%;
                    height: 100vh;
                    padding: 20vw 0rem 2vw 0rem;
                    right: 0px;
                    top: 0;
                    background: rgba(37, 39, 61, 0.9);
                    list-style-type: none;
                    -webkit-font-smoothing: antialiased;
                    transform-origin: 0% 0%;
                    transform: translate(100%, 0);
                    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
                    display: flex;
                    flex-direction: column;
                    list-style: none;
          }
          #menu a{
                    font-size: 5vw;
                    color: #ffffff;
                    font-weight: 700;
                    padding-top: 4vw;
                    padding-right: 1.5vw;
                    padding-left: 5vw;
                    padding-bottom: 4vw;
                    cursor: pointer;
                    transition: all 0.5s;
                    text-decoration: none;
         
          }
          #menu a:hover{
                    background-color: #6224b7;
          }
          .hamburgerMenu {
                    display: block;
          }
          #page1{
                    flex-direction: column;
                    align-items: center;
          }
          #page1 .leftSide .desktopVideo{
                    display: none;
          }
          #page1 .leftSide .mobileVideo{
                    display: block;
                    width: 90vw;
                    height: auto;
          }
          #page1 .rightSide {
                    height: 80vw;
                    width: 100%;
                    margin-left: 0;
                    margin-top: 5vw;
          }
          #page1 .rightSide h1{
                    font-size: 7vw;
                    text-align: center;
          }
          #page1 .rightSide a {
                    font-size: 6vw;
                    background-color: #6C26CC;
                    border-radius: 1.5vw;
                    padding: 3vw 9.5vw;
                    color: #ffffff;
                    font-weight: 500;
                    text-decoration: none;
                    margin-top: 8vw;
          }
          footer span {
                    font-size: 3vw;
                    margin-bottom: 3vw;
          }
          footer .socialIcons i {
                    font-size: 5vw;
                    margin: 0 2vw;
          }
          #page2 .leftSide{
                    display: none;
          }
          #page2 .rightSide{
                    width: 100%;
                    flex-direction: column;
          }
          #page2 .rightSide p{
                    font-size: 4vw;
                    line-height: 6vw;
          }
          #page2 .rightSide h3{
                    display: block;
                    color: #25273D;
                    font-size: 7vw;
                    font-family: Mouser;
                    margin-bottom: 7vw;
          }
          #page2Body,#page3Body,#page4Body,#loader {
                    background-image: url(bgMobile.png),url(bgMobile2.png);
          }
          .page3Container{
                    display: none;
          }
          .page3Mobile{
                    display: block;
          }
          .page3Mobile .mobileText{
                    width: 100%;
                    height: 78vw;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-family: Mouser;
                    color: #25273D;
                    font-weight: 600;
                    font-size: 5.5vw;
                    text-align: center;
                    overflow: hidden;
                    position: relative;
          }
          .page3Mobile .mobileText img{
                    position: absolute;

          }
          .page3Mobile .mobileText .line1{
                    width: 75vw;
                    animation-name: mobileTextAnim2;
                    animation-duration: 40s;
                    animation-iteration-count: infinite;
          }
          .page3Mobile .mobileText .line2{
                    width: 75vw;
          }
          .page3Mobile .mobileText .line3{
                    width: 85vw;
                    animation-name: mobileTextAnim;
                    animation-duration: 40s;
                    animation-iteration-count: infinite;
          }
          @keyframes mobileTextAnim {
                    0%{
                              transform: rotate(0);
                    }
                    100%{
                              transform: rotate(360deg);
                    }
          }
          @keyframes mobileTextAnim2 {
                    0%{
                              transform: rotate(360deg);
                    }
                    100%{
                              transform: rotate(0);
                    }
          }
          .page3Mobile .accordion {
                    background-color: #eee;
                    color: #444;
                    cursor: pointer;
                    padding: 3vw 4vw;
                    width: 100%;
                    border: none;
                    text-align: left;
                    outline: none;
                    font-size: 5vw;
                    transition: 0.4s;
                    font-family: Mouser;
                    color: #ffffff;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
          }
          .page3Mobile .accordion1{
                    background-color: #CC2639;
          }
          .page3Mobile .accordion1 i{
                    font-size: 9vw;
                    color: #7e1521;
          }
          .page3Mobile .accordion2{
                    background-color: #F0836E;
          }
          .page3Mobile .accordion2 i{
                    font-size: 9vw;
                    color: #a95b4c;
          }
          .page3Mobile .accordion3{
                    background-color: #F0AF6E;
          }
          .page3Mobile .accordion3 i{
                    font-size: 9vw;
                    color: #9e7347;
          }   
          .page3Mobile .panel {
                    padding:0 4vw;
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.2s ease-out;
                    color: #25273D;
          }
          .page3Mobile .panel h5, .page3Mobile .panel p{
                    font-size: 4vw;
          }
          .page3Mobile .panel h5{
                    padding-top: 2vw;
          }
          .page3Mobile .panel p{
                    padding:2vw 0;
          }
          #page4{
                    flex-direction: column;
                    text-align: center;
                    margin: 0;
          }
          #page4 .leftSide, #page4 .rightSide{
                    width: 100%;
                    text-align: center;
          }
          #page4 .leftSide{
                    height: 85vw;
                    justify-content: space-evenly;
          }
          #page4 .rightSide{
                    height: 60vw;
          }
          #page4 .rightSide iframe{
                    width: 100%;
          }
          #page4 .leftSide h1 {
                    font-size: 12vw;
                    line-height: 14vw; 
          }
          #page4 .leftSide .contactInfo div p {
                    font-size: 4vw;
                    text-align: left;
                    margin-bottom: 2vw;
          }
          #page4 .leftSide .contactInfo div i{
                    font-size: 5vw;
                    margin-right:5vw;
          }
          #page4 .mapBorder1 {
                    top: -0.8vw;
                    left: -0.8vw;
          }
          #page4 .mapBorder2 {
                    bottom: -0.8vw;
                    right: -0.8vw;
          }
          #page4 .mapBorder1, #page4 .mapBorder2 {
                    width: 47vw;
                    height: 29vw;
          }
}