@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap');



body {
  font-family: "Open Sans", sans-serif;
  padding-right: 0 !important;
}

.container {
  padding: 0px;
  margin: auto;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

.section-title {
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.section-title1 {
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  left: 20px;
  bottom: 50px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #fb3231;
  color: white;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #01012f;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.topbar1 a {
  text-decoration: none;
}

.topbar1 {
  background: #01012f;
}

.topbar1 .container {
  max-width: 93%;
  height: 38px;
  display: flex;
  position: relative;
}

.top-box1 {
  flex: 25%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.top-box2 {
  flex: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  letter-spacing: .4px;
  /* background-color: rgb(38, 0, 255); */
}

.top-box2 a {
  color: white;
}

#space {
  width: 50px;
}

.top-box3 {
  flex: 15%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* background-color: rgb(102, 255, 0); */
}

.topbar1 i {
  color: #fb3231;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 22px;
  transition: .3s;
}

.topbar1 i:hover {
  color: #ffffff;
}

.top-links {
  padding: 2px 10px 2px 10px;
  color: white;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.top-links:hover {
  background-color: #fb3231;
  color: white;
}

@media only screen and (max-width: 998px) {
  .topbar1 {
    display: none;
  }

}



/* ==================== Header section =================== */

header {
  position: sticky;
  top: 0px;
  background-color: white;
  width: 100%;
  z-index: 1000;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  transition: .5s;
}

header .container {
  max-width: 100%;
  padding: 0 0rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.logo-container {
  flex: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  color: #fb3231;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 3rem;
}

.nav-btn {
  flex: 55%;
  display: flex;

}

.nav-links {
  flex: 55%;

}

.get-started {
  flex: 15%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

.btn2 {
  color: black;
  display: inline-block;
  padding: .5rem 1.3rem;
  border-left: 3px solid#01012f;
  font-size: .8rem;
  font-weight: 700;
  line-height: .9;
  margin: 0 .2rem;
  transition: .3s;
}

.btn2:hover {
  color: #fb3231;
  border-left: 3px solid #fb3231;
}

#contact-support {
  font-size: 14px;
  margin-bottom: -15px;
  margin-left: 45px;
}

#phone-no {
  font-size: 17px;
  letter-spacing: 1px;
  margin-bottom: -10px;
  font-family: 'Montserrat', sans-serif;
}

#phone-no i {
  font-size: 33px;
  margin-right: 5px;
}



.btn {
  color: white;
  display: inline-block;
  padding: .5rem 1.3rem;
  font-size: 1rem;
  font-weight: 700;
  background-color: #01012f;
  border: 2px solid #fb3231;
  border-radius: 5rem;
  line-height: 1;
  margin: 0 .2rem;
  transition: .3s;
}

.btn:hover {
  background-color: #fb3231;
  color: black;
  border: 2px solid #01012f;
}

.nav-links>ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0px;
  margin: 0px;
}

.nav-link {
  position: relative;
  display: block;
  padding: .5rem .5rem;
}

.nav-link>a {
  line-height: 2.5rem;
  color: black;
  letter-spacing: .3px;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.nav-link>a>i {
  margin-left: .2rem;
}

.nav-link:hover>a {
  transform: scale(1.1);
  color: #fb3231;
}

.dropdown {
  position: absolute;
  top: 90%;
  left: -180px;
  width: 530px;
  background-color: white;
  color: #fb3231;
  padding: 1rem .5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid #fb3231;
  transition: .5s;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
}

.manu-title {
  color: #fb3231;
  font-size: 15px;
  font-weight: 600;
  /* margin-left: -10px; */
}

.dropdown-link span {
  font-weight: bolder;
}

.dropdown ul {
  float: left;
}

.dropdown a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 600;
}

.dropdown a:hover {
  color: #fb3231;
}

.dropdown-link {
  transition: .3s;
}

.dropdown-link:hover {
  padding-left: 5px;
}

.nav-link:hover>.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown2 {
  position: absolute;
  top: 90%;
  left: -90px;
  width: 270px;
  background-color: white;
  color: #fb3231;
  padding: 1rem .5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid #fb3231;
  transition: .5s;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
}

.dropdown2 ul {
  float: left;
}

.dropdown2 a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 600;
}

.dropdown2 a:hover {
  color: #fb3231;
}

.nav-link:hover>.dropdown2 {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown3 {
  position: absolute;
  top: 90%;
  left: -250px;
  width: 540px;
  background-color: white;
  color: #fb3231;
  padding: 1rem .5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid #fb3231;
  transition: .5s;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
}

.dropdown3 ul {
  float: left;
}

.dropdown3 a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 600;
}

.dropdown3 a:hover {
  color: #fb3231;
}

.nav-link:hover>.dropdown3 {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown4 {
  position: absolute;
  top: 90%;
  left: -70px;
  width: 200px;
  background-color: white;
  color: #fb3231;
  padding: .5rem .5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid #fb3231;
  transition: .5s;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
}

.dropdown4 ul {
  float: left;
}

.dropdown4 a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 600;
}

.dropdown4 a:hover {
  color: #fb3231;
}

.nav-link:hover>.dropdown4 {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

@media only screen and (max-width: 1190px) {
  .nav-link {
    padding: .5rem .2rem;
  }

  #contact-support {
    font-size: 12px;
    margin-bottom: -13px;
  }

  #phone-no {
    font-size: 15px;
    margin-bottom: -10px;
  }

  #phone-no i {
    font-size: 30px;
    margin-right: 2px;
  }
}


/* ============= mobile header nav section  ================= */

.hamburger-manu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}

.hamburger-manu-container i {
  font-size: 1.7rem;
  margin-right: 10px;
  color: #01012f;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: black;
  position: relative;
  z-index: 1001;
  transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: black;
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}


#check:checked~.hamburger-manu-container .hamburger-manu div {
  background-color: transparent;
}

#check:checked~.hamburger-manu-container .hamburger-manu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-manu-container .hamburger-manu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}


/*change the layout of the navigation bar for all the screens 
that have a width less or equal than 998px*/

@media only screen and (max-width: 998px) {

  header .container {
    height: 48px;
  }

  #topbar {
    display: none;
  }

  .logo-container {
    flex: 50%;
    padding-left: 15px;
    justify-content: left;
  }

  .logo {
    font-size: 2rem;
  }

  .hamburger-manu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  /*shows elements in a column*/
  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 3rem;
    left: 0;
    width: 100%;
    padding-right: 20px;
    padding-left: 10px;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: .6s;
  }

  #check:checked~.nav-btn {
    transform: translateX(0);
    transition: .6s;
  }

  #check:checked~.nav-btn .nav-link,
  #check:checked~.nav-btn .get-started {
    animation: animation .5s ease forwards var(--i);
  }


  .nav-links {
    flex: initial;
    width: 100%;
  }

  .nav-links>ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link:hover {
    width: 100%;
    background-color: #f1f4f6;
  }

  .nav-link>a {
    font-size: 18px;
    font-weight: 700;
    transform: scale(1);
    padding: 0rem .6rem;
    justify-content: space-between;
  }

  .nav-link>a:hover {
    font-size: 19px;
    transform: scale(1);
    padding: .5rem .0rem;

  }

  .manu-title {
    color: #fb3231;
    font-size: 17px;
    font-weight: 700;
    margin-left: -10px;
  }

  .dropdown a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: 700;
  }

  .dropdown2 a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: 700;
  }

  .dropdown3 a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: 700;
  }

  .dropdown4 a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: 700;
  }

  .dropdown {
    border-top: none;
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    display: none;
  }

  .dropdown ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link:hover>.dropdown,
  .dropdown-link:hover>.dropdown {
    display: block;
  }

  .nav-link:hover>a>i,
  .dropdown-link:hover>a>i {
    transform: rotate(360deg);
  }

  .dropdown2 {
    border-top: none;
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    display: none;
  }

  .dropdown2 ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link:hover>.dropdown2,
  .dropdown2-link:hover>.dropdown2 {
    display: block;
  }

  .nav-link:hover>a>i,
  .dropdown2-link:hover>a>i {
    transform: rotate(360deg);
  }

  .dropdown3 {
    border-top: none;
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    display: none;
  }

  .dropdown3 ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link:hover>.dropdown3,
  .dropdown3-link:hover>.dropdown3 {
    display: block;
  }

  .nav-link:hover>a>i,
  .dropdown3-link:hover>a>i {
    transform: rotate(360deg);
  }

  .dropdown4 {
    border-top: none;
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    display: none;
  }

  .dropdown4 ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link:hover>.dropdown4,
  .dropdown4-link:hover>.dropdown4 {
    display: block;
  }

  .nav-link:hover>a>i,
  .dropdown4-link:hover>a>i {
    transform: rotate(360deg);
  }

  .get-started {
    flex: initial;
    width: 100%;
    opacity: 1;
    transform: translateY(15px);
    padding-bottom: 150px;
    justify-content: center;
  }

  .footer-top .get-started {
    flex: initial;
    width: 100%;
    opacity: 1;
    transform: translateY(15px);
    justify-content: center;
  }
}

