:root {
  /* main blue color for sobit: #2389ca */
  /* secondary orange color for sobit: #f7941d */
  --primary-blue: #2389ca;
  --secondary-orange: #f7941d;
  --dark-gray: #555;
  --black-russian: #212226;
  --white-smoke: #f4f4f4;
  --linkedin: #0072b1;
  --twitter: #1da1f2;
  --whatsapp: #25d366;
  --black: #000000;
  --white: #ffffff;

  --open-sans: "Open Sans", sans-serif;
  --raleway: "Raleway", sans-serif;
}

/* CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--open-sans);
  color: var(--black-russian);
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  /* ScrollSpy */
  position: relative;
}

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

p {
  font-family: var(--open-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

section {
  background-color: var(--white);
  overflow: hidden;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Remove default margin and padding for some elements */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

/* Remove default button styling */
button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default form styles */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  border-radius: 0;
  border: none;
  outline: none;
  background-color: transparent;
  appearance: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Embeds */
embed,
iframe,
object,
video {
  max-width: 100%;
  height: auto;
}

/* CUSTOM STYLE */
.no-pointer {
  cursor: default;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  background-color: var(--white);
}

#preloader .content {
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/preloader/preloader.gif");
}

/* Content Boxes */
.content-box-lg {
  padding: 120px 0;
}
.content-box-md {
  padding: 100px 0;
}

strong {
  color: var(--primary-blue);
}

.text-primary-blue {
  color: var(--primary-blue);
}
.text-secondary-orange {
  color: var(--secondary-orange);
}

/* HEADING */
.horizontal-heading h2,
.vertical-heading h2 {
  font-size: 42px;
  font-weight: 100;
  line-height: 45px;
  margin: 0;
}
/* .horizontal-heading,
.vertical-heading strong {
  color: var(--secondary-orange);
} */

.horizontal-heading {
  margin-bottom: 80px;
}
.horizontal-heading h5 {
  font-size: 16px;
  color: var(--primary-blue);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

/* Home Section */
#home {
  position: relative;
  background-color: unset;
  width: 100%;
  height: 100vh;
}

#home-bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  background: url("../video/poster.jpg") no-repeat;
  background-size: cover;
  z-index: -1;
}

#home-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

#home-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-text-block {
  width: 90%;
  margin: 0 auto;
}
.home-subheading {
  color: var(--white);
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 1.8px;
  font-weight: 100;
  /* margin: 8px 0 20px; */
  margin: 30px auto 40px;
  padding: 0 10px;
}

#home-heading h1 {
  color: var(--white);
  /* font-size: 50px; */
  font-weight: 100;
  display: inline-block;
}
#home-heading #home-heading-2 {
  font-size: 34px;
  text-transform: uppercase;
}

#home-heading h1 span {
  color: var(--primary-blue);
  font-weight: 500;
}
#home-text {
  width: 75%;
  margin: 0 auto;
}
/* #home-text p:first-of-type {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 20px;
} */

.btn-general {
  font-family: var(--raleway);
  border-radius: 28px;
  font-size: 15px;
  text-transform: uppercase;
  margin: 6px;
  padding: 12px 46px 12px 46px;
  transition: all 0.5s;
}
.btn-home,
.btn-yellow {
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-home__primary {
  background-color: var(--white);
  color: var(--black);
}
.btn-home:hover,
.btn-home:focus {
  color: var(--white);
  background-color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}
.btn-yellow {
  background-color: var(--primary-blue);
}
.btn-yellow:hover,
.btn-yellow:focus {
  color: var(--white);
  background-color: var(--black-russian);
  border: 1px solid var(--black-russian);
}
.btn-whatsapp {
  border-color: var(--whatsapp);
  color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background-color: var(--whatsapp);
  color: var(--white);
}

.btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 3px 15px;
  border-radius: 4px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  z-index: 1;
}
.btn-back-to-top:hover {
  border: 1px solid var(--white);
}
.btn-back-to-top.hide {
  transform: translateX(80px);
}

#arrow-down {
  position: absolute;
  left: 50%;
  bottom: 20px;
  color: var(--white);
  font-size: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  margin-left: -16px;
  z-index: 1;
}
#arrow-down:hover,
#arrow-down:focus {
  color: var(--primary-blue);
}

/* About */
#about-right p:first-child {
  margin-bottom: 30px;
  /* font-size: 16px; */
}
#about-bottom {
  margin-top: 60px;
}
#about-bottom img {
  margin: auto;
}

