/*@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
font-family: 'Red Hat Display', sans-serif;
  color: #474747 !important;
}

a {
  color: #3b4ef8;
  text-decoration: none;
}

a:hover {
  color: #6c7afa;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'DM Serif Display', serif;
  color: #14314D !important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0473D8;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6272f9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
/*    border-bottom: 2px solid #000;*/
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0;
    background:rgba(255, 255, 255, 0.7);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
}

#header .logo a {
  color: #2d405f;
}

#header .logo img {
  max-height: 140px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
 display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 5px 10px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;

}
/*.navbar .active:before {
   content: '';
    border: 2px solid #000;
    position: absolute;
    width: 65px;
    top: 35px;
    margin-left: -5px;

}*/

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}


.navbar .active,
.navbar .active:focus>a {
  color: #000;
    font-weight: 400;
    border-bottom: 3px solid #000;
}

.navbar .getstarted,
.navbar .getstarted:focus {
 background: #0473D8;
    padding: 9px 25px;
    margin-left: 30px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    border: 1px solid #0473D8;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #0473D8;
  background: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3b4ef8;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2d405f;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29, 41, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2d405f;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3b4ef8;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3b4ef8;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
/*    height: 100vh;*/
  background-image: url(../../assets/img/bg-great-img.jpg);
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 0;
       padding-top: 110px;
       position: relative;
}

#hero .container {
  padding-top: 70px;
}

#hero h1 {
font-size: 65px;
    font-weight: 700;
    line-height: 80px;
/*    width: 60%;*/
    color: #000;
    margin-top: 15px;
    text-transform: capitalize;
}

#hero h2 {
    margin: 10px 0 0 0;
    font-size: 22px;
    color: #000C2D !important;
    font-weight: 500;
    width: 35%;
    line-height: 1.5;
    margin-bottom: 30px;
    font-family: 'Red Hat Display', sans-serif;
}
.main-top-tag marquee{
      border-radius: 50px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.main-top-tag{
  background-color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 100px;
        display: flex;
        color: #000C2D;
}




.btn-next{
  width: 35%;
}
.m-b-30{
  margin-bottom: 60px;
}
.btn-get-started {
  font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: block;
    padding: 12px 32px 12px 32px;
    margin-top: 30px;
    border-radius: 100px;
    transition: 0.5s;
    color: #fff;
    background: #0473D8;
        text-align: center;
            z-index: 9;
                width: 18%;
    margin: 0 auto;
    font-family: 'Red Hat Display', sans-serif;
}


.btn-get-started:hover {
  background: #0a22f6;
}
.top-video-btn:hover{
  -webkit-transform: translateY(-5px);
    transform: translateY(-px);
    border: 3px solid #0473d8;
    border-radius: 50px;
    box-shadow: 0 0 10px 0 #2e8be1 inset, 0 0 20px 2px #0473d8;
}

.top-video-btn{
      border: 3px solid transparent;
    border-radius: 50px;
  -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

#hero .hero-img {
      max-width: 100%;
    margin-top: -75px;
    width: 100%;
    z-index: 1;
    position: relative;
}
.vd-1{
  position: absolute;
    left: 8%;
    top: 60%;
    padding: 10px;
    cursor: pointer;
    z-index: 9;
}
.vd-5{
position: absolute;
    left: 10%;
    top: 80%;
    padding: 10px;
    cursor: pointer;
    z-index: 9;
}
.vd-3{
 position: absolute;
    left: 40%;
    top: 85%;
    padding: 10px;
    cursor: pointer;
    z-index: 9;
}
.vd-4 {
   position: absolute;
    right: 15%;
    top: 77%;
    padding: 10px;
    cursor: pointer;
    z-index: 9;
}
.vd-2 {
  position: absolute;
    right: 10%;
    top: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 9;
}
@media (max-width: 992px) {
  #hero {
    padding-bottom: 40px;
  }
  .vd-1,.vd-2,.vd-3,.vd-4,.vd-5{
 display: none;
  }
  .hero-img{
  display: none;
}
.navbar .getstarted, .navbar .getstarted:focus{
  width: 35%;
}
#hero h1 {
   font-size: 25px;
    line-height: 30px;
    width: 40%;
  }
  #hero h2 {
      font-size: 16px;
    line-height: 18px;
    width: 55%;
    margin: 15px 0 15px 0px;
  }

  #hero .hero-img {
    max-width: 90%;
  }
  .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: block;
    padding: 8px 32px 10px 32px;
    margin-top: 30px;
    border-radius: 100px;
    transition: 0.5s;
    color: #fff;
    background: #0473D8;
    text-align: center;
    z-index: 9;
    width: auto;
    margin: 0 auto;
}

}
@media (max-width: 768px) {
#hero h1 {
    font-size: 23px;
    line-height: 30px;
    width: 100%;
  }
  #hero h2 {
    font-size: 16px;
    line-height: 18px;
    width: 80%;
    margin: 15px 0 15px 0px;
}
 #hero {
  padding-bottom: 40px;
    background: #d9e1ee;
}
.main-top-tag marquee {
    border-radius: 50px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}