@media only screen and (max-width: 500px) {
  .logo {
    font-size: 1.7rem;
    letter-spacing: 1px;
    margin-bottom: -3px;
  }

}


/* Modals */


.modal-content {
  padding: 0px;
  border-radius: 10px;
  background-image: url("contact.png");
  /* The image used */
  background-position: center;
  /*Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
}

.modal-body {
  margin: 0px;
  padding: 0px;
}

.modal-body .container {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
}

/* 
.model-img{
  position: absolute;
  top: 10%;
} */

.modal-body .contact2 {
  width: 40%;
  margin-top: 20px;
  margin-bottom: 25px;
  margin-right: 20px;
  margin-left: 20px;
}

.modal-body #cotacttitle {
  color: #01012f;
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.modal-body .contact2 .php-email-form {
  width: 100%;
  height: auto;
  background: transparent;
  border-radius: 10px;
  border: 2px solid #01012f;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.modal-body .contact2 .php-email-form button[type="submit"] {
  background: #01012f;
  width: 90%;
  border: 0;
  padding: 7px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: 0.4s;
  border-radius: 20px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.modal-body .contact2 ::placeholder {
  color: #01012f;
  font-size: 13px;
  opacity: 0.8;
}

.modal-body .contact2 .php-email-form input,
.modal-body .contact2 .php-email-form textarea,
.modal-body .contact2 .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  color: #01012f;
  font-weight: 600;
  background-color: transparent;
  border-color: #01012f;
}

.modal-body .contact2 .php-email-form input:focus,
.modal-body .contact2 .php-email-form textarea:focus {
  border-color: #47b2e4;
  color: #01012f;
}

.modal-body .contact2 .php-email-form input {
  height: 4px;
  font-size: 17px;
  font-weight: 600;
  color: #01012f;
  background-color: transparent;
}

#closebtn {
  width: 95%;
  color: white;
  background: transparent;
  border: none;
  font-size: 25px;
  font-weight: 600;
  text-align: end;
  height: 30px;
  margin: 0px;
  padding: 0px;
}

@media (max-width: 990px) {
  .modal-body .contact2 {
    width: 98%;
  }

  .modal-content {
    padding: 0px;
    border-radius: 10px;
    background-image: none;
    /* The image used */
    background-position: center;
    /*Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    background-color: #fffcfb;
  }

  .modal-body .contact2 .php-email-form button[type="submit"] {
    background: #fb3231;
  }

  .modal-body #cotacttitle {
    color: #fb3231;
  }

  .modal-body .contact2 .php-email-form {
    border: 2px solid #fb3231;
  }
}

/* Modals */

/* ============= main section ================= */

/* ================= hero section gride crausal ==============  */

img {
  max-width: 100%;
  height: auto;
}

/* .hero-box{
  position: relative;
} */

.grid-slider-section {
  position: relative;
}

.hero-title {
  color: #fb3231;
}

.hero-content {
  position: absolute;
  top: 10%;
  left: 10%;
  /* transform: translate(-50%, -50%); */
}

#top-text {
  width: 37%;
  font-size: 18px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  background-color:  #fb3231;
  padding: 5px 10px;
  /* border: solid 2px white; */
  border-radius: 0px 20px 20px 0px;
  text-align: center;
}

#main-text {
  width: 70%;
  line-height: 108%;
  margin-top: 50px;
  margin-bottom: 0px;
  font-size: 50px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

#bottom-text {
  margin-top: 20px;
  margin-bottom: 40px;
  width: 50%;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.button-one {
  color: white;
  font-size: 40px;
  font-weight: 600;
  background: transparent;
  border-radius: 50px;
  margin-right: 2.5rem;
  padding: 5px 40px;
}

.button-two {
  border: solid 2px white;
  color: white;
  font-size: 20px;
  font-weight: 600;
  background-color: transparent;
  border-radius: 30px;
  margin-right: 0rem;
  padding: 7px 30px;
  transition: .5s;
}

.button-two:hover {
  background-color: #fb3231;
  color: #ffffff;
  border: solid 2px #01012f;
}

.button-two i:hover {
  color: #01012f;
}

.button-one i {
  font-size: 35px;
  margin-right: .2rem;
}

.button-two i {
  font-size: 18px;
  margin-right: .4rem;
}


.contact-form {
  position: absolute;
  top: 40px;
  right: 50px;
  z-index: 999;
  overflow: hidden;
}

.contact-form2 {
  width: 90%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 20px;
  display: none;
  overflow: hidden;
}

.ctitle {
  width: 100%;
  /* background-color: #102864; */
  margin-bottom: 2px;
  padding-top: 8px;
  padding-bottom: 3px;
}

#cotacttitle {
  color: #fb3231;
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

#cotacsubttitle {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: -3px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

.modal #cotacsubttitle {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: -3px;
  color: #141313;
  font-size: 12px;
  font-weight: 600;
}

#cotacsubttitle2 {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: -3px;
  color: #01012f;
  font-size: 12px;
  font-weight: 600;
}

.contactno {
  margin-top: 10px;
  background-color: #fb3231;
  display: flex;
  position: relative;
  padding: 5px;
}

.contaectbox-icon {
  flex: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.contactbox-no {
  flex: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contactbox-no p {
  margin-bottom: -2px;
  font-size: 18px;
  font-weight: 700;
  padding-left: 10px;
  padding-right: 10px;
  color: #ffffff;
}

.contact2 .php-email-form {
  width: 100%;
  height: auto;
  background: transparent;
  border: 2px solid #fb3231;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.footer-mid .contact2 .php-email-form {
  width: 100%;
  height: auto;
  background: transparent;
  border: none;
  overflow: hidden;
}

.contactwidth {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.contact2 .php-email-form .form-group {
  padding: 5px 10px 0px 10px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
}

.footer-mid .contact2 .form-group {
  padding: 2px 20px 10px 0px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
}

.contact2 .php-email-form .validate {
  display: none;
  color: red;
  font-weight: 400;
  font-size: 13px;
}

.contact2 .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 1px;
  font-weight: 400;
  font-size: 13px;
}

.contact-form2 .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 1px;
  font-weight: 400;
  font-size: 13px;
}

.footer-mid .php-email-form .error-message {
  display: none;
  color: #fff;
  text-align: left;
  padding: 1px;
  font-weight: 400;
  font-size: 13px;
}

.contact2 ::placeholder {
  color: white;
  font-size: 13px;
  opacity: 0.8;
}

.contact-form2 ::placeholder {
  color: #ed3c0d;
  font-size: 13px;
  opacity: 0.8;
}

.contact2 textarea::placeholder {
  color: white;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}

.contact-form2 textarea::placeholder {
  color: #fb3231;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}

.contact2 textarea {
  margin-bottom: 0px;
}

.form-group select {
  color: white;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}

.contact-form2 select {
  color: black;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}

.form-group option {
  color: red;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}


.contact2 .php-email-form .error-message br+br {
  margin-top: 0px;
}

.contact2 .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact2 .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact2 .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact2 .php-email-form .form-group {
  margin-bottom: 0px;
}

.contact2 .php-email-form label {
  padding-bottom: 0px;
}

.contact2 .php-email-form input,
.contact2 .php-email-form textarea,
.contact2 .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  color: white;
  background-color: transparent;
  border-color: #fb3231;
}

.contact-form2 .php-email-form input,
.contact-form2 .php-email-form textarea,
.contact-form2 .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  color: #fb3231;
  background-color: transparent;
  border-color: #fb3231;
}

