@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,500,700");
@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&display=swap');

::-webkit-scrollbar {
  background: transparent;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #ADC1D4;
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8e9ead;
}

:root {
  --font: "Carlito", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #3056d3;
  --white: #ffffff;
}

body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input::-webkit-input-placeholderm, textarea::-webkit-input-placeholder {
  color: #f3f3f3 !important;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #f3f3f3 !important;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #f3f3f3 !important;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #f3f3f3 !important;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #f3f3f3 !important;
}

input::placeholder, textarea::placeholder {
  color: #f3f3f3 !important;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: var(--primary-color);
}
.main-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #116587;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}
.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

.text-orange {
  color: #d7741b;
}

.text-white {
  color: #fff;
}

.btn-primary {
  background-color: #d7741b;
  border: #d7741b;
}
.btn-primary:hover {
  background-color: #aa5c15;
  border: #aa5c15;
}

.btn-xl {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .btn-xl {
    font-size: 1.2rem;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
  padding: 0;
}

.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}
.navbar-brand img {
  width: 200px;
  -webkit-transition: width ease-in-out 0.3s;
  -o-transition: width ease-in-out 0.3s;
  transition: width ease-in-out 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand img {
    width: 180px;
  }
}

.navbar-toggler {
  padding: 0;
}
.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

.navbar-nav {
  padding: 20px 0;
  -webkit-transition: padding ease-in-out 0.3s;
  -o-transition: padding ease-in-out 0.3s;
  transition: padding ease-in-out 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}
