body {
  color: rgb(4, 44, 113);
  background: rgb(255, 255, 255);
}

#hero {
  width: 100%;
  height: 100vh;
  /*margin-top: 100px;*/
}

.navbar {
  box-shadow: 0px 0px 10px rgb(0, 0, 0);
  height: 100px;
  background: #ffffff;
}

.navbar-brand {
  background: url("../../assets/img/Ace_logo.png") center / 75% no-repeat;
  width: 150px;
  height: 80px;
}

@media (min-width: 1200px) {
  .navbar-brand {
    background: url("../../assets/img/Ace_logo.png") center / 90% no-repeat;
    width: 150px;
    height: 80px;
  }
}

.mx-auto {
  margin-right: 0!important;
  margin-left: auto!important;
}


.nav-link:focus,
.nav-link:hover {
  color: #042c71;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
  color: #042c71;
}

#navcol-1 {
  font-size: 16px;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  background-color: #ffffff;
  padding-left: 20px;
  
}

@media (min-width: 992px) {
  #navcol-1 {
    font-size: 20px;
    font-family: Roboto, sans-serif;
    font-weight: bold;
    text-transform: capitalize;
    background-color: #ffffff;
    
  }
}

canvas{
  display:block;
  /* vertical-align:bottom; */
  
}

#particles-js{
  width: 100%;
  height: 90vh;
  background-color: #042c71;
  
}

h6{
  color: #ffffff;
  font-size: 30px;
  padding-left: 10px;
  font-weight: bold;
  font-family: Roboto, sans-serif;
  letter-spacing: 0px;
  cursor: pointer
}

@media (min-width: 768px) {
  h6{
  color: #ffffff;
  font-size: 70px;
  padding-left: 10px;
  font-weight: bold;
  font-family: Roboto, sans-serif;
  letter-spacing: 5px;
  cursor: pointer
  
  }
}
h6 span{
  transition: .5s linear
  
}
h6:hover span:nth-child(1){
  margin-right: 5px
  
  
}
h6:hover span:nth-child(1):after{
  content: "ttitude";
}
h6:hover span:nth-child(2){
  margin-left: 5px
}
@media (min-width: 768px) {
  h6:hover span:nth-child(2){
    margin-left: 30px
  }
}
h6:hover span:nth-child(2){
  margin-right: 5px
}
h6:hover span:nth-child(2):after{
  content: "ommitment";
}
h6:hover span:nth-child(3){
  margin-left: 10px;
}
@media (min-width: 768px) {
  h6:hover span:nth-child(3){
    margin-left: 30px
  }
}
h6:hover span:nth-child(3){
    margin-right: 5px
}
h6:hover span:nth-child(3):after{
  content: "xcellence";
}
h6:hover span:nth-child(4){
  display: none;
}
h6:hover span{
  color: #fff;
  text-shadow: 0 0 5px #fff,
               0 0 3px #fff, 
               0 0 0px #fff;
}
@media (min-width: 768px) {
  h6:hover span{
    color: #fff;
    text-shadow: 0 0 8px #fff,
                 0 0 10px #fff, 
                 0 0 0px #fff;
  }
}



.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  font-family: Roboto, sans-serif;
  font-size: 50px;
  line-height: 55px;
  color: #ffffff;
  text-shadow: #000;

}

.content__container {
  font-weight: 600;
  overflow: hidden;
  height: 60px;
  padding: 0 40px;
}

@media (min-width: 768px) {
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    font-family: Roboto, sans-serif;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
    text-shadow: #000;
  
  }
  .content__container {
    font-weight: 600;
    overflow: hidden;
    height: 65px;
    padding: 0 60px;
  }

  .content__container:after,
.content__container:before {
  position: absolute;
  top: 0;
  color: #ffffff;
  font-size: 75px;
  line-height: 5px;
  -webkit-animation-name: opacity;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: opacity;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
}

.content__container__list__item {
  line-height: 75px;
  margin: 0;
}

.content__container:before {
  content: '[';
  left: 0;
}

.content__container:after {
  content: ']';
  position: absolute;
  right: 0;
}