.contact2 .php-email-form input:focus,
.contact2 .php-email-form textarea:focus {
  border-color: #47b2e4;
  color: white;
}

.contact-form2 .php-email-form input:focus,
.contact-form2 .php-email-form textarea:focus {
  border-color: #47b2e4;
  color: black;
}

.contact2 .php-email-form input {
  height: 4px;
  font-size: 17px;
  font-weight: 600;
  color: white;
  background-color: transparent;
}

.contact-form2 .php-email-form input {
  height: 4px;
  font-size: 17px;
  font-weight: 600;
  color: black;
  background-color: transparent;
}

.contact2 .php-email-form textarea {
  padding: 10px 12px;
  height: auto;
  background-color: transparent;
}

.contact2 .php-email-form button[type="submit"] {
  background: #fb3231;
  width: 90%;
  border: 0;
  padding: 7px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: 0.4s;
  border-radius: 20px;
  margin-bottom: 5px;
  margin-top: 5px;
}

@media only screen and (max-width: 1260px) {
  .contact-form {
    top: 20px;
  }
}

@media only screen and (max-width: 1240px) {
  .hero-content {
    top: 5%;
  }

  .contact-form {
    top: 10px;
  }
}

@media only screen and (max-width: 1150px) {
  .hero-content {
    top: 5%;
  }

  .contact-form {
    display: none;
  }

  .contact-form2 {
    display: block;
  }

  #main-text {
    margin-top: 30px;
  }

  #top-text {
    width: 40%;
  }

  #bottom-text {
    width: 65%;
  }

}

@media only screen and (max-width: 998px) {
  .contact-form {
    display: none;
  }

  .contact-form2 {
    margin-top: 10px;
  }

  .hero-content {
    top: 5%;
  }

  #main-text {
    margin-top: 40px;
  }

  #top-text {
    width: 45%;
  }

  #bottom-text {
    width: 65%;
  }

}

@media only screen and (max-width: 898px) {
  .hero-content {
    top: 5%;
  }

  #main-text {
    margin-top: 25px;
    font-size: 40px;
  }

  #top-text {
    width: 50%;
  }

  #bottom-text {
    width: 65%;
  }

}


@media only screen and (max-width: 798px) {
  .hero-content {
    top: 15%;
  }

  #main-text {
    margin-top: 30px;
    font-size: 30px;
  }

  #top-text {
    width: 45%;
    font-size: 14px;
  }

  #bottom-text {
    margin-top: 0px;
    margin-bottom: 10px;
    width: 65%;
    font-size: 15px;
  }

  .button-one {
    font-size: 30px;
  }

  .button-two {
    font-size: 15px;
  }

  .button-one i {
    font-size: 25px;
  }

  .button-two i {
    font-size: 14px;
  }
}

@media only screen and (max-width: 698px) {
  .hero-content {
    top: 10%;
  }

  #main-text {
    margin-top: 30px;
    font-size: 25px;
  }

  #top-text {
    width: 70%;
    font-size: 14px;
  }

  #bottom-text {
    width: 80%;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #hide-text {
    display: none;
  }

  .button-one {
    font-size: 28px;
  }

  .button-two {
    font-size: 15px;
  }

  .button-one i {
    font-size: 23px;
  }

  .button-two i {
    font-size: 14px;
  }

}


@media only screen and (max-width: 598px) {
  .hero-content {
    top: 10%;
    left: 15%;
  }

  #main-text {
    margin-top: 5px;
    font-size: 20px;
  }

  #top-text {
    width: 70%;
    font-size: 13px;
  }

  #bottom-text {
    width: 80%;
    font-size: 15px;
    margin-top: 2px;
    margin-bottom: 10px;
  }

  #hide-text {
    display: none;
  }

  .button-one {
    font-size: 20px;
  }

  .button-two {
    font-size: 13px;
  }

  .button-one i {
    font-size: 17px;
  }

  .button-two i {
    font-size: 12px;
  }

}


@media only screen and (max-width: 550px) {
  .hero-content {
    top: 12%;
    left: 15%;
  }

  #main-text {
    margin-top: 5px;
    font-size: 17px;
  }

  #top-text {
    width: 80%;
    font-size: 14px;
    font-family: unset;
    padding: 3px 10px;
  }

  #bottom-text {
    width: 80%;
    font-size: 13px;
    font-weight: 100;
    margin-top: 2px;
    margin-bottom: 10px;
  }

  #hide-text {
    display: none;
  }

  .button-one {
    font-size: 20px;
    padding: 2px 10px;
  }

  .button-two {
    font-size: 13px;
    padding: 2px 10px;
  }

  .button-one i {
    font-size: 17px;
  }

  .button-two i {
    font-size: 12px;
  }

}

@media only screen and (max-width: 430px) {
  .hero-content {
    top: 6%;
    left: 15%;
  }

  .button-one {
    font-size: 17px;
    padding: 2px 10px;
  }

  .button-one i {
    font-size: 4px;
  }
}

@media only screen and (max-width: 360px) {
  .hero-content {
    top: 5%;
    left: 15%;
  }

  #top-text {
    width: 90%;
    font-size: 12px;
    font-family: unset;
    padding: 3px 10px;
  }

  #main-text {
    margin-bottom: 10px;
  }

  #bottom-text {
    display: none;
  }

  .button-one {
    font-size: 17px;
    padding: 2px 10px;
  }

  .button-one i {
    font-size: 4px;
  }
}

.gride-slide img {
  margin-left: auto;
  margin-right: auto;
  filter: brightness(50%);
}

.gride-slide {
  width: 100%;
  height: auto;
}

.flickity-page-dots {
  bottom: 20px;
}

.grid-slider-wrap .flickity-prev-next-button {
  height: 30px;
  width: 30px;
}

.grid-slider-wrap .flickity-prev-next-button.next {
  display: none;
}

@media only screen and (max-width: 1150px) {
  .grid-slider-wrap .flickity-prev-next-button.next {
    display: block;
  }
}

@media only screen and (max-width: 698px) {
  .flickity-page-dots {
    bottom: 3px;
  }

  .grid-slider-wrap .flickity-prev-next-button {
    height: 25px;
    width: 25px;
  }
}

@media only screen and (max-width: 400px) {
  .flickity-page-dots {
    display: none;
  }
}

/* white circles */
.flickity-page-dots .dot {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: transparent;
  border: 2px solid rgb(255, 255, 255);
}

/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
  background: #fb3231;
}


/* =================== search bar box section ================ */

.search-bar {
  height: 120px;
}

.main-search-box {
  width: 80%;
  height: auto;
  margin: auto;
  position: relative;
  top: -100px;
  background-color: #f3f8fe;
  border-radius: 10px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.08);
}

.main-search-box form {
  border: 1px solid #fb3231;
}

.searchbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tags a {
  color: rgb(14, 13, 13);
}

#popular-s {
  font-size: 15px;
  font-weight: 700;
}

.tags a:hover {
  color: rgb(255, 255, 255);
}

.tags .badge {
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 20px;
  border-radius: 20px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
  border: 1px solid #fb3231;
  ;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.08);
  transition: .5s;
}

.tags .badge:hover {
  background-color: #fb3231;
}

.searchbar form {
  margin-top: 5px;
  margin-bottom: 5px;
  width: 50%;
  background: #fff;
  padding: 0px 0px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
}

.searchbar h2 {
  font-size: 24px;
  margin: 10px 5px 5px 5px;
  padding: 5px;
  line-height: 1;
  font-weight: 600;
  color: #01012f;
}