.main-top-tag {
    background-color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 100px;
    display: flex;
    width: 100%;
}
}
@media (max-width: 360px) {
.main-top-tag {
    background-color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 100px;
    display: flex;
    width: 100%;
}
}
/*@media (max-height: 768px) {
  #hero {
    height: auto;
      padding-bottom: 20px;
  }



}
*/
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f8fb;
}

.section-title {
  text-align: left;
  padding-bottom: 30px;
}

.section-title h2 {
 font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 0px;
    position: relative;
    color: #000;
    text-transform: uppercase;
}

/*.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #aabbd7;
  bottom: 0;
  left: calc(50% - 25px);
}*/

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
      background-image: url(../../assets/img/bg-great-img.jpg);
    background-size: cover;
    padding: 30px 0;
    position: relative;
    color: #000;
    background-position: center;
}

/*.about .content {
  padding: 30px 30px 30px 0;
}*/

.about .content h3 {
  font-size: 27px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 700;
}

.about .content p {
       margin-bottom: 10px;
    font-size: 22px;
    font-weight: 500;
    color: #000C2D;
    line-height: 1.4;
}

.about .content .about-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.about .content .about-btn i {
  font-size: 14px;
}

.about .content .about-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #b6bdfc;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
}
.ourspeciality{
  padding: 30px 0;
}
.spec-tag {
    padding-left: 10%;
    padding-right: 10%;
}
.spec-tag li {
   

        padding: 10px;
    border: 1px solid #000;
    border-radius: 50px;
    margin-bottom: 20px;
    margin-right: 15px;
    margin-top: 0px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 22px;
    font-weight: 500;
    background-color: #fff;
}
.ourspeciality {
    padding: 30px 0;
}

.section-title {
    text-align: left;
    padding-bottom: 10px;
}
.spec-tag ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
        padding-left: 0;
}
.img-box{
  border-radius: 11px;
    box-shadow: 0px 4.65979px 46.59794px 0px rgba(0, 0, 0, 0.40);
    height: 350px;
    width: 100%;
    object-fit: cover;

}
@media (max-width: 768px) {
  .spec-tag li {
     padding: 5px;
    border: 1px solid #000;
    border-radius: 50px;
    margin-bottom: 10px;
    margin-right: 5px;
    margin-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
    font-weight: 500;
    background-color: #fff;
}
.ourspeciality {
    padding: 5px 0;
}
}
@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about .content h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 700;
    margin-top: 30px;

}
  .about {
    text-align: center;
  }
  .section-title h2 {
        font-size: 25px;
    font-weight: 500;
    text-align: center;
  }
  .about .content p {
   margin-bottom: 10px;
    font-size: 17px;
    font-weight: 400;
    color: #000C2D;
    margin-top: 25px;
    text-align: justify;
}
.img-box {
    border-radius: 11px;
    box-shadow: 0px 4.65979px 46.59794px 0px rgba(0, 0, 0, 0.40);
    height: auto;
    width: 100%;
    object-fit: cover;
}
.m-b-30 {
    margin-bottom: 10px;
}
.btn-next {
    width: 45%;
    margin: 0 auto;
}

}
.serviceside{
  padding: 30px 0;
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
/*  background: #f6f7ff;*/
  padding: 30px 0;
  text-align: center;
}
.all-logo{
  background: rgba(255, 255, 255, 0.10);
    box-shadow: 0px 2.53298px 25.32981px 0px rgba(0, 0, 0, 0.20);
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 90px;
}
.logos-all {
    width: 20%;

}
.clients img {
     transition: all 0.4s ease-in-out;
    display: inline-block;
    mix-blend-mode: darken;
    width: 100px;
}