#about-02 {
  background-color: var(--white-smoke);
}
.about-item {
  background-color: var(--white);
  padding: 80px 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.about-item i {
  font-size: 42px;
  margin: 0;
}
.about-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.about-item hr {
  width: 45px;
  height: 3px;
  background-color: var(--primary-blue);
  margin: 0 auto;
  border: none;
  opacity: 1;
}
.about-item p {
  margin-top: 20px;
}

.about-item:hover {
  background-color: var(--primary-blue);
  transform: translateY(-10px);
}
.about-item:hover i,
.about-item:hover h3,
.about-item:hover p {
  color: var(--white);
}
.about-item:hover hr {
  background-color: var(--white);
}
.about-item:hover i {
  transform: translateY(-10px) scale(1.2);
}
/* Smooth transition */
.about-item,
.about-item i,
.about-item hr {
  transition: all 400ms ease-in-out;
}

/* OWL SWIPPER */
.owl-nav {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}
.owl-nav i {
  border: 1px solid var(--black-russian);
  padding: 4px 6px;
}

/* TEAM */
.team-md {
  color: var(--secondary-orange);
}

#team-left .vertical-heading {
  min-height: 160px;
}
#team-left p:first-of-type {
  margin-bottom: 10px;
  font-size: 16px;
}
.team-member {
  margin: 8px;
  position: relative;
}
.team-member-overlay {
  background-color: var(--white-smoke);
}
.team-member-info {
  width: 100%;
  padding: 10px 0;
}
.team-member-info h6 {
  color: var(--primary-blue);
  font-size: 16px;
  margin: 0;
}
.team-member:hover .team-member-overlay {
  opacity: 1;
}

/* SOCIALS */
ul.social-list {
  display: flex;
  gap: 10px;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 0;
}
.team-member-info ul.social-list {
  justify-content: center;
}
ul.social-list li {
  display: inline-block;
  padding: 0;
}
ul.social-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid var(--black-russian); */
  width: 30px;
  height: 30px;
  line-height: 35px;
  color: var(--black-russian);
  border-radius: 5px;
  transition: all 400ms linear;
  font-size: 20px;
}
ul.social-list li:nth-child(1) a:hover {
  background: var(--whatsapp);
  color: var(--white);
  border-color: transparent;
}
ul.social-list li:nth-child(2) a:hover {
  background: var(--twitter);
  color: var(--white);
  border-color: transparent;
}
ul.social-list li:nth-child(3) a:hover {
  background: var(--whatsapp);
  color: var(--white);
  border-color: transparent;
}
ul.social-list li a.yahoo:hover {
  background: #720e9e;
}
ul.social-list li a.whatsapp:hover {
  background: var(--whatsapp);
}

/* STATEMENT */
#statement {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-image: url("../img/tech/statement.jpg");
}
#statement > div {
  background-color: rgba(0, 0, 0, 0.5);
}
#statement h3 {
  color: var(--white);
  font-size: 28px;
  line-height: 45px;
}
#statement p {
  font-size: 14px;
  color: var(--primary-blue);
  font-family: var(--raleway);
  margin-top: 8px;
}

/* SERVICES */
/* PART 01 */
#services-01 img {
  margin: 60px 0;
}

.services-wrapper {
  display: flex;
  gap: 40px;
  flex-direction: column;
  justify-content: center;
}
/* .service {
  margin: 35px 0;
} */
.service .icon {
  font-size: 42px;
  margin: 0;

  transition: all 200ms linear;
}
.service:hover .icon {
  color: var(--primary-blue);

  transform: translateX(-10px);
}
.service h5 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin: 6px 0;
}
.service:hover h5 {
  color: var(--black-russian);
}
.service h4 {
  font-size: 24px;
  margin: 0 8px 0;
}
.service p {
  line-height: normal;
  color: var(--dark-gray);
}

/* PART 02 */
#services-02 {
  background: var(--white-smoke);
}
#services-tabs ul {
  margin-bottom: 40px;
}
#services-tabs ul li {
  padding: 5px 30px;
}
#services-tabs ul li a {
  font-family: var(--raleway);
  font-size: 15px;
  color: var(--black-russian);
  text-transform: uppercase;
  font-weight: 400;
  padding: 0;
  text-decoration: none;
}
/* Tab active state */
#services-tabs ul li.r-tabs-state-active a {
  color: var(--primary-blue);
  font-weight: 700;
  border-bottom: 3px solid var(--primary-blue);
  padding-bottom: 5px;

  transition: border-color 300ms linear;
}

.service-tab {
  height: 450px;
}
.service-tab .container {
  height: 100%;
  display: flex;
}