.searchbar form input[type="text"] {
  color: black;
  border: none;
  padding: 0px 10px;
  width: calc(100% - 100px);
  text-align: left;
  border: none;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 8px;
}

.searchbar input::placeholder {
  color: #fb3231;
}

.searchbar form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  font-weight: 600;
  padding: 0 20px;
  background: #fb3231;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.searchbar form input[type="submit"]:hover {
  background: #01012f;
}


/* ======== Mobile search box section  ======= */

.search-bar2 {
  padding-right: 5px;
  padding-left: 5px;
  padding-top: 5px;
}

.main-search-box2 {
  margin: auto;
  width: 100%;
  height: auto;
  background-color: #f3f8fe;
  border-radius: 10px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.08);
  display: none;
}

.main-search-box2 form {
  border: 1px solid #fb3231;
  ;
}

.searchbar2 form {
  margin-top: 5px;
  margin-bottom: 5px;
  width: 90%;
  background: #fff;
  padding: 0px 0px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
}

.searchbar2 h2 {
  font-size: 18px;
  padding: 10px 5px 5px 5px;
  line-height: 1;
  font-weight: 600;
  color: #01012f;
  text-align: center;
}

.searchbar2 form input[type="text"] {
  color: black;
  padding: 4px 10px;
  width: calc(100% - 100px);
  text-align: left;
  border: none;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 8px;
}


.searchbar2 input::placeholder {
  color: #fb3231;
  direction: rtl;

}

.searchbar2 form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  font-weight: 600;
  padding: 0 20px;
  background: #fb3231;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.searchbar2 form input[type="submit"]:hover {
  background: #01012f;
}

.ml11 {
  font-weight: 600;
  font-size: 1.5em;
  color: #01012f;
  text-align: center;
}

.ml11 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.15em;
  padding-right: 0.05em;
  padding-bottom: 0em;
}

.ml11 .line {
  opacity: 0;
  position: absolute;
  left: -30px;
  height: 100%;
  width: 3px;
  background-color: transparent;
  transform-origin: 0 50%;
}

.ml11 .line1 {
  top: 0;
  left: 0;
}

.ml11 .letter {
  display: inline-block;
  line-height: 1em;
}

.ml111 {
  font-weight: 600;
  font-size: 2em;
  color: #01012f;
}

.ml111 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.15em;
  padding-right: 0.05em;
  padding-bottom: 0em;
}

.ml111 .line {
  opacity: 0;
  position: absolute;
  left: 0;
  height: 100%;
  width: 3px;
  background-color: #fff;
  transform-origin: 0 50%;
}

.ml111 .line1 {
  top: 0;
  left: 0;
}

.ml111 .letter {
  display: inline-block;
  line-height: 1em;
}


@media only screen and (max-width: 998px) {
  .search-bar {
    display: none;
  }

  .main-search-box {
    display: none;
  }

  .search-bar2 {
    display: block;
  }

  .main-search-box2 {
    display: block;
  }
}



/* ================ special offer ==================== */

.special-offers {
  padding-bottom: 40px;
}

.section-title1 h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: bold;
  position: relative;
  color: #01012f;
}

.section-title1 h2 span {
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: bold;
  position: relative;
  color: #fb3231;
}


.special-slider-section .container {
  width: 90%;
}

.special-slide-inner {
  padding: 10px;
  margin: auto;
}

.special-slide-inner .card-body {
  padding: 0px;
}

.special-slide-inner img {
  border-radius: 5px;
}

.special-slide {
  width: 33%;
}

.special-slider-section .flickity-page-dots {
  bottom: -30px;
}

/* white circles */
.flickity-page-dots .dot {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: transparent;
  border: 2px solid #fb3231;
}

/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
  background: #fb3231;
}

.special-slider-section .flickity-prev-next-button {
  background-color: #fb3231;
  color: white;
  box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.08);
}

.special-slider-section .flickity-prev-next-button:hover {
  background-color: #01012f;
  color: white;
}

.special-slider-section .flickity-prev-next-button.previous {
  left: -35px;
}

.special-slider-section .flickity-prev-next-button.next {
  right: -35px;
}

@media only screen and (max-width: 1170px) {
  .special-slide {
    width: 35%;
    height: auto;
    margin-right: auto;
  }

}

@media only screen and (max-width: 1050px) {
  .special-slide {
    width: 40%;
    height: auto;
    margin: auto;
  }

  .special-slide-inner {
    padding: 5px;
    margin-left: 5px;
  }

}

@media only screen and (max-width: 998px) {
  .special-slide {
    width: 50%;
    height: auto;
    margin: auto;
  }

  .special-slide-inner {
    padding: 5px;
    margin-left: 20px;
  }

}

@media only screen and (max-width: 798px) {
  .special-slide {
    width: 100%;
    height: auto;
    margin: auto;
  }

  .special-slide-inner {
    padding: 5px;
    margin-left: 0px;
  }

  .special-slider-section .container {
    width: 75%;
  }
}



/* ================== service section============ */
.our-services {
  padding-bottom: 10px;
}
.all-services{
  margin-top: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s
}
.all-services a{
  background-color: #fb3231;
  font-weight: 700;
  color: white;
  padding: 5px 10px;
  text-align: center;
  border-radius: 7px;
  box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.08);
}

.all-services a:hover{
  background-color: #01012f;
}
.all-services:hover{
  transform: translate(0, -5px);
}

.section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: bold;
  /* padding-bottom: 10px; */
  position: relative;
  color: #01012f;
}

.section-title h2 span {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: bold;
  /* padding-bottom: 10px; */
  position: relative;
  color: #fb3231;
}

.card {
  margin-bottom: 20px;
  margin-right: 5px;
  margin-left: 5px;
  border-radius: 10px;
  border: none;
  background-color: #f3f8fe;
  box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.08);
  transition: .5s;
}

.card2 {
  margin-bottom: 20px;
  margin-right: 5px;
  margin-left: 5px;
  border-radius: 10px;
  border: none;
  background-color: #f3f8fe;
  box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.08);
  transition: .5s;
}

.card-body p {
  margin: auto;
  text-align: center;
  width: 80%;
}

.starting {
  font-size: 20px;
  font-weight: 700;
  color: #fb3231;
  font-family: "Poppins", sans-serif;
  padding-top: 10px;
}

.pric-box {
  margin-top: 40px;
}

.pric-box .starting {
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fb3231;
  font-family: "Poppins", sans-serif;
  padding-top: 10px;
}

.pricing {
  font-size: 45px;
  font-weight: 700;
  color: #01012f;
  font-family: 'Montserrat', sans-serif;
  padding-right: 20px;
  line-height: 1;
}

.pric-box .pricing {
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  color: #01012f;
  font-family: 'Montserrat', sans-serif;
  padding-right: 20px;
  line-height: 1;
}

.pricing i {
  font-size: 30px;
  font-weight: 700;
  color: #01012f;
}

.allin {
  font-size: 12px;
  font-weight: 700;
  color: #01012f;
}

.cardbox-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pric-box .pricing i {
  font-size: 30px;
  font-weight: 700;
  color: #01012f;
}

.pric-box .allin {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: #01012f;
}

.pric-box.cardbox-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}

#odernow {
  background-color: #fb3231;
  color: white;
  border-radius: 30px;
  padding: 5px 10px;
  margin-right: 10px;
}

#read-more {
  padding: 5px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fb3231;
}

#read-more i {
  opacity: 0;
  font-size: 15px;
  align-items: center;
  transition: .5s;
}

#read-more a:hover {
  color: #01012f;
}

#read-more:hover i,
#read-more i:hover {
  opacity: 1;
  padding-left: 5px;
}

.card:hover {
  transform: translate(0, -10px);
  background-color: #ffffff;
}

.card2:hover {
  transform: translate(0, -10px);
  background-color: #ffffff;
}

.card .card-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-top: 7px;
}

.card a {
  color: #01012f;
}

.card a:hover {
  color: #fb3231;
}

.service-slider-section .container {
  width: 90%;
}

.service-slide-inner {
  padding: 10px;
  margin-left: 10px;
}

.service-slide {
  width: 33%;
}