.clients img:hover {
  transform: scale(1.15);
}
.p-0{
  padding: 0;
}
@media (max-width: 768px) {
  .clients img {
    max-width: 100%;
  }
  .all-logo{
      height: 40px;
  }
  .serviceside {
    padding: 10px 0;
}

}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.section-title-q h2{
  font-size: 50px;
  font-weight: 600;
  text-align: center;
}
.section-title-q p{
 font-size: 20px;
    font-weight: 500;
    text-align: center;
    width: 55%;
    margin: 0 auto;
    margin-top: 2%;
    margin-bottom: 5%;
}
.faq {
  padding: 30px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
     border: 1px solid #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-radius: 50px;
        background-color: rgba(255, 255, 255, 0.30);
}

.faq .faq-list .question {
  display: block;
    position: relative;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: #000;
    transition: 0.3s;
}

.faq .faq-list i {
font-size: 20px;
    position: absolute;
    right: 25px;
    top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #436490;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}
@media (max-width: 768px) {
  .section-title-q h2 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}
.faq .faq-list .question {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding-left: 25px;
    cursor: pointer;
    color: #000;
    transition: 0.3s;
    padding-right: 25px;
}
.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 25px 0px 25px;
}
.icon-show, .icon-close{
  display: none !important;
}
.section-title-q p {
      font-size: 18px;
    font-weight: 500;
    text-align: justify;
    width: 100%;
    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: 5%;
}
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #2d405f;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #3b4ef8;
  padding: 8px;
}

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

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

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

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

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

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

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

.contact .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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #8ea5ca;
}

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

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

.contact .php-email-form button[type=submit] {
  background: #3b4ef8;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #0a22f6;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-top: 70px;
  padding: 10px 0;
  box-shadow: 0px 2px 15px rgba(45, 64, 95, 0.06);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3d5782;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #023F78;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .logo img {
    max-height: 60px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #023F78;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #023F78;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;

  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff !important;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Red Hat Display', sans-serif;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #6c7afa;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #3b4ef8;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #9da7fc;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3b4ef8;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0a22f6;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 10px;
  border-radius: 5px;
  text-align: center;
  transition: 0.3s;
}

#footer .social-links a:hover {
/*  background: #3b4ef8;*/
  color: #fff;
  text-decoration: none;
  transition: 2s;
}
.m-t-20{
  margin-top: 20px;
}
.s-span{
  font-size: 15px;
    margin-right: 10px;
}
.p-t-120{
padding: 120px 0;
}
/*product*/
.card-product{
 padding: 30px;
    margin-top: 3%;
    border-radius: 39px;
    background: rgba(255, 255, 255, 0.30);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25) inset;
    
}
.text-right-my{
  text-align: right;
}
.btn-down{
  width: 50%;
  margin-top: 3%;
}
.btn-get-started-prod{
  font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: block;
    padding: 12px 32px 12px 32px;
    margin-top: 30px;
    border-radius: 100px;
    transition: 0.5s;
    color: #fff;
    background: #0473D8;
    text-align: center;
    z-index: 9;
    margin: 0 auto;
}
.dark-bg{
      mix-blend-mode: darken;
      width: 100%;
}
.only-dark-bg{
  mix-blend-mode: darken;
}
.f-r{
  float: right;
}

@media (max-width: 768px) {
  .btn-down {
    width: 100%;
    margin: 0 auto;
}
.only-dark-bg {
    mix-blend-mode: darken;
    height: 200px;
}
}

/*about-p*/
.about-p{
 font-size: 22px;
    font-weight: 500;
    color: #000C2D;
}
.img-ab{
  text-align: center;
    margin-top: 2%;
    margin-bottom: 5%;
}