.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}
.navbar-nav .nav-item > a:not(.btn) {
  font-size: 20px;
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 8px 10px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:not(.btn) {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}
.navbar-nav .nav-item > a:not(.btn):hover:not(.btn), .navbar-nav .nav-item > a:not(.btn).active {
  color: var(--white);
  opacity: 0.7;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:not(.btn):hover:not(.btn), .navbar-nav .nav-item > a:not(.btn).active {
    color: var(--primary-color);
    opacity: 1;
  }
}
.navbar-nav .nav-item .submenu {
  position: absolute;
  width: 250px;
  background: var(--white);
  top: 110%;
  padding: 20px 30px;
  -webkit-box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
          box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .submenu {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}
.navbar-nav .nav-item .submenu.show {
  display: block;
}
.navbar-nav .nav-item .submenu .submenu-link {
  padding: 7px 0;
  color: var(--heading-color);
  font-size: 14px;
}
.navbar-nav .nav-item .submenu .submenu-link:hover {
  color: var(--primary-color);
}
.navbar-nav .nav-item:hover > a:not(.btn) {
  color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a:not(.btn) {
    color: var(--primary-color);
    opacity: 1;
  }
}
.navbar-nav .nav-item:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}
.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
      -ms-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.navbar-btn .main-btn {
  padding: 8px 16px;
  background: transparent;
}
.navbar-btn .login-btn:hover {
  opacity: 0.5;
}
.navbar-btn .white-btn {
  background: rgba(255, 255, 255, 0.2);
}
.navbar-btn .white-btn:hover {
  background: white;
  color: var(--heading-color);
}

.sticky .navbar-nav {
  padding: 5px 0;
  -webkit-transition: padding ease-in-out 0.3s;
  -o-transition: padding ease-in-out 0.3s;
  transition: padding ease-in-out 0.3s;
}
.sticky .navbar-nav .nav-item:hover > a:not(.btn) {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-nav .nav-item a {
  color: #fff;
}
.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover:not(.btn) {
  color: #fff;
  opacity: 0.7;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .sticky .navbar-nav .nav-item a:not(.btn) {
    color: var(--heading-color);
  }
}
.sticky .navbar-btn .main-btn.login-btn {
  color: var(--heading-color);
}
.sticky .navbar-btn .main-btn.login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-btn .white-btn {
  background: var(--primary-color);
  color: var(--white);
}
.sticky .navbar-btn .white-btn:hover {
  background: var(--heading-color);
}
.sticky .navbar-brand img {
  width: 150px;
  -webkit-transition: width ease-in-out 0.3s;
  -o-transition: width ease-in-out 0.3s;
  transition: width ease-in-out 0.3s;
}

.hero {
  padding-top: 220px;
  padding-bottom: 220px;
  background: url(../images/b2b/bg.jpg) no-repeat center center;
  color: #000;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero {
    padding-top: 160px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-top: 130px;
    padding-bottom: 80px;
  }
}
.hero h1 {
  color: #fff;
  font-family: "Oswald";
  font-size: 2.2rem;
  text-transform: uppercase;
  line-height: 1.8;
  margin-bottom: 45px;
}
.hero h1 .onliner-home {
  position: relative;
  top: -13px;
}
@media (max-width: 767px) {
  .hero h1 .onliner-home {
    height: 45px;
    top: 0;
  }
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}
.hero p {
  font-size: 20px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .hero p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero .bg-tech {
    display: none;
    margin-top: 40px;
  }
}

.footer {
  background: #404040;
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.footer h3 {
  font-size: 36px;
  font-family: "Oswald";
  font-weight: normal;
  color: #fff;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .footer h3 {
    margin-bottom: 40px;
    font-size: 26px;
  }
}
.footer .form-group {
  margin-bottom: 1.2rem;
}
.footer .form-group .form-control {
  font-size: 16px;
  background: #282828;
  color: #fff;
  border: none;
  padding: 0.8rem;
}
.footer .contact_socail {
  margin: 30px 0;
}
.footer .contact_socail a {
  margin: 0 20px;
}
.footer a.mail {
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
}
.footer .phone {
  font-size: 26px;
  color: #6ba5fa;
}
@media (max-width: 767px) {
  .footer form {
    margin-bottom: 40px;
    text-align: center;
  }
}
 
/* sections */
.sections {
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sections {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media (max-width: 767px) {
  .sections {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

.section-gray {
  background-color: #f5f5f5;
}

.section-white {
  background-color: white;
}

.section-gray .section-title {
  right: 10rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .section-gray .section-title {
    right: 5rem;
  }
}

.section-white .section-title {
  left: 10rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .section-white .section-title {
    left: 5rem;
  }
}

.section-title {
  color: #116587;
  opacity: 0.05;
  font-size: 13rem;
  position: absolute;
  text-transform: uppercase;
  top: 0rem;
  line-height: normal;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    font-size: 8rem;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 6rem;
  }
}

.sections .container {
  position: relative;
}
.sections .image_features img {
  -webkit-box-shadow: 0px 15px 35px #00000025;
          box-shadow: 0px 15px 35px #00000025;
}

section .text_features {
  position: absolute;
  bottom: -60px;
  z-index: 10;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  section .text_features {
    position: relative;
    bottom: 0;
  }
}
section .text_features .box {
  background-color: rgba(255, 255, 255, 0.89);
  padding: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0px 15px 35px #00000025;
          box-shadow: 0px 15px 35px #00000025;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  section .text_features .box {
    margin-bottom: 30px;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
section .text_features .box::before {
  content: "";
  width: 5px;
  height: 100%;
  top: 0;
  bottom: 0;
  position: absolute;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  section .text_features .box::before {
    display: none;
  }
}
section .text_features .box h3 {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-family: "Oswald";
  margin-bottom: 30px;
  font-weight: normal;
  color: #404040;
}
@media (max-width: 480px) {
  section .text_features .box h3 {
    font-size: 24px;
  }
}
section .text_features .box p {
  color: #5f5f5f;
  font-size: 20px;
}
@media (max-width: 480px) {
  section .text_features .box p {
    font-size: 16px;
  }
}
section .text_features .box ul {
  margin-top: 20px;
  list-style: inside;
}
section .text_features .box ul li {
  font-size: 20px;
  color: #5f5f5f;
}
@media (max-width: 480px) {
  section .text_features .box ul li {
    font-size: 16px;
  }
}
section .text_features .box.box-green h3 span {
  color: #87b354;
}
section .text_features .box.box-green::before {
  background-color: #87b354;
}
section .text_features .box.box-orange h3 span {
  color: #d0aa5b;
}
section .text_features .box.box-orange::before {
  background-color: #d0aa5b;
}
section .text_features .box.box-red h3 span {
  color: #bf655e;
}
section .text_features .box.box-red::before {
  background-color: #bf655e;
}
section .text_features_left {
  text-align: left;
}
section .text_features_left .box::before {
  left: 0;
}
section .text_features_right {
  text-align: right;
  right: 0;
}
section .text_features_right .box::before {
  right: 0;
}
section.try-it-now {
  background: -o-linear-gradient(45deg, #075057, #44b5c0);
  background: linear-gradient(45deg, #075057, #44b5c0);
}
section.try-it-now .wrap {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  section.try-it-now .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
@media (max-width: 767px) {
  section.try-it-now .wrap {
    padding: 20px 0;
  }
}
section.try-it-now .wrap h3 {
  color: #fff;
  font-weight: normal;
  font-family: "Oswald";
  font-size: 36px;
  text-transform: uppercase;
  margin-right: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  section.try-it-now .wrap h3 {
    font-size: 26px;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
section.section-video h3 {
  font-size: 36px;
  font-family: "Oswald";
  font-weight: normal;
  text-transform: uppercase;
  color: #404040;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  section.section-video h3 {
    font-size: 26px;
    margin-bottom: 50px;
  }
}