.service-slider-section .flickity-page-dots {
  bottom: -30px;
}

/* white circles */
.flickity-page-dots .dot {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: transparent;
  border: 2px solid #fb3231;
}

/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
  background: #fb3231;
}

.service-slider-section .flickity-prev-next-button {
  background-color:#fb3231;
  color: white;
  box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.08);
}

.service-slider-section .flickity-prev-next-button:hover {
  background-color: #01012f;
  color: white;
}

.service-slider-section .flickity-prev-next-button.previous {
  left: -35px;
}

.service-slider-section .flickity-prev-next-button.next {
  right: -35px;
}

@media only screen and (max-width: 1170px) {
  .service-slide {
    width: 35%;
    height: auto;
    margin-right: auto;
  }

}

@media only screen and (max-width: 1050px) {
  .service-slide {
    width: 40%;
    height: auto;
    margin: auto;
  }

  .service-slide-inner {
    padding: 5px;
    margin-left: 5px;
  }

}

@media only screen and (max-width: 998px) {
  .service-slide {
    width: 50%;
    height: auto;
    margin: auto;
  }

  .service-slide-inner {
    padding: 5px;
    margin-left: 20px;
  }

}

@media only screen and (max-width: 798px) {
  .service-slide {
    width: 100%;
    height: auto;
    margin: auto;
  }

  .service-slide-inner {
    padding: 5px;
    margin-left: 0px;
  }

  .service-slider-section .container {
    width: 80%;
  }
}


/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/

.cliens .container {
  width: 80%;
}

.cliens {
  background-color: #f3f8fe;
  padding: 12px 0;
  text-align: center;
}

.cliens img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  /* -webkit-filter: grayscale(100); */
  /* filter: grayscale(100); */
}

.cliens img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cliens img {
    max-width: 40%;
  }
}


/* ============================= why choose us section ===================== */

.why-us {
  background-color: #f3f8fe;
  padding-top: 0px;
  padding-bottom: 20px;
  height: 620px;
}

.top-pad {
  padding-top: 25px;
}

.why-us a {
  text-decoration: none;
  color: unset;

}

.why-us-content {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.08);
}


.why-us-icon {
  flex: 2;
  display: flex;
  font-size: 30px;
  color: white;
  padding: 15px 10px;
  align-items: center;
  justify-content: space-around;
  background-color: #fb3231;
  transition: .5s;
}

.why-us-icon:hover {
  background-color: white;
}

.why-us-title {
  flex: 10;
  display: flex;
  font-size: 15px;
  line-height: 100%;
  font-family: 'Montserrat', sans-serif;
  padding-left: 10px;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  transition: .5s;
}

.why-us-title i {
  font-size: 25px;
  margin-right: 5px;
}

.section-subtitle {
  margin: auto;
  padding-bottom: 10px;
  width: 50%;
  font-size: 14px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.section-subtitle2 {
  margin: auto;
  padding-bottom: 20px;
  width: 70%;
  font-size: 14px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

@media only screen and (max-width: 998px) {
  .why-us {
    height: auto;
  }
}

@media only screen and (max-width: 798px) {
  .section-subtitle {
    width: 80%;
  }

  .section-subtitle2 {
    width: 95%;
    text-align: justify;
  }
}

@media only screen and (max-width: 600px) {
  .why-us .container {
    width: 85%;
  }
}


.why-content-box {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  text-align: justify;
  font-weight: 600;
  margin-top: -5px;
  padding: 10px;
  display: none;
  transition: .3s;
}


/* ========================== */

.our-team .container {
  width: 80%;
}

.weare h2 {
  padding-top: 20px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 700;
  color: #fb3231;
  overflow: hidden;
}

/* =============== About us ======================= */
.about-us-main .container {
  width: 80%;
  height: auto;
  position: relative;
  margin: auto;
  overflow: hidden;
  padding-bottom: 20px;
  padding-top: 20px;
}

.small {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.small p {
  margin: 0px;
  font-size: 160px;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  background-size: cover;
  color: #e3e3e3;
  letter-spacing: 10px;
  padding: 0px;
}

.about22 {
  color: #fb3231;
  font-family: 'Oswald', sans-serif;
  font-size: 80px;
  font-weight: 800;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1330px) {
  .small p {
    font-size: 130px;
  }

  .about22 {
    font-size: 80px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1120px) {
  .small p {
    font-size: 110px;
  }

  .about22 {
    font-size: 70px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 998px) {
  .small p {
    font-size: 80px;
  }

  .about22 {
    font-size: 50px;
    margin-top: 5px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 798px) {
  .small p {
    font-size: 70px;
  }

  .about22 {
    font-size: 50px;
    margin-top: 30px;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 320px) {
  .small p {
    font-size: 60px;
  }

  .about22 {
    font-size: 50px;
    margin-top: 30px;
    margin-bottom: 70px;
  }
}

/* ============================ our statistic===================== */

.our-statistic .section-title {
  margin-top: 0px;
}

.our-statistic .container {
  width: 80%;
  position: relative;
  margin: auto;
  overflow: hidden;
  padding-bottom: 50px;
}

.counter-bacground {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.counter-bacground h1 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 160px;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  background-size: cover;
  color: #e3e3e3;
  letter-spacing: 10px;
}

.our-statistic h2 {
  color: #01012f;
}

.mid {
  padding-top: 0px;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mida {
  padding-top: 50px;
}

.conta {
  text-align: center;
  color: white;
}

.shiva22 {
  color: #fb3231;
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 800;
}

.shiva33 {
  color: #fb3231;
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 800;
}

.shiva44 {
  color: #fb3231;
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 800;
  ;
}

.shiva55 {
  color: #fb3231;
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 800;
}

.shiva2 {
  color: #01012f;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;

}

.shiva3 {
  color: #01012f;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;

}

.shiva4 {
  color: #01012f;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;

}

.shiva5 {
  color: #01012f;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;
}

@media only screen and (max-width: 1330px) {
  .counter-bacground h1 {
    font-size: 130px;
    margin-top: 0px;
  }

  .mida {
    padding-top: 10px;
  }
}

@media only screen and (max-width: 1120px) {
  .counter-bacground h1 {
    font-size: 100px;
    margin-top: 20px;
  }

  .small h1 {
    font-size: 140px;
  }

  .mida {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 998px) {
  .counter-bacground h1 {
    font-size: 150px;
    margin-top: 70px;
  }

  .small h1 {
    font-size: 100px;
  }

  .mida {
    padding-top: 10px;
  }
}

@media only screen and (max-width: 798px) {
  .counter-bacground h1 {
    font-size: 100px;
    margin-top: 100px;
  }

  .mida {
    padding-top: 10px;
  }
}

@media only screen and (max-width: 598px) {
  .counter-bacground h1 {
    font-size: 80px;
    margin-top: 100px;
  }

  .mida {
    padding-top: 10px;
  }
}



/* ================== testimonials section============ */
.our-testimonials {
  padding-bottom: 40px;
  overflow: hidden;
}

.testimonials-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: bold;
  /* padding-bottom: 10px; */
  position: relative;
  color: #01012f;
}

.testimonials-title h2 span {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: bold;
  /* padding-bottom: 10px; */
  position: relative;
  color: #fb3231;
}

#cross-div {
  position: absolute;
  bottom: -15px;
  left: 135px;
  height: 30px;
  background-color: #f3f8fe;
  width: 30px;
  transform: rotate(45deg);
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.08);
}

.card-body2 {
  width: 100%;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.card-body2 p i {
  font-size: 20px;
  margin-left: 8px;
  margin-right: 8px;

}

.card-profile-i {
  display: flex;
  margin-top: 40px;
  justify-content: center;
  position: relative;
  border-radius: 50px;
}

.card-profile-i img {
  height: 100px;
  width: 100px;
  border-radius: 50px;
}

.outer-box {
  position: absolute;
  width: 116px;
  height: 116px;
  top: -5px;
  left: 92px;
  padding: 3px;
  border-radius: 50%;
  border: 3px rgb(250, 5, 5) dashed;
  animation: mymove 8s linear infinite;
  animation-play-state: running;
}

@keyframes mymove {
  100% {
    transform: rotate(360deg);
  }

  0% {
    transform: rotate(0deg);
  }
}

.inner-box {
  border-radius: 50%;
  background-color: #01012f;
  padding: 3px;
}

.card-body2 p {
  margin: auto;
  font-size: 17px;
  text-align: center;
  width: 80%;
}

.profile-name {
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 18px;
}

.profile-des {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 15px;

}

.testimonials-slider-section .container {
  width: 90%;
}

.testimonials-slide-inner {
  width: 320px;
  padding: 10px;
  margin: auto;
}

.testimonials-slide {
  width: 33%;
}

.testimonials-slider-section .flickity-page-dots {
  bottom: -30px;
}

/* white circles */
.flickity-page-dots .dot {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: transparent;
  border: 2px solid #fb3231;
}

/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
  background: #fb3231;
}

.testimonials-slider-section .flickity-prev-next-button {
  background-color: #fb3231;
  color: white;
  box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.08);
}

.testimonials-slider-section .flickity-prev-next-button:hover {
  background-color: #01012f;
  color: white;
}

.testimonials-slider-section .flickity-prev-next-button.previous {
  left: -35px;
}

.testimonials-slider-section .flickity-prev-next-button.next {
  right: -35px;
}

@media only screen and (max-width: 1200px) {
  .testimonials-slide {
    width: 33%;
    height: auto;
    margin-right: auto;
  }

  .testimonials-slider-section .container {
    width: 100%;
  }

  .testimonials-slide-inner {
    width: 320px;
    padding: 5px;
    margin: auto
  }

  .outer-box {
    width: 116px;
    height: 116px;
    top: -5px;
    left: 97px;
  }

}

@media only screen and (max-width: 1170px) {
  .testimonials-slide {
    width: 35%;
    height: auto;
    margin-right: auto;
  }

  .testimonials-slide-inner {
    width: 290px;
    padding: 10px;
    margin: auto;
  }

  .outer-box {
    width: 116px;
    height: 116px;
    top: -5px;
    left: 77px;
  }

  #cross-div {
    left: 120px;
  }

}

@media only screen and (max-width: 1050px) {
  .testimonials-slide {
    width: 33%;
    height: auto;
    margin: auto;
  }

  .testimonials-slide-inner {
    width: 320px;
    padding: 5px;
    margin: auto
  }

  .outer-box {
    width: 116px;
    height: 116px;
    top: -5px;
    left: 97px;
  }

  #cross-div {
    left: 140px;
  }

}

@media only screen and (max-width: 998px) {
  .testimonials-slide {
    width: 50%;
    height: auto;
    margin: auto;
  }

  .testimonials-slide-inner {
    width: 290px;
    padding: 10px;
    margin: auto
  }

  .outer-box {
    width: 116px;
    height: 116px;
    top: -5px;
    left: 77px;
  }

  #cross-div {
    left: 120px;
  }

}

@media only screen and (max-width: 798px) {
  .testimonials-slide {
    width: 50%;
    height: auto;
    margin: auto;
  }

  .testimonials-slide-inner {
    width: 290px;
    padding: 10px;
    margin: auto
  }

  .outer-box {
    width: 116px;
    height: 116px;
    top: -5px;
    left: 77px;
  }

}

@media only screen and (max-width: 760px) {
  .testimonials-slide {
    width: 100%;
    height: auto;
    margin: auto;
  }

  .testimonials-slide-inner {
    width: 300px;
    padding: 10px;
    margin: auto;
  }

  .testimonials-slider-section .container {
    width: 80%;
  }

  .outer-box {
    width: 116px;
    height: 116px;
    top: -5px;
    left: 82px;
  }

}

@media only screen and (max-width: 510px) {

  .testimonials-slide-inner {
    width: 290px;
    padding: 10px;
    margin-left: 10px;
  }

  .testimonials-slide {
    width: 100%;
    height: auto;
    margin: auto;
  }

  .testimonials-slide-inner {
    padding: 5px;
    margin: auto;
  }

  .testimonials-slider-section .container {
    width: 80%;
  }

  .outer-box {
    width: 116px;
    height: 116px;
    top: -5px;
    left: 82px;
  }
}


/* ======================== Call To Action ===================== */
.call-to-action {
  margin-top: 45px;
  background-color: #fb3231;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.call-to-action .container {
  max-width: 90%;
  display: flex;
  position: relative;
}

.call-text {
  flex: auto;
  display: flex;
  justify-content: start;
  flex-direction: column;
  /* background-color: greenyellow; */
}

.call-link-icon {
  padding-top: 15px;
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: rgb(47, 95, 255); */
}

.call-link-icon i {
  color: white;
  font-size: 28px;
  margin-left: 10px;
}


.call-to-action p {
  margin: 0px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: white;
}

#call-title {
  font-family: "Poppins", sans-serif;
  font-size: 33px;
  font-weight: 600;
  color: white;
}

#call-no {
  color: white;
  font-size: 19px;
  letter-spacing: 1px;
  padding-bottom: 0px;
  padding-left: 10px;
  font-family: 'Montserrat', sans-serif;
}