.section-title-ab h2 {
 font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 0px;
    position: relative;
    color: #000;
    text-transform: uppercase;
    width: 80%;
    margin: 0 auto;
}
h2.background:before {
    border-top: 1px solid #000;
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}
h2.background span {
/*    background: #fff;*/
    padding: 0 15px;
}
h2.background {
    position: relative;
    z-index: 1;
}
.oj-p {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 500;
    color: #000C2D;
    
}
.oj {
    background-image: url(../../assets/img/bg-great-img.jpg);
    background-size: cover;
    padding: 130px 0;
    position: relative;
    color: #000;
    background-position: center;
}
.text-right{
  text-align: right;
}
.btn-cont{
  margin: 2% auto;
  width: 20%;
}
@media (max-width: 768px) {
  .section-title-ab h2 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #000;
    text-transform: uppercase;
    width: 100%;
    margin: 0 auto;
}
.about-p {
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
}
.img-ab img{
  width: 100%;
}
.pb-5 {
    padding-bottom: 0rem!important;
}
.pt-5 {
    padding-top: 0rem!important;
}
.oj-img{
  width: 100%;
}
.oj-p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
.btn-cont {
    margin: 2% auto;
    width: 100%;
}
.oj{
  padding: 100px 0;
}
}
/*cont-us*/
.con-card{
  border-radius: 39px;
background: rgba(255, 255, 255, 0.30);
box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25) inset;
padding: 20px;
margin-top: 5%;
position: relative;
}
/*.left-img{
      position: absolute;
    top: 105px;
    right: 140px;
}*/
.con-title p{
  font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}
.cont-mail a{
      text-decoration: underline;
    font-size: 20px;
    font-weight: 400;
    line-height: 43px;
    color: #000;
}

.m-r-10{
      margin-right: 10px;
}
.cont-mob a{
   font-size: 20px;
    font-weight: 400;
    line-height: 43px;
    color: #000;
}
.cont-add p{
  font-size: 20px;
    font-weight: 400;
    line-height: 43px;
    color: #000;
    margin-bottom: 0;
}
.m-l-p-40{
      margin-left: 40px;
}
@media (max-width: 768px) {
  .con-title p{
  font-size: 22px;
}
.cont-mail a {
    text-decoration: underline;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
}
.cont-mob a {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
}
.cont-add p {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
    margin-bottom: 5px;
}
.m-l-p-40 {
    margin-left: 0px;
}
/*.left-img {
    position: absolute;
    bottom: 130px;
    right: 40px;
}*/
.left-img img{
  width: 60px;
}
.text-right-my{
  text-align: center;
}
}

.protitle h2{
      font-size: 55px;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    text-align: center;
}
.p-t-4{
      padding-top: 4%;
}
.p-name{
  font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 30px;
    text-align: center;
    color: #000C2D;
}
.main-product{
  margin-top: 15%;
  position: relative;
}

/*.main-product img{
  mix-blend-mode: darken;
}*/
.main-product img {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 2px solid #d6dadf;
      transition: 1s;
          width: 100%;
          cursor: pointer;
}
.main-product img:hover {
    border: 3px solid #0473d8;
    transition: 1s;
    transform: scale(1.1);
}
.button-down {
     width: 100%;
    transition: opacity .35s ease;
    text-align: right;
}

.button-down a {
    width: 200px;
    padding: 8px 8px;
    text-align: center;
    background-color: #0473d8;
    color: #fff;
    z-index: 1;
    border-radius: 50px;
}
.button-down a:hover{
  background-color: #fff;
    color: #0473d8;
    border: 2px solid #0473d8;
    cursor: pointer;
}
.main-product:hover .button-down {
  opacity: 1;
}
@media (min-width: 769px) and (max-width: 1200px){
.button-down a{
  font-size: 10px;
}
}
@media (max-width: 768px) {

  .p-name {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 30px;
    text-align: center;
}
.protitle h2 {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
}
.main-product {
    margin-top: 5%;
}
.button-down {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 40%;
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;
    right: 0;
}
}
@media (max-width: 400px) {
.button-down a{
  font-size: 12px;
}
}