@use "../utilities" as *;

/*-----------------------------------------------------------------------------------

    Theme Name: Bexon - Corporate Business HTML5 Template
    Author: Theme-Junction
    Author URI: https://themeforest.net/user/theme-junction
    Description: Bexon - Corporate Business HTML5 Template
    Version: 1.0

-----------------------------------------------------------------------------------


/************ TABLE OF CONTENTS ***************

  Theme Default CSS
	Buttons CSS
	Header CSS
	Footer CSS
	Search CSS
	Hamburger CSS
	Preloader CSS
	Heading CSS
	Hero CSS
	Choose CSS
	Client CSS
	About CSS
	Services CSS
	Marquee CSS
	Project CSS
	Testimonial CSS
	Faq CSS
	Blog CSS
	CTA CSS
	Countup CSS
	Working process CSS
	Contact CSS
	Slider CSS
	Team CSS
	Team details
	Breadcrumb CSS
	Pricing CSS
	Blog Details CSS
	Error 404
	Animate CSS

**********************************************/

/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
@import url($font-url);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-main {
  position: relative;
}
body {
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: normal;
  color: var(--tj-color-text-body);
  background-color: var(--tj-color-grey-1);
  line-height: 1.5;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--tj-fw-medium);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

h1 {
  font-size: var(--tj-fs-h1);
  line-height: 1.108;

  @media #{$xl} {
    font-size: 60px;
  }
  @media #{$lg} {
    font-size: 50px;
  }
  @media #{$md, $sm, $xs} {
    font-size: 45px;
  }
}

h2 {
  font-size: var(--tj-fs-h2);
  line-height: 1.125;

  @media #{$lg, $md} {
    font-size: 40px;
  }
  @media #{$sm} {
    font-size: 36px;
  }
  @media #{$xs} {
    font-size: 30px;
  }
}

h3 {
  font-size: var(--tj-fs-h3);
  line-height: 1.25;

  @media #{$md} {
    font-size: 28px;
  }
  @media #{$sm, $xs} {
    font-size: 25px;
  }
}

h4 {
  font-size: var(--tj-fs-h4);
  line-height: 1.333;

  @media #{$md} {
    font-size: 22px;
  }
  @media #{$sm, $xs} {
    font-size: 20px;
  }
}

h5 {
  font-size: var(--tj-fs-h5);
  line-height: 1.4;
}

h6 {
  font-size: var(--tj-fs-h6);
  line-height: 1.444;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

ul {
  margin: 0px;
  padding: 0px;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
svg path,
h1,
h2,
h3,
h4,
h5,
h6 {
  @include transition(all 0.3s ease-in-out 0s);
}

a:focus,
button:focus,
button:focus-visible {
  text-decoration: none;
  outline: none;
  box-shadow: 0 0 0;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: var(--tj-color-theme-primary);
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
}

.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
  outline: none;
  background-color: var(--tj-color-common-white);
  height: auto;
  width: 100%;
  font-size: var(--tj-fs-body);
  border: 1px solid var(--tj-color-border-1);
  color: var(--tj-color-text-body);
  padding: 10px 15px;
  box-shadow: 0 0 0;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--tj-color-theme-primary) var(--tj-color-common-white);
}
::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--tj-color-theme-primary);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}
::-webkit-scrollbar-corner {
  background: transparent;
}

*::-moz-selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}
::selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

* {
  @include placeholder {
    color: var(--tj-color-text-body);
    font-size: var(--tj-fs-body);
    opacity: 1;
  }
}

/**
 	Common Classes CSS
*/
table {
  border-collapse: separate;
  border-spacing: 0;
}
img {
  max-width: 100%;
}

.w-img {
  & img {
    width: 100%;
  }
}
.m-img {
  & img {
    max-width: 100%;
  }
}
.fix {
  overflow: hidden;
}
.section-gap {
  padding-top: 120px;
  padding-bottom: 120px;

  @media #{$lg} {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  @media #{$md, $sm, $xs} {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section-gap-2 {
  padding-top: 100px;
  padding-bottom: 100px;

  @media #{$lg} {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  @media #{$md, $sm, $xs} {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.gap-top,
.section-top-gap {
  padding-top: 120px;

  @media #{$lg} {
    padding-top: 100px;
  }
  @media #{$md, $sm, $xs} {
    padding-top: 70px;
  }
}
.gap-bottom,
.section-bottom-gap {
  padding-bottom: 120px;

  @media #{$lg} {
    padding-bottom: 100px;
  }
  @media #{$md, $sm, $xs} {
    padding-bottom: 70px;
  }
}
.section-gap-x {
  margin-inline-start: 15px;
  margin-inline-end: 15px;
  @media #{$sm, $xs} {
    margin-inline-start: 12px;
    margin-inline-end: 12px;
  }
}
.section-separator {
  border-top: 1px dashed var(--tj-color-border-1);
}

// margin
.mt-10 {
  margin-top: 10px;
}
.rg-30 {
  row-gap: 30px;
}
.rg-40 {
  row-gap: 40px;
}
.rg-50 {
  row-gap: 50px;
}
.rg-60 {
  row-gap: 60px;
}
.rg-70 {
  row-gap: 70px;
}
.rg-80 {
  row-gap: 80px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}
// gap
.gap-15 {
  --bs-gutter-x: 15px;
  padding: 0 15px;
  .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }
}
.space-for-header {
  padding-top: 105px;
  @media #{$md,$sm,$xs} {
    padding-top: 95px;
  }
}
.top-space-15 {
  padding-top: 15px;
  @media #{$sm, $xs} {
    padding-top: 12px;
  }
}
.top-space-65 {
  padding-top: 65px;
  @media #{$sm, $xs} {
    padding-top: 94px;
  }
}
.gap-30 {
  --bs-gutter-x: 30px;

  .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
  }
}
.gap-0 {
  --bs-gutter-x: 0;
  .row {
    --bs-gutter-x: 0;
  }
}
.wow {
  visibility: hidden;
}
.container-end-align {
  margin-inline-start: calc((100% - 1320px) / 2);
  width: auto;
  min-width: auto;
  max-width: inherit;
  padding-inline-end: 0;
  @media #{$xl} {
    margin-inline-start: calc((100% - 1140px) / 2);
  }
  @media #{$lg} {
    margin-inline-start: calc((100% - 960px) / 2);
  }
  @media #{$md} {
    margin-inline-start: calc((100% - 720px) / 2);
  }
  @media #{$sm} {
    margin-inline-start: calc((100% - 540px) / 2);
  }
  @media #{$xs} {
    margin-inline-start: 0;
    padding-inline-end: 12px;
  }
}
.vbox-grab .vbox-child img {
  border-radius: 12px;
}
#smooth-content {
  padding-bottom: 15px;
  will-change: transform;
  @media #{$sm, $xs} {
    padding-bottom: 0;
  }
}
.tj-sticky-panel,
.tj-sticky-panel-2,
.tj-sticky-panel-3,
.slidebar-stickiy {
  will-change: transform;
}

[data-speed=".8"] {
  @media #{$md,$sm,$xs} {
    transform: none !important;
  }
}
.tj-scroll-btn {
  cursor: pointer;
}