.content__container:after,
.content__container:before {
  position: absolute;
  top: 0;
  color: #ffffff;
  font-size: 50px;
  line-height: 65px;
  -webkit-animation-name: opacity;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: opacity;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.content__container__text {
  display: inline;
  float: left;
  margin: 0;
}

.content__container__list {
  margin-top: 0;
  padding-left: 5px;
  text-align: center;
  list-style: none;
  -webkit-animation-name: change;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-name: change;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}



@-webkit-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

@-o-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-o-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

@-moz-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-moz-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

@keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}





.comp-top-h {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  text-align: center;
}
.comp-top-p {
  font-size: 14px;
  margin-top: 15px;
}

@media (min-width: 992px) {
  .comp-top-h {
    font-family: Roboto, sans-serif;
    font-size: 24px;
    text-align: center;
  }
  #company-top {
    margin-top: 50px;
  }
}



@media (min-width: 768px) {
  .comp-top-p {
    font-size: 20px;
    margin-top: 20px;
    font-family: Abel, sans-serif;
  }
}

#company-top {
  margin-top: 50px;
}



#company-bottom {
  margin-top: 70px;
}

.h-bot {
  font-family: Roboto, sans-serif;
  font-size: 28px;
  text-align: center;
  margin-top: 15px;
}

.p-bot {
  font-family: Abel, sans-serif;
  font-size: 18px;
  margin-top: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .p-bot {
    font-family: Abel, sans-serif;
    font-size: 22px;
    text-align: center;
  }
}

.comp-bottom-cont {
  max-width: 90%;
}

.comp-bottom-col {
  width: 300px;
  height: 500px;
  border-radius: 15px;
  border-style: none;
  border-color: rgba(4, 44, 113, 0);
}

#bottom-col-left {
  margin-right: 20px;
}

#bottom-col-middle {
  margin-right: 20px;
}

#products {
  background: #edf2f4;
  margin-top: 0px;
}

#product-top {
  margin-top: 0;
}

.prod-top-h {
  font-family: Roboto, sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding-top: 100px;
}

@media (min-width: 768px) {
  .prod-top-h {
    font-family: Roboto, sans-serif;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
  }
}

.pro-subheading {
  font-size: 22px;
  font-family: Abel, sans-serif;
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .pro-subheading {
    font-size: 26px;
    font-family: Abel, sans-serif;
    text-align: center;
    margin-top: 30px;
  }
}

.pro-img {
  width: 200px;
}

@media (min-width: 992px) {
  .pro-img {
    width: 250px;
  }
}

.pro-bottom-col {
  width: 250px;
  height: 400px;
}

@media (min-width: 992px) {
  .pro-bottom-col {
    width: 250px;
    height: 550px;
  }
}

@media (min-width: 768px) {
  #products {
    margin-top: 100px;
  }
}

#subscribe {
  height: 300px;
  color: rgb(255, 255, 255);
  background: #042c71;
}

.sub-p {
  font-size: 16px;
  font-family: Abel, sans-serif;
  text-align: center;
  padding-top: 25px;
}

@media (min-width: 768px) {
  .sub-p {
    font-size: 22px;
    font-family: Abel, sans-serif;
    text-align: center;
    padding-top: 25px;
  }
}

.email-sub {
  width: 250px;
  background: rgba(255, 255, 255, 0);
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  color: rgb(255, 255, 255);
  font-family: Roboto, sans-serif;
  text-align: center;
}

@media (min-width: 768px) {
  .email-sub {
    width: 600px;
    background: rgba(255, 255, 255, 0);
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    color: rgb(255, 255, 255);
    font-family: Roboto, sans-serif;
    text-align: center;
  }
}

.btn-sub {
  width: 200PX;
  height: 50PX;
  background: rgba(10, 88, 202, 0);
  border-radius: 10px;
  border: 2px solid #ffffff;
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  border-bottom-color: var(--bs-btn-disabled-color);
  border-left: 2px solid #ffffff;
}

.sub {
  padding-top: 50px;
}

@media (min-width: 768px) {
  #email-p {
    font-size: 20px;
  }
}

.expertise-bottom-col {
  width: 300px;
  height: 400px;
}

.h-bot-ext {
  font-size: 22px;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-weight: bold;
}

.p-bot-exp {
  font-size: 16px;
  font-family: Abel, sans-serif;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  #bottom-left {
    margin-right: 30px;
  }
}

@media (min-width: 768px) {
  #row2-col-left {
    margin-right: 30px;
  }
}