.call-to-action a {
  padding: 10px 20px 10px 20px;
  background-color: white;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fb3231;
  border-radius: 30px;
}


@media only screen and (max-width: 1310px) {
  .call-to-action .container {
    max-width: 90%;
    display: flex;
    text-align: center;
    flex-direction: column;
    position: relative;
  }
}

@media only screen and (max-width: 410px) {
  .call-to-action a {
    margin-bottom: 10px;
  }

  .call-link-icon {
    padding-top: 15px;
    flex-direction: column;
  }
}



/* ====================== About Us ====================== */

.about-us {
  background-color: #f1f4f6;
  overflow: hidden;
}

.about-us .container {
  max-width: 98%;
}

.about-box img {
  margin: auto;
}

.about-us .section-title {
  margin-bottom: 30px;
  margin-top: 0px;
  padding-top: 50px;
}

.about-vision {
  padding: 0px 0px 0px 50px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: start;
  color: #01012f;

}

.about-office {
  padding: 0px 0px 0px 50px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: justify;
  color: #01012f;
}

.about-office i {
  color: #fb3231;
}

.about-us .fmenu-title {
  color: #fb3231;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

@media only screen and (max-width: 998px) {
  .about-vision {
    padding: 10px 10px 0px 0px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-align: start;
    color: #01012f;
  }

  .about-office {
    padding: 0px 10px 0px 0px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #01012f;
  }

  .about-us .fmenu-title {
    font-size: 20px;
  }
}


/* =========================== work process ============== */

.parallax {
  /* The image used */
  background-image: url("");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}







/* ========================================== pages css ======================= */

.page-hero {
  /* background-color: #f14c10; */
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-anime-mainbox {
  max-width: 95%;
  position: absolute;
  top: 0;
}

.hero-anime-pics {
  position: relative;
}

.animepics {
  position: absolute;
  top: 5%;
  left: 90%;
  animation: rotation 8s infinite linear;
}

.animepics1 {
  position: relative;
  top: -22rem;
  left: -22rem;
  z-index: -1;
  animation: rotation 15s infinite linear;
}

.animepics4 {
  position: absolute;
  top: 20%;
  left: 120%;
  animation: floating 15s infinite ease-in-out;
}

.animepics5 {
  position: absolute;
  top: 10rem;
  left: 50%;
  animation: floating2 15s infinite ease-in-out;
}

.animepics6 {
  position: absolute;
  top: 55%;
  left: 5%;
  animation: rotation 8s infinite linear;
}

.animepics7 {
  position: absolute;
  top: 10%;
  right: -145%;
  animation: rotation 15s infinite linear;
  z-index: -1;
}


@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  20% {
    transform: translate(-100px, 50px);
  }

  40% {
    transform: translate(100px, 100px);
  }

  60% {
    transform: translate(-200px, 200px);
  }

  100% {
    transform: translate(100, -0px);
  }
}

@keyframes floating2 {
  0% {
    transform: translate(0, 0px);
  }

  20% {
    transform: translate(100px, 50px);
  }

  40% {
    transform: translate(-100px, 100px);
  }

  60% {
    transform: translate(200px, 200px);
  }

  100% {
    transform: translate(-100, -0px);
  }
}

.anime-bolls1 {
  position: absolute;
  top: 10%;
  left: 175%;
  z-index: -1;
  height: 25px;
  width: 25px;
  border-radius: 30px;
  background-color: #ffa98b;
  box-shadow: 30px 10px 20px 0px #f8dacf;
  animation: rotation 8s infinite linear;
  overflow: hidden;
}

.pagehomeicon {
  color: orangered;
  font-size: 25px;
  margin-right: 10px;
}

#page-main-text {
  margin-top: 5rem;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #fb3231;
}

