/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --yellow-color: #ffdc14; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --black-color: #000; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */


.light-background {
  --background-color: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0057fc;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --black-color: #ffffff;
}
.gray-background{
  --background-color:#eaecf3;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
*{
  font-family: "Rubik", sans-serif;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  color: var(--yellow-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--yellow-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.active-link{
  background-color: lightgray;
  color: black;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--yellow-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  /* --background-color: #3d4d6a; */
  /* --heading-color: #ffffff;
  color: var(--default-color);
  background-color: #0057FC;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997; */
  --background-color: #3d4d6a;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  position: sticky;
  top: 35px;
  z-index: 997;
}


.header .logo {
  max-width: 300px;
}

.header .logo img {
  max-width: 250px;
  max-height: 63.83px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .navmenu a{
  font-size: 17px;
  font-family: "Rubik", sans-serif;
}

.header .btn-getstarted{
  border-style: none;
  color: #000;
  background: #FFDD14;
  font-size: 15px;
  padding: 11px 20px;
  margin: 0 0 0 30px;
  border-radius: 3px;
  transition: 0.3s;
  font-family: "Rubik", sans-serif;
  max-width: 300px;
  text-transform: none;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: #000;
}

@media (max-width: 1200px) {
  .header .logo {
    /* order: 1; */
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  /* --background-color: rgba(255, 255, 255, 0); */
  --background-color: #0057FC;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}
.index-page-1 .header {
  /* --background-color: rgba(255, 255, 255, 0); */
  background-color: #0057FC!important;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #0057FC;
}

.index-page-1.scrolled .header {
  --background-color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 810px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
    margin-right: 20px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 17px!important;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #FFDD14;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

@media (min-width:810px) and (max-width:999px) {
  .navmenu a {
    font-size: 15px!important;
  }
}
/* Mobile Navigation */
/* 1199px */

@media (max-width: 809px) {
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    display: block!important;
  }
  .mob_home{
    display: block!important;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 10px;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
  }
  .navmenu ul li{
    list-style:none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--yellow-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--yellow-color);
    color: var(--black-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--yellow-color);
    color: var(--black-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  /* .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  } */

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

@media (min-width:0px) and (max-width:551px) {
  .btn-getstarted{
    display: none;
  }
  li.btn_generated_li{
    /* width:70%; */
    margin-top: 10px;
  }
  li.btn_generated_li a{
    text-align: center;
  }
  /* a.mobile_btn_getstarted{
    display: block!important;
  } */
}
@media (min-width:0px) and (max-width:1000px) {
  .logo img{
    width:190px;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}
.footer-about img{
  width:50%;
}
.footer-contact p{
  color: #000;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}


.footer .social-links a:hover {
  color: var(--yellow-color);
  border-color: var(--yellow-color);
}

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

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--yellow-color);
}

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

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

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--yellow-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--heading-font);
}
.footer-about p{
  color: #000;
  margin-top: 1rem;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #0057FC;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.footer-btn{
  padding:0rem 4rem 4rem 0rem;
}
.footer-btn button{
  border-radius: 5px;
  text-align: left;
  padding:20px;
  font-weight: 600;
  cursor:default;
  font-size: 20px;
}

.footer_info_div{
  border-radius: 10px;
  padding:10px 10px 10px 15px;
  color:#fff;
  font-size: 16px;
}
.footer-btn span{
  font-size: 14px;
}
.footer_multiplate_logo{
  margin: auto;
  text-align: center;
}
.footer_multiplate_logo img{
  width:40%!important;
  text-align: center;
}
.footer_info_div a{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--yellow-color) transparent var(--yellow-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--yellow-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--black-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--yellow-color), transparent 20%);
  color: var(--black-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--yellow-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* min-height: 80vh; */
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p.leading_para{
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  color:#fff;
}

.hero .btn-get-started {
  color: #000;
  background: #FFDD0F;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  padding: 9px 18px 9px 18px;
  border-radius: 20px 20px 20px 20px;
  transition: 0.5s;
  cursor:none;
  letter-spacing: 2px;
  line-height: 1.1em;
  margin: 0px 0px 020px 0px;
}

.hero .btn-get-started:hover {
  color: #000;
}

.btn-login-dashboard{
  color: #111111;
  background: rgb(238, 238, 238);
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px 10px 20px;
  border-radius: 3px 3px 3px 3px;
}
.btn-login-dashboard:hover{
  background-color: #111111;
  color: #fff;
}

.hero .btn-watch-video {
  font-size: 17px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}


.hero .btn-watch-video:hover {
  color: #FFDD0F;
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--yellow-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.clients h3{
  color: #000;
  font-size: 20px;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
}
.services .swiper {
  padding: 10px 0;
}

.services .swiper-wrapper {
  height: auto;
}

.services .swiper-slide{
  padding: 0px;
  border:1px solid lightgray;
}
.services .swiper-slide img {
  width: 100%;
  transition: 0.3s;
  padding:0px;
  margin:0px;
}
.service_card a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}
.service_card .umb{
  background-color: #FF1F25;
}
.service_card .video{
  background-color: #0057FC;
}
.service_card .shield{
  background-color: #FFDD0F;
}

.clients p{
  font-family: "Rubik", sans-serif;
}
.services .section-title{
  font-family: "Rubik", sans-serif;
  font-size: 16px;
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about{
  background-color: #0057fc;
}
.about ul {
  list-style: none;
  padding: 0;
}

.about h3{
  font-size: 16px;
  font-weight: 600;
  line-height: 3em;
  letter-spacing: 2px;
  font-family: "Rubik", sans-serif;
  color:#fff;
  text-transform: uppercase;
}
.about h2{
  font-size: 40px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  line-height: 1.24em;
}
.about p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.63;
  letter-spacing: inherit;
}

.youtube-div{
  background-color: #fff;
  height:380px;
}
div.thumbnail_container{
  background-image: url('../img/bib-video-cover.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}

.play_icon{
  position: absolute;
  font-size: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  color:rgb(216, 214, 214);
}

.about .about_us_btn{
  background-color: #ffdc14;
  border:1px solid #ffdc14;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 14px 28px 14px 28px;
  text-decoration: none;
}
.about .about_us_btn:hover{
  background-color: #fff;
  transition: 0.5;
  color: #0057FC;
}
.youtube-div iframe{
  width: 100%;
  height: 100%;
  display: none;
}

@media (min-width:0px) and (max-width:767px){
  .youtube-div{
    height:280px!important;
  }
}
/* @media (min-width:451px) and (max-width:767px){
  .youtube-div{
    height:440px!important;
  }
} */
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 30px 0;
}

.why-us .why_us_heading{
  color: #0057FC;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 2px;
  font-family: "Rubik", sans-serif;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 1.5rem;
  color: #000;
}

.why-us .content p {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  letter-spacing: inherit;
  line-height: 1.63;
  color: #555555;
}
.why-us h6{
  text-transform: uppercase;
  line-height: 1.5em;
  letter-spacing: 2px;
  color: #0057FC;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
}
.why-us h2{
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.24em;
  padding: 0;
  color: #000;
  font-family: "Rubik", sans-serif;
}

.why-us .why-us-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us .why-us-img img{
  max-width: 75%;
}
.featured_container .why-us-img img{
  max-width: 75%;
}
.btn-explore{
  color: #fff;
  background: #0057FC;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px 10px 20px;
  border-radius: 5px;
  transition: 0.5s;
}

@media (min-width:0px) and (max-width:767px) {
  .featured_mob_view{
    display: block!important;
  }
  .featured_desk_view{
    display: none!important;
  }
 
}
/* .why-us .why-us-img img {
  max-height: 70%;
} */


/* get started */
.get-started .container{
  background-color: #0057FC;
  border-radius: 10px;
  padding:1rem;
}
.get-started .why-us-img{
  display: flex;
  align-items: center;
  justify-content: center;
}
.get-started .why-us-img img{
  max-height: 95%;
}
.get-started h2{
  color: #fff;
  margin-top: 2rem;
}
.get-started p{
  color: #fff;
  font-family: "Rubik", sans-serif;
}
.get-started .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 1.5rem + 2px);
  padding: .75rem 1.25rem;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #696973;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d5d5dc;
  border-radius: .375rem;
  box-shadow: none;
  transition: all .3s ease;
}

.get-started .btn-dark {
  color: #fff;
  background-color: #1b1642;
  border-color: #1b1642;
}

.get-started .btn {
  display: inline-block;
  font-weight: 500;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #1b1642;
  border: 1px solid transparent;
  padding: .75rem 1.75rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: 5px;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.get-started .content{
  padding-right:130px!important;
}
.credit-text p span{
  font-size: 0.9rem;
}
p span.bi_check{
  font-size: 1rem;
}

@media (min-width:0px) and (max-width:766px) {
  .container_fluid_get_started{
    padding:0px;
    margin:0px!important;
  }
  /* .get-started .container_get_started{
    width:100%!important;
    margin:0px!important;
  } */
  .content_get_started .content{
    padding:0px!important;
  }
  .get-started .content{
    padding:0px!important;
  }
}

/*
#Packaging Section
*/
.packaging h2{
  text-align: center;
  color: #000;
  margin-bottom: 12px;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.24em;
  font-family: "Rubik", sans-serif;
}
.packaging h6{
  text-align: center;
  font-size: 16px;
  color: #000;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
}
.packaging p{
  color: #000;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.pricing_changer_btn_div button{
  background-color: #0057FC;
  width: 100%;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  padding:0.5rem 0rem;
}
.pricing_changer_btn_div button:hover{
  background-color: #0057fc;
  color:#fff;
}
.pricing_changer_btn_div .price_active, .pricing_changer_btn_div .price_active:hover{
  background-color: #FFDD14!important;
  color: #000;
  border-color: #FFDD14;
}
/* .content-part tr td{
  font-size: 1rem;
} */
.content-part .list_ul{
  background-color: #F8F9FC;
  width: 85%!important;
}
.content-part .list_ul li{
 border:none;
 border-bottom: 1px solid #EEEEEE;
 border-bottom-left-radius: 0px!important;
 border-bottom-right-radius: 0px!important;
 margin-top: 10px;
 background-color: #F8F9FC;
 text-align: center;
 font-family: "Rubik", sans-serif;
 font-size: 16px;
}
.list_ul li.top_li{
  height: 55px;
}
.content-part .list_ul .title{
  line-height: 32px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.425rem;
  color: #000;
  font-family: "Rubik", sans-serif;
}

.custom-switch-form input{
  border:1px solid #000;
  height: 30px;
  width: 60px!important;
}
.custom-switch-form input:focus{
  box-shadow: none;
}

/* .price_contain{
  position: relative;
}  */
/* .converter_div{
  position: absolute;
  right:-10px;
  top:0px;
  text-align: left;
} */
.converter_div p{
  font-family: "Covered By Your Grace", Sans-serif;
  font-size: 24px;
  /* float: right; */
}
/* #ind_customer{
  position: absolute;
  right:43px;
} */


@media (min-width:0px) and (max-width:719px) {
  .content-part .list_ul{
    width:100%!important;
  }
}
@media (min-width:0px) and (max-width:991px) {
  .price_sidephoto img{
    display: none;
  }
  .price_sidephoto{
    padding:0px!important;
  }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.section-title p{
  color: #000;
}
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.services .service-item .icon {
  margin-bottom: 10px;
}

.services .service-item .icon i {
  color: var(--yellow-color);
  font-size: 36px;
  transition: 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  transform: translateY(-10px);
}

.services .service-item:hover h4 a {
  color: var(--yellow-color);
}

/* testimonail */
.testimonial{
  background-color: #FFDD0F;
}
.testimonial-title {
  text-align: center;
  position: relative;
  font-size: 18px;
  font-family: "Rubik", sans-serif;
  color: #0057FC;
  margin-bottom: 14px;
}

.testimonial-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #000;
  margin-bottom: 50px;
  text-transform: capitalize;
}
.testimonial-title p{
  color: #000;
}

/* #testimonial_carosuel p{
  color: #000;
  font-family: "Rubik", sans-serif;
} */

#testimonial_carosuel h6{
  color: #000;
}
#testimonial_carosuel p{
  color: #000;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  margin-bottom: 50px;
}
div.testimonial_card_body{
  height: 220px;
}
div.testimonial_card_footer{
  border-top: 0px;
  background-color: #fff!important;
}
/*--------------------------------------------------------------
# EMail newsletter Section
--------------------------------------------------------------*/
.email_newsletter h2{
  text-align: center;
}
.email_newsletter p{
  text-align: center;
  color: #000;
}

/*--------------------------------------------------------------
# BLog Section
--------------------------------------------------------------*/
.blog-title h2{
  text-align: center;
  text-transform: capitalize;
  color: #000;
}
.blog-container a{
  text-decoration: none;
  color: #0057FC;
  /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
}
a.sign_up_blog{
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}
.blog-container p{
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  font-size: 20px;
}
li.li_square_list{list-style:square; margin-bottom:10px;font-weight:700;color:#000;}
li.li_sl_mb_10{list-style:square; margin-bottom:10px;}
a.a_16{font-size:20px;}
.blog-container li{
  font-size: 20px!important;
  font-family: "Rubik", sans-serif;
}
.blog-container h6{
  font-size:21px;
}

@media (min-width:0px) and (max-width:511px) {
  div.custom_card_width{
    width:90%;
    margin:auto;
  }
}
@media (min-width:512px) and (max-width:767px) {
  div.custom_card_width{
    width:50%;
  }
}
@media (min-width:768px) and (max-width:990px) {
  div.custom_card_width{
    width:33.3%;
  }
}

/* Our servcies pages */
.built_for_content{
  padding-top: 5rem;
  padding-right: 10rem;
}
.built_for_content h6, h1{
  text-align: left;
  color: #111111;
}
.insight{
  padding-right:2rem;
  padding-top: 0rem;
}
.insight_text_div{
  padding-left: 2rem;
  padding-right: 6rem;
}
.insight_text_div h6{
  text-transform: uppercase;
  line-height: 1.5em;
  letter-spacing: 2px;
  color: #111111;
  font-size: 16px;
  font-weight: 600;
}
.insight_text_div h2{
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25em;
  color: #111111;
}
.company_sizes{
  padding:5rem;
}
.company_sizes h2{
  font-size: 40px;
  font-weight: 600;
  line-height: 1.24em;
}
.company_sizes h3{
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 3em;
  letter-spacing: 2px;
  color: #FFFFFF;
}
/* pricing */
.pricing_arrow_img img{
  width: 34.28px;
}


/* contact us */
p.contact-para{
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  font-size: 16px;
}
.contact-form input{
  border-radius: 4px;
  background-color: rgb(250, 248, 248);
}
.contact-form input:focus{
  box-shadow: none;
}
.contact-form input::placeholder{
  font-size: 0.8rem;
}

.contact-form textarea{
  border-radius: 4px;
  background-color: rgb(250, 248, 248);
}
.contact-form textarea:focus{
  box-shadow: none;
}
.contact-form textarea::placeholder{
  font-size: 0.8rem;
}

p.featues_card_text{
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 17px;
}

/* blog details */
.user_icon_div .icon{
  border-radius: 50%;
  height: 65px;
  width: 65px;
}

.user_icon_div .icon img{
  border-radius: 50%;
  height: 100%;
  width: 100%;
}
.tag_area_button button{
  background-color: #F7F7F7;
  border-radius: 2px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}
.tag_area_button button:hover{
  background-color: #0057FC;
  color: #fff;
}
button:hover{
  background-color: #0057FC !important;
  color: #fff !important;
}
.tag_area_button span{
  font-family: "Rubik", sans-serif;
  margin-right: 1rem;
  font-weight: 600;
}

.repy_section_form label{
  font-family: "Rubik", sans-serif;
}
.repy_section_form input, .repy_section_form textarea{
  font-family: "Rubik", sans-serif;
  background-color: #F9F9F9;
}

/*FOR PRICING SWITCH*/
.form-switch .form-check-input {
	background-color: #0d6efd !important;
	border-color: #0d6efd !important;
	--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
}


.anti_spam_bc_div{
  background-color: #f8f9fc;
  padding-top: 60px;
  padding-bottom: 60px;
}
.anti_spam_content_div{
  width:calc(100% - 240px);
  margin: auto;
}
.anti_spam_content_div p{
  text-align: left;
  margin-bottom: 1.625em;
  color: #555555;
  font-size: 16px;
}
.anti_spam_content_div h4, .anti_spam_content_div h5{
  color: #000;
}


@media (min-width:0px) and (max-width:768px) {
  .anti_spam_content_div, .anti_spam_container{
    width:85%;
    margin: auto;
  }
  div.support_info_btn, .feel_free_to{
    margin-top: 20px!important;
  }
  .footer-links{
    /* margin: auto; */
    padding-left: 20px;
    width:50%;
  }
  div.footer_info_div{
    margin: auto;
  }
  .a_img img{
    margin: auto;
    text-align: center;
  }
}


@media (min-width:992px) and (max-width:1199px) {
  div.support_info_btn button{
    font-size: 13px;
  }
}


@media (min-width:768px) and (max-width:1000px){
  .footer-about img{
    width:40%!important;
    margin: auto!important;
  }
  .footer_multiplate_logo img{
    width:70%!important;
  }
}

.home-user-icon{
  display: none;
}

@media screen and (max-width: 809px) {
  .home-user-icon{
    display: block;
    font-size: 1.5rem;
  }
}

.offer_section{
  background-color: #FFDD0F;
  padding: 5px;
  background: repeating-linear-gradient(
        45deg,
        #073c91 20px,
        #0057FC 25px
      );
      background-size: 200% 200%;
      animation: moveStripes 100s linear infinite;
}

@keyframes moveStripes {
      0% {
        background-position: 0 0;
      }
      100% {
        background-position: 100% 100%;
      }
}