.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

:root {
    --color-primary: #0D1F23;
    --color-secondary: #C62419;
    --color-tertiary: #FFE4D6;
    --color-white: #ffffff;
    --color-text: #000000;
    --color-accent: #C62419;
}

html,body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.h1, .h2, .h3, .h4, .h5, .h6{
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}
a{
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: var(--color-primary);
}
a:hover{
  color: var(--color-secondary);
}
p{
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  font-weight: 300;
}
img{
  width: 100%;
}
@media (min-width: 1200px) {
    .container{
        max-width: 1200px !important;
    }
}
header{
    background-color: #fff;
    z-index:1;
}
.navbar-brand {
    width: 18%;
}
.navbar .nav-link {
    font-weight: 500;
    color: var(--color-text);
    font-size: 14px;
    padding-right: 18px !important;
}
.header a {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header a::before,
.header a::after {
  content: "";
  position: absolute;
  background-color: var(--color-secondary);
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.4s;
}

.header a::before {
  top: 0;
  left: 0;
  transform-origin: left;
}

.header a::after {
  bottom: 0;
  right: 0;
  transform-origin: right;
}

.header a:hover::before,
.header a:hover::after {
  transform: scaleX(1);
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.bt-header {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 0.5rem 2rem;
}
.bt-header:hover{
    background-color: var(--color-primary);
    color: #fff;
}
.bg-1{
  background-color: var(--color-primary);
}
.bg-2{
  background-color: var(--color-tertiary);
}
.bt-primary {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 20px;
}
.bt-primary:hover {
    border: 1px solid var(--color-secondary);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.bt-outline {
    background-color: transparent;
    border: 1px solid var(--color-secondary);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 20px;
}
.bt-outline:hover {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 20px;
}
.bdr-1{
    border: 1px solid var(--color-secondary);
}
.ws-title {
    font-size: 2.3rem;
    text-transform: capitalize;
}
.ft-1 {
    font-size: 1.3rem;
}
.hero-content .bnr-title {
    font-size: 3.4rem;
    text-transform: capitalize;
}

.hero-content .bnr-sub-title {
    font-weight: 200;
}
.hero-content h2 {
    font-size: 2.5rem;
    text-transform: capitalize;
}
.hero-content .bnr-btn .bt-primary:hover {
  background-color: white;
    color: #000;
}
.icon-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}
.icon-box .icn-title {
    text-transform: capitalize;
    font-size: 1.16rem;
    font-weight: 400;
    padding: 0 2rem;
}
ul.icon-left {
    padding-left: 0;
}
.icon-left li {
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 300;
}
.icon-left li img {
    margin-right: 1rem;
    width: 30px;
}
.review-box img {
    width: 40px;
}
.review-box .review-comment p {
    font-size: 1.5rem;
    font-weight: 200;
}
.review-box .review-comment span {
    font-style: italic;
    color: var(--color-secondary);
}
.bt-small {
    background-color: var(--color-secondary);
    color: #fff;
}
.footer-wrap{
  background-color: #041417;
  color: #fff;
}
.footer-title {
    margin-bottom: 1.3rem;
    text-transform: capitalize;
    font-size: 1.5rem;
}
.footer-wrap ul{
  padding-left: 0;
}
.footer-wrap ul li {
    list-style: none;
    margin-bottom: 0.6rem;
}
.wd-4 {
    width: 70px;
}
.form .btn {
    margin-left: -5rem;
    border-radius: 0 10px 10px 0;
    padding: 1rem;
    background-color: var(--color-secondary);
    border: none;
}
.form .form-control {
    box-shadow: none;
    height: 3.5rem;
    border-radius: 10px 0 0 10px;
    border: none;
}
.footer-menu .nav-link {
    font-size: 15px;
    font-weight: 300;
}
.ft-12{
  font-size: 12px;
}
.call-action span {
    font-size: 12px;
}
.dark .social-icon i {
    color: #fff;
    font-size: 25px;
}
.social-icon li{
    padding-right: 1rem;
}
.copyright{
    color: #C2C2C2;l
    font-weight: 200;
}
.bullet-pt li {
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
}
ul.bullet-pt {
    padding-left: 1.5rem;
}
.icon-left .icn-title {
    padding: 0;
    font-size: 1.7rem;
}
.icon-left span {
    color: var(--color-secondary);
}
.bg-3{
  background-color: #f7f4f0;
}
.contact-form input {
    margin-bottom: 1rem;
    border-color: var(--color-secondary);
}
.contact-form textarea {
    height: 80px;
    resize: none;
    border-color: var(--color-secondary);
    margin-bottom: 1rem;
}
.contact-form .btn {
    width: 100%;
    background-color: red;
    border: red;
    padding: 0.5rem;
}
.contact-section .icon-left li {
    align-items: normal;
}
.icon-left i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}
.radius-top-right {
    border-radius: 12rem 0 0 0;
}
.radius-both{
  border-radius: 12rem 0 12rem 0;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.hq__detail {
    text-align: center;
    opacity: .6;
    margin-right: 5rem;
}
.hq__detail img {
    border-bottom: 1px solid #fff;
    padding-bottom: 25px;
}
.hq_head {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    padding: 15px 0 10px;
}
.hq__detail p {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    display: inline-block;
    padding-top: 10px;
}
.flex_al_baseline {
    align-items: baseline;
}
.flex_spc_btw
 {
    justify-content: space-between;
}
.hq__detail:hover {
    opacity: 1;
}
.canada {
    width: 106px;
}
/* Style the tab */
.tab {
  overflow: hidden;
  border-bottom: 3px solid #ccc;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 1.5rem;
  margin-right: 2rem;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: var(--color-secondary);
  color: white;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: var(--color-secondary);
    color: #fff;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}
.hide{
        display:block;
    }
    .footer a {
    color: #fff;
}
.cd {
    width: 91%;
}
@media (max-width: 576px) { 
    .hero-content .bnr-title {
        font-size: 3rem;
        text-align: center;
    }
    .hero-content .bnr-sub-title {
    text-align: center;
    }
    .hero-section .row{
      flex-direction: column-reverse;
    }
    .ws-title {
    text-align: center;
    }
    ul.icon-left {
    padding-left: 2rem;
    }
    .card-box {
    text-align: center;
    }
    .navbar-brand {
    width: 50%;
    }
    .blockchain-section p {
    text-align: center;
    }
    .hide{
        display:none;
    }
}

