@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@500;515&display=swap');
body {
    margin: 0;
    padding: 0;
    background-image:url("../pictures/svg/background.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 60%;
    position: relative;
    overflow-x: hidden;
}

.html{
    scroll-behavior: smooth;
    background-color: #f7f7f9;
    font-family: Comfortaa !important;
    text-overflow: inherit;
    overflow-x: hidden;
}
.html.dark{
    background-color: #221d1d;
}
.color-scheme-emoji{
}
.dark-mode-container{
    position:fixed;
    right: 10px;
    bottom: 10px;
}
.dark-mode-button{
    border:none;
    background: transparent;
}
.schemecontainer{
    overflow:hidden;
    background: white;
}
.schemecontainer.dark{
    background: #373434 !important;
}
.a{
    font-family: Comfortaa !important;
}
.a.dark{
    color: #c3c3c3;
}
.p{}
.p.dark{
    color: #c3c3c3;
}
.h1{
    font-family: Comfortaa, sans-serif;
    font-weight: 600;
}
.h1.dark{
    font-family: Comfortaa, sans-serif;
    color: #c3c3c3;
}
.h4{
    font-family: Comfortaa, sans-serif;
    font-weight: bold;
}
.h4.dark{
    font-family: Comfortaa, sans-serif;
    color: #C3C3C3;
}
h5{
    font-family: Comfortaa, sans-serif;
    color: #FFC107;
}
.h6 {
    font-family: Comfortaa, sans-serif;
}
.h6.dark {
    font-family: Comfortaa, sans-serif;
}



strong { font-weight: bold !important; }

/*WHY US*/
.whyus .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}
.whyus .icon-box::before {
    content: '';
    position: absolute;
    background: #FFC107;
    right: -65px;
    top: -45px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    transition: all 0.4s;
    z-index: -1;
}
.whyus .icon-box:hover::before {
    border-radius: 0px;
    background: #0069D9;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.whyus .icon {
    display: inline-block;
    text-align: center;
    margin: 0 auto 20px auto;
    padding-top: 10px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    background: #0069D9;
    transition: all 0.3s ease-in-out;
}
.whyus .icon i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
}
.whyus .title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
}
.whyus .title a {
    color: #111;
}
.whyus .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}
.whyus .icon-box:hover .icon {
    background: #fff;
}
.whyus .icon-box:hover .title a, .whyus .icon-box:hover .description {
    color: white;
}
.whyus .icon-box:hover .icon i {
    color: #0069D9;
}
.whyus .icon-box:hover .title {
    color: white;
}

/*FAQ*/
.faq .item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #ebecee;
}
.faq .item i {
    color: #FFC107;
    font-size: 24px;
    float: left;
    padding: 12px 0 0 0;
    line-height: 0;
    margin: 0;
}
.faq .item h4 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    font-family: Comfortaa, sans-serif;
    margin: 0 0 10px 32px;
}
.faq .item p {
    font-size: 15px;
}


/*Team Cards*/
#team .card {
    border: none;
    background: white;
}
.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}
.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.mainflip {
    -webkit-transition: 1.1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1.1s;
    -moz-transition: 1.1s;
    -moz-transform: perspective(999px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}
.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 3;
    margin-bottom: 30px;
}
.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(172, 172, 172);
    -moz-box-shadow: 5px 7px 9px -4px rgb(172, 172, 172);
    box-shadow: 5px 7px 9px -4px rgb(172, 172, 172);
}
.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    transform-style: preserve-3d;
}
.frontside .card,
.backside .card {
    min-height: 340px;
}
.frontside .card .card-title,
.backside .card .card-title {
    color: black !important;
}


.form-rounded {
border-radius: 1rem;
}
.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}
.fullheight{
    min-height:76vh;
}
p{
    font-family: Comfortaa;
}
.row .lead{
    font-family: Comfortaa;
}
.centerText {
    text-align: center;
}
.hover-box{
    transition: all 0.5s;
}
.hover-box:hover{
    position: relative;
    transform: translateY(-10px);
    transition: all 0.2s;
}
.contactIcon{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    float: left;
    width: 70px;
    height: 70px;
}

#header{
    position: fixed;
    top: 0;
    width: 100%;
    transition: top ease .3s;
}
.gap{
    height: 20vh;
}