@media (min-width: 992px) {
  #bottom-middle {
    margin-right: 30px;
  }
}

.hig-bot-r {
  height: 100px;
  color: rgb(255, 255, 255);
  background: #042c71;
}

#btn-highlight {
  width: 200px;
  height: 40px;
  font-size: 14px;
  font-family: Abel, sans-serif;
  background: rgba(13, 110, 253, 0);
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  border-top-color: rgb(255, 255, 255);
  border-right-color: rgb(255, 255, 255);
  border-bottom-color: rgb(255, 255, 255);
  border-left-color: rgb(255, 255, 255);
}

@media (min-width: 992px) {
  #btn-highlight {
    width: 250px;
    height: 50px;
    font-size: 18px;
    font-family: Abel, sans-serif;
    background: rgba(13, 110, 253, 0);
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
    border-top-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
    border-bottom-color: rgb(255, 255, 255);
    border-left-color: rgb(255, 255, 255);
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (min-width: 992px) {
  #high-bottom {
    height: 150px;
  }
}

@media (min-width: 992px) {
  .hig-bot-r {
    height: 150px;
  }
}

.st-h {
  font-size: 18px;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-weight: bold;
}

@media (min-width: 992px) {
  .st-h {
    font-size: 22px;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-weight: bold;
  }
}

.st-p {
  font-size: 16px;
  font-family: Abel, sans-serif;
  text-align: justify;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

@media (min-width: 992px) {
  .st-p {
    font-size: 18px;
    font-family: Abel, sans-serif;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.story-img {
  width: 150px;
  height: 150px;
  transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .story-img {
    width: 250px;
    height: 250px;
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
  }
}
@keyframes float {
	0% {
		
		transform: translatey(0px);
	}
	50% {
		
		transform: translatey(-20px);
	}
	100% {
		
		transform: translatey(0px);
	}
}

#story-img-sm {
  width: 100px;
  height: 100px;
  padding-left: 0px;
  margin-left: 0px;
  margin-top: 0px;
}

@media (min-width: 1200px) {
  #story-img-sm {
    width: 150px;
    height: 150px;
    padding-left: 0px;
    margin-left: 0px;
    margin-top: 0px;
  }
}

#story-img-lg1 {
  margin-left: 20px;
}

#story-img-lg2 {
  margin-right: 20px;
}

#query {
  height: 200px;
  background: #042c71;
}

.q-h {
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 24px;
  font-family: Roboto, sans-serif;
  font-weight: bold;
}

#btn-connect {
  width: 200px;
  height: 50px;
  font-size: 16px;
  font-family: Abel, sans-serif;
  text-align: center;
  background: rgba(13, 110, 253, 0);
  border-radius: 10px;
  border-style: solid;
  border-top-color: rgb(255, 255, 255);
  border-right-color: rgb(255, 255, 255);
  border-bottom-width: 1px;
  border-bottom-color: rgb(255, 255, 255);
  border-left: 2px solid rgb(255, 255, 255);
  padding-top: 13px;
  padding-bottom: 13px;
}

@media (min-width: 992px) {
  #btn-connect {
    width: 250px;
    height: 50px;
    font-size: 16px;
    font-family: Abel, sans-serif;
    text-align: center;
    background: rgba(13, 110, 253, 0);
    border-radius: 10px;
    border-style: solid;
    border-top-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
    border-bottom-width: 1px;
    border-bottom-color: rgb(255, 255, 255);
    border-left: 2px solid rgb(255, 255, 255);
  }
}

.cli-h {
  font-size: 20px;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 992px) {
  .cli-h {
    font-size: 28px;
    font-family: Roboto, sans-serif;
    font-weight: bold;
    text-align: center;
  }
}

.client {
  height: 500px;
  padding-left: 6px;
  padding-right: 6px;
}

#client-top {
  padding-top: 50px;
}

.logo-img {
  width: 100px;
  padding-top: 0px;
}

@media (min-width: 992px) {
  .logo-img {
    width: 150px;
  }
}

#footer-copyright {
  color: rgb(255, 255, 255);
  background: #042c71;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-top: 0px;
}

@media (min-width: 768px) {
  #footer-copyright {
    color: rgb(255, 255, 255);
    background: #042c71;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: 0px;
    height: 50px;
  }
}