.service-tab .col-md-6 {
  height: 100%;
  padding: 0;
}
.service-tab img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}
.service-tab .tab-bg {
  background: var(--white);
  padding: 50px 30px;
  height: 100%;
}
.service-tab h2 {
  font-size: 48px;
  color: #bbb;
  margin-bottom: 20px;
  font-weight: 100;
}
.service-tab h3 {
  text-transform: capitalize;
  font-size: 32px;
  margin-bottom: 30px;
}
.service-tab p {
  line-height: 24px;
  margin-bottom: 30px;
}

/* PRODUCTS */
#portfolio {
  background-color: var(--white-smoke);
}
#portfolio .vertical-heading {
  margin-bottom: 60px;
}
.portfolio-subtitle {
  margin-bottom: 10px;
  font-size: 16px;
  margin-bottom: 40px;
}

.row.no-gutters [class*="col-"] {
  padding: 0;
}

#isotope-filters .btn {
  text-transform: capitalize;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
}
.portfolio-item img {
  width: 100%;
  height: 100%;

  transition: transform 0.5s;
}
.portfolio-item-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.5s;
}
.portfolio-item-overlay h3 {
  color: transparent;
  padding: 15px;
  transform: scale(1.3);
  transition: color 0.5s, transform 0.7s;
}
.portfolio-item-overlay span {
  display: none;
}
.portfolio-item:hover .portfolio-item-overlay h3 {
  transform: scale(1);
  color: var(--secondary-orange);
}
.portfolio-item:hover img {
  transform: scale(1.2);
}
.portfolio-item:hover .portfolio-item-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

/* TWO FLOWS */
.services-flux {
  --dark: #1a1a1a;
  --gray: #f7f7f7;
  /* padding: 100px 5%; */
  background-color: var(--white-smoke);
}

.flux-intro {
  margin: 0 auto 80px;
  /* max-width: 900px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444; */
}

.flux-intro strong {
  color: var(--dark);
}

.flux-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.flux-row:last-child {
  margin-bottom: 0;
}

.flux-row.reverse {
  grid-template-columns: 1fr 1fr;
}
.flux-row.reverse .flux-text {
  order: 2;
}
.flux-row.reverse .flux-image {
  order: 1;
}

.flux-text h3 {
  font-size: 1.7rem;
  margin: 0 0 24px;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
}

.flux-text h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: var(--primary-blue);
}

.flux-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark-gray);
  margin: 0;
}

.flux-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flux-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.flux-image:hover img {
  transform: scale(1.05);
}

.how-step-number {
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  transition: color, background-color 0.2s ease-in-out;
}
.how-step-number:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

#offices {
  padding-top: 30px;
}
ul.office-details {
  list-style: none;
  padding: 0;
}
ul.office-details li {
  font-family: var(--open-sans);
  margin-top: 12px;
  display: flex;
}
ul.office-details li i {
  font-size: 20px;
  width: 45px;
}

/* FOOTER */

footer {
  background: var(--black-russian);
  padding: 30px;
}
footer p {
  color: var(--white);
  font-size: 20px;
  line-height: 25px;
}
footer p span:last-child {
  color: var(--primary-blue);
}

/* NAVIGATION */

.navbar {
  padding: 35px 0 20px 0;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms;
}
.site-nav-wrapper {
  padding: 85px;
}
.navbar-brand {
  padding: 5px 10px;
  width: 200px;
  z-index: 4;
}
ul.navbar-nav > li > a {
  font-family: "Raleway", sans-serif;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
ul.navbar-nav > li > a.nav-link.active,
ul.navbar-nav > li > a:hover,
ul.navbar-nav > li > a:focus {
  background: none;
  font-weight: bold;
  color: var(--primary-blue);
}

/* White Navigation */
.white-nav-top {
  background: var(--white);
  padding: 10px 0;

  box-shadow: 0 8px 6px -9px #999;
  z-index: 2;
}
.white-nav-top ul.navbar-nav > li > a {
  color: var(--black-russian);
}
.white-nav-top ul.navbar-nav > li > a:hover,
.white-nav-top ul.navbar-nav > li > a:focus {
  color: var(--primary-blue);
}

/* ==================================================== */
/* ANIMATION */

#home-heading-1,
#home-heading-2,
#home-text,
#home-btn,
#arrow-down i {
  animation-duration: 0.5s;
}
#home-heading-1 {
  animation-delay: 1s;
}
#home-heading-2 {
  animation-delay: 1.3s;
}
#home-text {
  animation-delay: 1.6s;
}
#home-btn {
  animation-delay: 1.2s;
}
#arrow-down i {
  animation-delay: 1.5s;
}