#page-bottom-text {
  margin-top: 1rem;
  font-size: 22px;
  font-weight: 700;
}

.page-button-one {
  background-color: #fb3231;
  border: none;
  border-radius: 50px;
  padding: 5px 20px;
  font-size: 30px;
  font-weight: 700;
  color: white;
}

.page-button-one i {
  font-size: 25px;
  font-weight: 500;
  color: white;
}



/* ============== page contact ================= */

.page-hero-content {
  width: 95%;
  margin: auto;
  padding: 10px;
  z-index: 1;
}

#cotacsubttitle3 {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: -3px;
  color: #1f1d1d;
  font-size: 12px;
  font-weight: 600;
}

.page-button-two {
  border: solid 2px #fb3231;
  color: #01012f;
  font-size: 20px;
  font-weight: 700;
  background-color: transparent;
  border-radius: 30px;
  margin-right: 0rem;
  padding: 7px 30px;
  transition: .5s;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
}

.page-button-two i {
  font-size: 20px;
  margin-right: 5px;
}

.page-button-two:hover {
  border: solid 2px #fb3231;
  color: white;
  background-color: #01012f;
}

.contact3 .php-email-form {
  width: 90%;
  height: auto;
  background: transparent;
  border: 2px solid #fb3231;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact3 .php-email-form .form-group {
  padding: 5px 10px 0px 10px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
}

.contact3 .php-email-form .validate {
  display: none;
  color: red;
  font-weight: 400;
  font-size: 13px;
}

.contact3 .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 1px;
  font-weight: 400;
  font-size: 13px;
}

.contact3 textarea::placeholder {
  color: black;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
}

.contact3 textarea {
  margin-bottom: 0px;
}


.contact-form3 select {
  color: black;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}

.contact3 .php-email-form .error-message br+br {
  margin-top: 0px;
}

.contact3 .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact3 .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact3 .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact3 .php-email-form label {
  padding-bottom: 0px;
}

.contact3 .php-email-form input,
.contact3 .php-email-form textarea,
.contact3 .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
  font-weight: 700;
  color: black;
  background-color: transparent;
  border-color: #fb3231;
}

.contact-form3 .php-email-form input:focus,
.contact-form3 .php-email-form textarea:focus {
  border-color: #47b2e4;
  color: black;
}

.contact3 .php-email-form input {
  height: 4px;
  font-size: 14px;
  font-weight: 700;
  color: black;
  background-color: transparent;
}


.contact3 .php-email-form textarea {
  padding: 10px 12px;
  height: auto;
  font-size: 14px;
  font-weight: 600;
  background-color: transparent;
}

.contact3 .php-email-form button[type="submit"] {
  background: #fb3231;
  width: 90%;
  border: 0;
  padding: 7px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: 0.4s;
  border-radius: 20px;
  margin-bottom: 5px;
  margin-top: 5px;
}


/* ============================ page navbar ==================== */
.page-nav-sec {
  position: sticky;
  top: 3.5rem;
  z-index: 1;
  background-color: #01012f;
  height: 37px;
  padding: 2px;
  text-align: center;
}

.nav-menu ul li {
  list-style: none;
  display: inline-block;
  margin: auto;
  margin-top: 4px;
}

.nav-menu ul li a:hover {
  background-color: #fb3231;
}