#copyright {
  font-size: 8px;
  text-align: center;
  font-family: Roboto, sans-serif;
  padding-top: 20px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  #copyright {
    font-size: 10px;
    text-align: center;
    font-family: Roboto, sans-serif;
    padding-top: 25px;
    margin-bottom: 10px;
  }
}

.footer-icon {
  font-size: 25px;
  margin-left: 20px;
}

@media (min-width: 992px) {
  .footer-icon {
    font-size: 30px;
    margin-left: 20px;
  }
}

.footer-logo-p {
  font-size: 16px;
  font-family: Abel, sans-serif;
  font-weight: bold;
  padding-top: 10px;
}



#subhead {
  font-family: Abel, sans-serif;
  font-size: 14px;
  text-align: center;
}

.form-control {
  border-style: solid;
  border-radius: 10px;
  border-color: #042c71;
  border-width: 2px;
}

.w-100 {
  border-style: solid;
  border-width: 2px;
  border-color: #042c71;

}

@media (min-width: 1400px) {
  #contact {
    height: 100vh;
  }
}

.pro-ovr-h {
  font-size: 22px;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  text-align: left;
}

.pro-over-txt {
  font-size: 14px;
  font-family: Abel, sans-serif;
  text-align: left;
}

#over-head {
  font-size: 24px;
  font-family: Roboto, sans-serif;
  font-weight: bold;
}

#left-col {
  margin-right: 0px;
}

@media (min-width: 768px) {
  #left-col {
    margin-right: 50px;
  }
}

@media (min-width: 992px) {
  #left-col {
    margin-right: 100px;
  }
}

.tab-head {
  color: #042c71;
}

.filtr-controls {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  margin: 30px 0 15px;
}

@media (min-width: 768px) {
  .filtr-controls {
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    margin: 30px 0 15px;
  }
}

.contact-btn {
  width: 150px;
  height: 50px;
  background: rgba(10, 88, 202, 0);
  color: #042c71;
  border-style: solid;
  border-color: #042c71;
  border-width: 2px;
  border-radius: 10px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  margin-top: 10px;
  padding-top: 13px;
  padding-bottom: 13px;
}

@media (min-width: 992px) {
  .contact-btn {
    width: 200px;
    height: 50px;
    background: rgba(10, 88, 202, 0);
    color: #042c71;
    border-style: solid;
    border-color: #042c71;
    border-width: 2px;
    border-radius: 10px;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    margin-top: 10px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

@media (min-width: 992px) {
  #subhead {
    font-size: 22px;
  }
}

@media (min-width: 1200px) {
  .label-txt {
    font-size: 22px;
    font-family: Abel, sans-serif;
  }
}

.label-txt {
  font-size: 18px;
  font-family: Abel, sans-serif;
}

@media (min-width: 1200px) {
  #col-left {
    margin-left: 0px;
  }
}

.img-label {
  font-size: 16px;
  text-align: center;
  padding-top: 5px;
  font-family: Roboto, sans-serif;
}

.card {
  position: relative;
  display: flex;
  height: 280px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  transition: transform 0.5s;
  transform-style: preserve-3d;
  margin-right: 10px;
  
}
.face {
  --flow-space: 1rem;
  position: absolute;
  height: 100%;
  width: 100%;
  border: 1px solid #042c71;
  border-radius: 10px;
  backface-visibility: hidden;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.back {
  display: grid;
  place-items: center;
  background: #042c71;
  transform: rotateY(180deg);
}

.card:focus,
.card:focus-within,
.card:hover {
  transform: rotateY(180deg);
}

button {
  border: 1px solid white;
  background: none;
  color: white;
  font-size: 1.25rem;
  font-weight: lighter;
  padding: 1rem;
  transition-duration: 0.25s;
  cursor: pointer;
  border-radius: 10px;
}

button:hover,
button:focus {
  background: white;
  color: #042c71;
}

label { display: block;}

.form-control {
  border-top: #ffffff;
  border-left: #ffffff;
  border-right: #ffffff;
  border-radius: 0px;
}

.label-txt {
  color: #ffffff;
}
.mapouter {
  position: relative;
  text-align: center;
  width: 100%;
  height: 400px;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 400px;
}

.gmap_iframe {
  height: 400px !important;
  justify-content: center;
}