ul.socialMediaUL {
    list-style: none;
    display:flex;
}
ul.socialMediaUL li.socialMediaLI {
    text-align: center;
    margin:0 auto;
    left: 50%;
    margin: 0 auto;
    margin-top: 2rem;
}
ul.socialMediaUL li.socialMediaLI a .fa {
    font-size: 40px;
    color: #0069D9;
    line-height: 80px;
    transition: 0.5s;
}
ul.socialMediaUL li.socialMediaLI a {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    text-align: center;
    transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(0,0);
    transition: 0.5s;
    box-shadow: -20px 20px 10px rgba(0, 0, 0, 0.5);
}
ul.socialMediaUL li.socialMediaLI a::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    height: 100%;
    width: 20px;
    background: #b2b2b2;
    transition: 0.5s;
    transform: rotate(0deg) skewY(-45deg);
}
ul.socialMediaUL li.socialMediaLI a::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -10px;
    height: 20px;
    width: 100%;
    background: #e5e5e5;
    transition: 0.5s;
    transform: rotate(0deg) skewX(-45deg);
}
ul.socialMediaUL li.socialMediaLI a:hover {
    transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px,-20px);
    box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.5);
}
ul.socialMediaUL li.socialMediaLI:hover .fa {
    color: #fff;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(1) a {
    background-color: #3b5999;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(1) a::before {
    background-color: #2f477a;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(1) a::after {
    background-color: #4e69a3;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(2) a {
    background-color: #55acee;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(2) a::before {
    background-color: #4489be;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(2) a::after {
    background-color: #66b4ef;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(3) a {
    background-color: #dd4b39;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(3) a::before {
    background-color: #b03c2d;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(3) a::after {
    background-color: #e05d4c;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(4) a {
    background-color: #0077b5;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(4) a::before {
    background-color: #005f90;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(4) a::after {
    background-color: #1984bc;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(5) a {
    background-color: #e4405f;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(5) a::before {
    background-color: #b6334c;
}
ul.socialMediaUL li.socialMediaLI:hover:nth-child(5) a::after {
    background-color: #e6536f;
}

/*Contact Form*/
.bg-contact100 {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.container-contact100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin-top: 15vh;
}
.wrap-contact100 {
  width: 1163px;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 110px 130px 157px 148px;
}
.contact100-pic {
  width: 310px;
  padding-top: 55px;

}
.contact100-pic img {
  max-width: 100%;
}
.contact100-form {
  width: 390px;
}
.contact100-form-title {
  display: block;
  font-family: Comfortaa;
  font-size: 24px;
  color: #333333;
  line-height: 1.2;
  text-align: left;
  padding-bottom: 36px;
}
input.input100 {
  height: 50px;
  border-radius: 25px;
  padding: 0 30px 0 50px;
}
input.input100[name="email"] {
  padding: 0 30px 0 54px;
}
textarea.input100 {
  min-height: 150px;
  border-radius: 25px;
  padding: 14px 30px;
}
.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}
.input100 {
  display: block;
  width: 100%;
  background: #e6e6e6;
  font-family: Comfortaa;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}
.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: #0077b5;
}
.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}
@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 60px 25px;
    opacity: 0;
  }
}
@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 60px 25px;
    opacity: 0;
  }
}
.symbol-input100 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  pointer-events: none;
  color: #aaaaaa;
  font-size: 15px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.input100:focus + .focus-input100 + .symbol-input100 {
  color: #0077b5;
  padding-left: 22px;
}
.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}
.contact100-form-btn {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #0077b5;
  font-family: Comfortaa;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.contact100-form-btn:hover {
  background: #333333;
}
@media (max-width: 1200px) {
  .contact100-pic {
    width: 33.5%;
  }

  .contact100-form {
    width: 44%;
  }
}
@media (max-width: 992px) {
  .wrap-contact100 {
    padding: 110px 80px 157px 90px;
  }

  .contact100-pic {
    width: 35%;
  }

  .contact100-form {
    width: 55%;
  }
}
@media (max-width: 768px) {
  .wrap-contact100 {
    padding: 110px 80px 157px 80px;
  }

  .contact100-pic {
    display: none;
  }

  .contact100-form {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .wrap-contact100 {
    padding: 110px 15px 157px 15px;
  }
}
.validate-input {
  position: relative;
}
.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;
  font-family: Comfortaa;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.alert-validate::after {
  content: "\f06a";
  font-family: Comfortaa;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}
.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