.nav-menu ul li a {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 5px 10px;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.active {
  background-color: #fb3231;
}

/* ================== page main content =================== */
.howto {
  padding-top: 20px;
  padding-bottom: 30px;
}

.howto h2 {
  text-align: center;
}

.howto-main-box {
  max-width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}

.how-outer {
  height: 250px;
  width: 250px;
  border-radius: 200px;
  position: relative;
  background-color: #f1f4f6;
  /* background-color: #01012f; */
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
}

.how-border {
  position: absolute;
  height: 240px;
  width: 240px;
  border-radius: 400px;
  border: 3px rgb(250, 5, 5) dashed;
  margin: auto;
  animation: mymove 8s linear infinite;
}

.howto-box1 {
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.howto-box2 {
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.howto-box3 {
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;

}

.howto-box-dot {
  flex: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.howto-box-dot i {
  font-size: 40px;
  font-weight: 700;
  color: #fb3231;
}

.howto-box-dot .bxs-chevron-down {
  display: none;
}

.how-text {
  position: absolute;
  width: 90%;
  font-size: 15px;
  font-weight: 600;
  margin: auto;
  text-align: center;
  margin-top: 30px;
  margin-left: 15px;
}

#step {
  font-size: 18px;
  font-weight: 700;
  color: #01012f;
}

.how-text i {
  font-size: 50px;
  color: #fb3231;
}

.how-to-main {
  padding-bottom: 30px;
}

.how-to-main .container-fluid {
  max-width: 100%;
  position: relative;
}

.side-contact {
  position: sticky;
  top: 17%;
}

.how-to-main .contactno i {
  font-size: 35px;
}

.how-to-main .contactno p {
  font-size: 15px;
  font-weight: 600;
}

.main-text-sec {
  width: 95%;
  margin: auto;
}

.main-text-sec h2 {
  font-size: 40px;
  color: #fb3231;
}

.main-text-sec h5 {
  color: #01012f;
}

.main-text-sec h3 {
  font-size: 30px;
  margin-top: 10px;
  color: #01012f;
}

.main-text-sec p {
  font-size: 18px;
  font-weight: 600;
  text-align: justify;
  padding: 15px 0px 20px 0px;
  color: #01012f;
  font-family: "Poppins", sans-serif;
}

.item {
  width: 100%;
  height: auto;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.benefits-box {
  border: 2px solid #fb3231;
  padding: 7px;
  border-radius: 10px;
  margin: 10px;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
}

.benefits-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fb3231;
}

.benefits-box p {
  font-size: 16px;
  padding: 3px;
  padding-top: 0px;
  padding-bottom: 0px;
  font-weight: 600;
  text-align: justify;
  color: #01012f;
  font-family: "Poppins", sans-serif;
}

.docments ol li {
  text-align: start;
  color: #01012f;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.docments h6 {
  font-size: 20px;
  font-weight: 600;
  text-align: start;
  color: #fb3231;
}

.docments h5 {
  text-align: start;
}

.register h5 {
  text-align: start;
  color: #fb3231;
  margin-top: 3px;
}

.register p {
  margin-bottom: 5px;
  padding: 0px;
}


.page-faqs ul {
  padding-left: 0px;
}

.page-faqs i {
  font-size: 30px;
  color: white;
}

.page-faqs a {
  padding: 10px;
  font-size: 17px;
  width: 700;
  color: white;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-faqs p {
  padding: 0px;
  margin: 0px;
  margin-top: 15px;
  font-family: "Poppins", sans-serif;
  background-color: orangered;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.32);
}

.faqs-text {
  padding: 10px 8px 5px 8px;
  font-size: 15px;
  font-weight: 600;
  color: #01012f;
  text-align: start;
  font-family: "Poppins", sans-serif;
}


/* ================== page contact ================== */
.contact4 {
  padding-top: 5px;
  padding-bottom: 40px;
  padding: 10px;
}

.contact4 .section-title {
  padding-bottom: 25px;
}

.contact4 .info-box {
  color: #01012f;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact4 .info-box i {
  font-size: 32px;
  color: #fb3231;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f5a0a0;
}

.contact4 .info-box h3 {
  font-size: 20px;
  color: #01012f;
  font-weight: 700;
  margin: 10px 0;
}

.form-group {
  margin: 5px;
}

.contact4 .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact4 .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
  overflow: hidden;
}

.contact4 .php-email-form .form-group {
  padding: 5px 10px 0px 10px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
}

.contact4 .php-email-form .validate {
  display: none;
  color: #fb3231;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact4 .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #fb3231;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact4 textarea::placeholder {
  color: black;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
}

.contact4 select {
  width: 95.7%;
  color: black;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
  padding: 10px;
  margin-left: 10px;
}

.contact4 .php-email-form .error-message br+br {
  margin-top: 0px;
}

.contact4 .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact4 .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact4 .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact4 .php-email-form label {
  padding-bottom: 0px;
}

.contact4 .php-email-form input,
.contact4 .php-email-form textarea,
.contact4 .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
  font-weight: 700;
  color: black;
  background-color: transparent;
  border-color: #fb3231;
}

.contact4 .php-email-form input::focus,
.contact4 .php-email-form textarea::focus {
  background-color: #fb3231;
}

.contact4 .php-email-form input {
  padding: 10px 15px;
}

.contact4 .php-email-form textarea {
  padding: 12px 15px;
}

.contact4 .php-email-form button[type="submit"] {
  background: #fb3231;
  border: 0;
  border-radius: 40px;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact4 .php-email-form button[type="submit"]:hover {
  background: #fb3231;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* ========== sitemap ============= */

.sitemap{
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-site-box h5 a{
  background-color: #fb3231;
  padding: 5px 10px;
  color: white;
}

.main-site-box h6 a{
  background-color: #01012f;
  padding: 5px 10px;
  color: white;
}

.main-site-box li h6 {
  margin-top: 20px;
}

.main-site-box li{
  margin-bottom: 10px;
}

.site-map-menu{
  color: #01012f;
  font-size: 17px;
  font-weight: 700;
}



/* ===================  page - responsiveness ==================== */

@media only screen and (max-width: 1300px) {
  .how-to-main .container-fluid {
    max-width: 95%;
  }
}

@media only screen and (max-width: 1200px) {
  .how-to-main .container-fluid {
    max-width: 100%;
  }
}

@media only screen and (max-width: 998px) {
  #page-main-text {
    margin-top: 2rem;
    font-size: 30px;
  }

  #page-bottom-text {
    font-size: 16px;
  }

  .animepics1 {
    position: relative;
    top: -22rem;
    left: -22rem;
    z-index: -1;
    animation: rotation 15s infinite linear;
  }

  .animepics4 {
    position: absolute;
    top: 80%;
    left: 50%;
    animation: floating 15s infinite ease-in-out;
  }

  .anime-bolls1 {
    top: 80%;
    left: 30%;
  }

  .animepics7 {
    position: absolute;
    top: 70%;
    right: -30%;
    animation: rotation 15s infinite linear;
    z-index: -1;
  }

  .howto-main-box {
    flex-direction: column;
  }

  .page-nav-sec {
    display: none;
  }

  .side-contact {
    display: none;
  }

  .howto-box-dot .bxs-chevron-down {
    display: block;
  }

  .howto-box-dot .bxs-chevron-right {
    display: none;
  }

}


@media only screen and (max-width: 698px) {
  .animepics7 {
    position: absolute;
    top: 150%;
    right: -20%;
    animation: rotation 15s infinite linear;
    z-index: -1;
  }

  .animepics1 {
    position: relative;
    top: -19rem;
    left: -15rem;
    z-index: -1;
    animation: rotation 15s infinite linear;
  }

}

@media only screen and (max-width: 498px) {
  .animepics7 {
    position: absolute;
    top: 150%;
    right: -20%;
    animation: rotation 15s infinite linear;
    z-index: -1;
  }

  .animepics1 {
    position: relative;
    top: -12rem;
    left: -12rem;
    z-index: -1;
    animation: rotation 15s infinite linear;
  }

  .page-button-two {
    font-size: 15px;
    font-weight: 600;
    padding: 5px 20px;
  }

  .page-button-two i {
    font-size: 15px;
    margin-right: 3px;
  }

  .page-hero-content .pricing {
    font-size: 30px;
  }

}











/* =============================== footer area ============================= */
/* =============================  footer area ============================= */
footer {
  overflow: hidden;
}

.footer-top {
  background-color: #01012f;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
  margin: auto;
}

.footer-top .container {
  max-width: 98%;
}

.footer-top .btn2 {
  color: white;
  display: inline-block;
  padding: .5rem 1.3rem;
  border-left: 3px solid#fb3231;
  font-size: .8rem;
  font-weight: 700;
  line-height: .9;
  margin: 0 .2rem;
  transition: .3s;
}

.footer-top i {
  color: #fb3231;
}

.footer-top .btn2:hover {
  color: white;
  border-left: 3px solid white;
}

.footer-top #contact-support {
  font-size: 19px;
  margin-bottom: -20px;
  margin-left: 57px;
}

.footer-top #phone-no {
  font-size: 19px;
  letter-spacing: 1px;
  margin-bottom: -10px;
  font-family: 'Montserrat', sans-serif;
}

.footer-top #phone-no i {
  font-size: 50px;
  margin-right: 5px;
}

@media only screen and (max-width: 998px) {
  .footer-top .get-started {
    margin: auto;
    margin-bottom: 10px;
    padding-bottom: 0px;
  }

  .footer-top .btn2 {
    text-align: center;
    border-left: none;
  }

  .footer-top #phone-no {
    font-size: 16px;
  }

}




/* =========================== */

.footer-mid .container {
  margin: auto;
}

.footer-mid {
  border-top: 3px solid #fb3231;
  padding-top: 30px;
  background-color: #01012f;
  color: white;
  margin: auto;
  text-align: start;
}

.fmenu-title {
  color: #fb3231;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.footer-mid a {
  color: white;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: .3s;
}

.footer-mid a:hover {
  color: #fb3231;
  font-weight: 500;
}

.footer-mid .top-box3 i {
  font-size: 30px;
}

.footer-mid .top-box3 {
  margin: auto;
  width: 95%;
  text-align: center;
}

.footer-mid .contact2 .php-email-form button[type="submit"] {
  background: #fb3231;
  width: 95%;
  border: 0;
  padding: 7px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: 0.4s;
  margin-right: 25px;
  border-radius: 20px;
  margin-bottom: 5px;
  margin-top: 5px;
}

/* ================================== */

.footer-mid2 {
  background-color: #01012f;
  padding-top: 10px;
}

.footer-mid2 .container {
  max-width: 80%;
  display: flex;
  position: relative;
}

.flogo {
  flex: 50%;
  display: flex;
  align-items: center;
  font-size: 35px;
  font-weight: 700;
  color: #fb3231;
  font-family: "Jost", sans-serif;
}

.paymentop {
  flex: 50%;
  display: flex;
  align-items: center;

}

.pay-icon img {
  width: 100px;
  margin: 5px;
  height: auto;
}

.footer-space {
  width: 50px;
  height: 2px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #fb3231;
}

.footer-space2 {
  height: 2px;
  margin-top: 30px;
  background-color: #fb3231;
}

.footer-space3 {
  height: 2px;
  background-color: #fb3231;
}

@media only screen and (max-width: 700px) {
  .footer-mid2 .container {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .flogo {
    align-items: center;
    justify-content: center;
  }

  .paymentop {
    align-items: center;
    justify-content: center;
  }
}

/* ================================ */

.footer-bottom {
  background-color: #01012f;
}

.bfooter {
  padding: 20px 10px 10px 10px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: lighter;
  font-size: 13px;
  text-align: center;
}

.bfooter span {
  color: #fb3231;
  font-weight: 500;
}

.bfooter2 {
  padding-top: 20px;
  padding-bottom: 30px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: lighter;
  font-size: 15px;
  text-align: center;
}


.freepik {
  background-color: #01012f;
  color: white;
  text-align: center;
}