@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --theme-colour: #f4520a;
  --common-colour: #18154e;
  --theme-color2: #ffbf14;
  --theme-font: "DM Sans";
}

body,
html {
  font-family: 'Archivo';
  overflow-x: hidden;
}

.trc p {
  font-size: 18px;
  line-height: 30px;
  color: #555;
  margin: 0;
  font-weight: 400;
  font-family: "DM Sans";
}

section.trc img {
  max-width: none;
}

* {
  margin: 0;
  padding: 0;
}

.trc figure {
  margin-bottom: 0;
}

.trc h1 {
  font-size: 70px;
  line-height: 80px;
}

.trc h2 {
  font-size: 50px;
}

.trc h3 {
  font-size: 24px;
}

.trc h4 {
  font-size: 22px;
}

.trc a,
.trc h2,
.trc h3,
.trc h4,
.trc h5,
.trc h6 {
  color: #000;
  margin: 0;
}

.trc a {
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
}

.trc ul {
  padding: 0;
  margin: 0;
}

.trc li {
  display: block;

}

.trc figure {
  overflow: hidden;
}

.trc.gap {
  padding-top: 120px;
  padding-bottom: 120px;
}

.trc.no-top {
  padding-top: 0;
}

.trc.no-bottom {
  padding-bottom: 0;
}

/* 01. header-top */
.trc .content-header {
  display: flex;
  align-items: center;
  z-index: 1;
}

.trc .content-header svg {
  width: 24px;
  height: auto;
}

.trc .content-header h4,
.trc .content-header a {
  padding-left: 6px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  display: inline-block;
}

.trc .content-header span,
.trc .content-header a {
  font-weight: 500;
}

.trc .content-header a:hover {
  color: var(--theme-colour);
}

.trc .content-header i {
  color: #fff;
  font-size: 18px;
  line-height: 0;
  margin-right: 10px;
}

.trc .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

header.trc {
  position: absolute;
  width: 100%;
  z-index: 211;
}

.trc .header-bottom-bar {
  background-color: #fff;
}

/* 02. navbar */
.trc .navbar {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  padding: 0;
}

.trc .navbar-logo {
  color: #ff3f34;
  text-decoration: none;
  font-size: 25px;
  padding: 0px 20px;
}

.trc .navbar-links {
  list-style-type: none;
  display: flex;
}

.trc .navbar-links li:not(:last-child) {
  padding-right: 45px;
}

.trc .navbar-links li a {
  display: block;
  text-decoration: none;
  color: #707070;
  transition: 0.4s all;
  padding: 0;
  padding-bottom: 10px;
  padding-top: 10px;
}

.trc .navbar-links li.navbar-dropdown {
  position: relative;
}

.trc .navbar-links li.navbar-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translatey(0px);
  z-index: 1111;
}

.trc .navbar-links li.navbar-dropdown:hover .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  border-left: 3px solid var(--theme-colour);
  opacity: 0;
  top: 20%;
  visibility: hidden;
}

.trc .navbar-links li.navbar-dropdown .dropdowny {
  border: none;
}

.trc li.sub-menu-item-children:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  z-index: 1;
  right: 31px;
  background-color: black;
  clip-path: polygon(68% 50%, 0 0, 0 100%);
  top: 44%;
}

.trc .navbar-links li.navbar-dropdown .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.trc .navbar-links li.navbar-dropdown .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  transform: translatey(10px);
  left: 0;
  width: 230px;
  box-shadow: 0px 10px 10px 3px hsl(0deg 0% 0% / 16%);
  z-index: 111;
  transition: 0.4s all;
}

.trc .navbar-links li.navbar-dropdown .sub-menu a {
  font-size: 16px;
  padding-left: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 400;
  border: 0;
  position: relative;
  text-transform: capitalize;
  color: #000;
  background-color: #FFF;
}

.trc .navbar-links li.navbar-dropdown .sub-menu li a:hover {
  color: var(--theme-colour);
}

.trc .navbar-links li.navbar-dropdown .sub-menu li {
  position: relative;
}

.trc .navbar-links li.navbar-dropdown .sub-menu li:not(:last-child):before {
  content: "";
  z-index: 11;
  position: absolute;
  height: 1px;
  background-color: #58585829;
  width: 75%;
  bottom: 0;
  left: 25px;
}

.trc li.menu-item-has-children>a:before {
  content: "";
  background-image: url(../../images/down-arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: -12px;
  width: 8px;
  height: 8px;
}

.trc li.menu-item-has-children .sub-menu li.menu-item-has-children>a:before {
  content: "";
  background-image: url(../../images/down-arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: -12px;
  width: 8px;
  height: 8px;
}

.trc .navbar-links li:hover>a {
  border-bottom: 5px solid var(--theme-colour);
}

.trc .navbar-links li>a {
  border-bottom: 5px solid transparent;
  color: black;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 800;
}

.trc ul.social-media {
  display: flex;
  justify-content: end;
}

.trc ul.social-media li {
  position: relative;
}

.trc ul.social-media li:not(:last-child):before {
  content: "";
  position: absolute;
  width: 1px;
  height: 13px;
  background-color: #000;
  right: -20px;
  top: 0px;
}

.trc nav.navbar ul.sub-menu li {
  padding: 0;
}

.trc ul.social-media li a i {
  padding-left: 40px;
  color: #000;
}

.trc ul.social-media li a i:hover {
  color: var(--theme-colour);
}

.trc ul.social-media li a i.flaticon-twitter {
  font-size: 14px;
}

.trc ul.social-media li a {
  text-transform: capitalize;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.trc ul.social-media li {
  margin-left: 0px;
}

/* 03. two-bar */
.trc .two-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 12px;
}

.trc .logo {
  z-index: 1;
}

.trc .header-search i {
  color: #000;
  font-size: 22px;
  margin-left: 0;
}

.trc .header-search i:hover {
  color: var(--theme-colour);
}

.trc .header-top-bar {
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}

.trc .header-top-bar:before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 34%;
  left: 0;
  height: 103%;
  top: 0px;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
}

/* 04. mobile-nav */
.trc .mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: var(--common-colour);
  padding: 50px 40px 15px;
  z-index: 5;
  transition: 0.45s ease-in-out;
  transform: translateX(-101%);
  -webkit-transform: translateX(-101%);
  -moz-transform: translateX(-101%);
  -o-transform: translateX(-101%);
  overflow-y: auto;
}

.trc .mobile-nav ul li a svg {
  width: 11px;
}

.trc .for #nav-icon4 {
  color: black;
}

.trc #nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.trc #nav-icon4 span:nth-child(2) {
  top: 13px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.trc .responsive-bar {
  display: none;
}

.trc #nav-icon4 span:nth-child(3) {
  top: 25px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.trc #nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

.trc #nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.trc #nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 35px;
  left: 8px;
}

.trc i#nav-icon4 {
  display: none;
}

.trc #nav-icon4 {
  width: 40px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
  font-size: 25px;
  color: white;
}

.trc #nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.trc .mobile-nav>ul>li.menu-item-has-children:before {
  color: #fff;
  position: absolute;
  top: 17px;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  font-size: 11px;
}

.trc .mobile-nav>ul>li.menu-item-has-children.active:before {
  transform: rotate(0deg);
  color: var(--theme-colour);
}

.trc .mobile-nav>ul>li {
  position: relative;
  border-bottom: 0px solid #d4d4d4;
  padding: 10px 0;
  display: block;
}

.trc .mobile-nav>ul>li:not(:last-child) {
  border-bottom: 1px solid #5b5b5b;
}

.trc .mobile-nav>ul li>a {
  font-size: 14px;
  line-height: 26px;
  text-transform: capitalize;
  color: #fff;
}

.trc .mobile-nav>ul>li>a {}

.trc .mobile-nav>ul>li.menu-item-has-children>ul.sub-menu {
  padding-left: 25px;
  padding-top: 10px;
  padding-bottom: 5px;
  position: absolute;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translatey(15px);
  -webkit-transform: translatey(15px);
  -moz-transform: translatey(15px);
  -o-transform: translatey(15px);
  border-top: 1px solid #5b5b5b;
  margin-top: 8px;
}

.trc .mobile-nav>ul>li.menu-item-has-children.active>ul.sub-menu li {
  padding: 5px 0;
  position: relative;
}

.trc .res-log img {
  width: auto;
}

.trc .mobile-nav>ul>li.menu-item-has-children.active>ul.sub-menu li:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: -18px;
  background-color: var(--theme-colour);
}

.trc .mobile-nav ul>li.menu-item-has-children:before {
  content: "";
  background-image: url(../img/down-arrow-clr.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 0;
  width: 10px;
  height: 10px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.trc .mobile-nav>ul li.menu-item-has-children.active ul.sub-menu li:before {
  top: 12px;
  background-color: transparent;
  left: auto;
  content: "";
  position: absolute;
  transform: rotate(0deg);
}

.trc .mobile-nav>ul li.menu-item-has-children ul.sub-menu {
  padding-left: 25px;
  padding-top: 10px;
  padding-bottom: 5px;
  position: absolute;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  -webkit-transform: translateX(15px);
  -moz-transform: translateX(15px);
  -o-transform: translateX(15px);
  border-top: 1px solid #5b5b5b;
  margin-top: 8px;
}

.trc .mobile-nav>ul li.menu-item-has-children.active>ul.sub-menu {
  position: relative;
  height: auto;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transition-delay: 0.1s;
}

.trc .res-log {
  margin-bottom: 30px;
}

.trc .res-rights p {
  color: #d6d6d6;
  font-weight: bold;
  letter-spacing: 5px;
  margin-top: 30px;
}

.trc .mobile-nav.open {
  transform: translateX(0) !important;
  z-index: 33333333;
  box-shadow: 3px 3px 39px -4px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 3px 3px 39px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 3px 3px 39px -4px rgba(0, 0, 0, 0.75);
}

.trc li.menu-item-has-children.active {
  background-color: transparent;
}

.trc .mobile-nav a#res-cross:before {
  content: "\f057";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 28px;
}

.trc #mobile-menu i {
  color: black;
  background-color: transparent;
  font-size: 24px;
}

.trc #mobile-menu {
  z-index: 1;
  display: none;
}

.trc .responsive-bar-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.trc #mobile-menu i {
  margin-right: 20px;
  font-size: 26px;
}

.trc .bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 20px 0;
}

.trc .header-search .btn {
  padding: 16px 24px;
}

.trc .header-search .btn i {
  color: #fff;
}

/* btn */
.trc .btn {
  background-color: var(--theme-colour);
  display: inline-flex;
  padding: 16px 40px;
  color: #fff;
  font-weight: bold;
  width: auto;
  border-radius: 0px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  transition: .5s ease-in-out;
  height: 58px;
}

.trc .btn:before {
  content: "";
  position: absolute;
  background-color: var(--common-colour);
  width: 20%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
}

.trc .btn:after {
  content: "";
  position: absolute;
  width: 10px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  height: 10px;
  background-color: #fff;
  z-index: 11111111111;
  right: 2px;
  bottom: 2px;
}

.trc .btn:hover {
  color: #fff;
  border-color: var(--common-colour);
  background-color: var(--common-colour);
}

.trc .btn:hover:before {
  width: 100%;
  opacity: 1;
}

/* 07. Search Popup */
.trc .search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: #0013399e;
  -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  /* easeInOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  /* easeInOutQuint */
}

.trc .search-popup {
  width: 100%;
}

.trc .search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.trc.search-popup .close-search {
  top: 6%;
  position: absolute;
  left: 94%;
  margin: 0 auto;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme-colour);
  width: 50px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  height: 50px;
  line-height: 57px;
  text-align: center;
  color: #fff;
  border: 0;
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.trc.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: #111111;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.trc.search-popup .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

.trc .checkbox-flex {
  display: flex;
}

.trc.search-popup .form-group input[type="text"],
.trc.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  outline: none;
  border: 0;
}

.trc.search-popup .form-group input[type="submit"],
.trc.search-popup .form-group button {
  position: absolute;
  right: 30px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: var(--common-colour);
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  border: none;
}

.trc.search-popup .form-group input[type="submit"]:hover,
.trc.search-popup .form-group button:hover {
  color: #000000;
}

.trc.search-popup input::placeholder,
.trc.search-popup textarea::placeholder {
  color: #000000;
}

.trc.search-popup .close-search.style-two {
  position: absolute;
  right: 25px;
  left: auto;
  color: #ffffff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  background: none !important;
  box-shadow: none !important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.trc .search-box-btn {
  display: inline-block;
  padding-left: 22px;
}

.trc .search-box-btn i {
  display: inline-block;
  color: #fff;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  transition: .5s;
}

.trc .upp.search-box-btn i {
  color: #9E9FA1;
}

.trc .search-box-btn.search-box-outer span i {
  font-size: 20px;
  display: inline-block;
  color: #fff;
  padding-left: 17px;
  position: relative;
  z-index: 1;
}

.trc .upp.search-box-btn.search-box-outer span i {
  color: #9E9FA1;
}

.trc .search-box-btn.search-box-outer span i:after {
  position: absolute;
  content: "0";
  right: -10px;
  top: -4px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background: #ED1C24;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  font-size: 12px;
}

.trc .flaticon-multiply:before {
  content: inherit;
}

.trc button.close-search i {
  font-size: 18px;
  color: #fff;
  display: inline-block;
}

.trc span.flaticon-multiply i {
  display: inline-block;
  color: #ED1C24;
}

.trc .header-search {
  display: flex;
  align-items: center;
}

.trc .header-search-button.search-box-outer {
  padding-right: 24px;
}

.trc .location svg {
  width: 30px;
  fill: white;
  height: auto;
}

.trc .preloader {
  background-color: var(--theme-colour);
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999999999999999999;
  right: 0;
  bottom: 0;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.trc .preloader {
  bottom: 0%;
}

.trc .page-loaded .preloader {
  bottom: -100%;
}

.trc .loader {
  display: grid;
  grid-template: 1fr 1fr/1fr 1fr;
  gap: 40%;
  width: 80px;
  aspect-ratio: 1/1;
  animation: rotate 2s linear infinite;
}

.trc .loader .dot {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #000;
  animation: scale 2s infinite alternate;
}

.trc .loader .dot:nth-child(3) {
  order: 1;
}

.trc .loader .dot:nth-child(1) {
  animation-delay: -0.5s;
}

.trc .loader .dot:nth-child(2) {
  animation-delay: -1s;
}

.trc .loader .dot:nth-child(3) {
  animation-delay: -1.5s;
}

.trc .loader .dot:nth-child(4) {
  animation-delay: -2s;
}

@keyframes scale {
  0% {
    scale: 0.1;
  }

  100% {
    scale: 1;
  }
}

@keyframes rotate {
  0% {
    rotate: 0deg;
  }

  100% {
    rotate: 360deg;
  }
}

/* Go To Top */
.trc #progress {
  z-index: 1111;
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 60px;
  width: 60px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.trc #progress-value {
  display: block;
  height: calc(105% - 10px);
  width: calc(105% - 10px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
}

.trc span#progress-value i {
  font-size: 18px;
}

/* hero-section */
.trc .hero-section {
  padding-top: 209px;
  position: relative;
}

.trc .hero-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #18154e;
  top: 0;
  opacity: .8;
}

.trc .hero-section:after {
  content: "";
  position: absolute;
  width: 40%;
  height: 100px;
  background-color: #FFF;
  bottom: 0;
  right: 0;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.trc .hero-section h1 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 4px;
}

.trc .hero-section .hero-text h1 {
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
  transform: translateY(-20px);
}

.trc .hero-img img {
  margin-left: -180px;
}

.trc .hero-section.swiper-slide.swiper-slide-active .hero-text h1 {
  opacity: 1;
  visibility: visible;
  transition-delay: .8s;
  transform: translateY(0)
}

.trc .hero-section p {
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
  transform: translateX(-50px);
  margin-bottom: 0
}

.trc .hero-section.swiper-slide-active p {
  opacity: 1;
  visibility: visible;
  transition-delay: 1.3s;
  transform: translateX(0)
}

.trc .btnn {
  transform: scaleY(0);
  transition: all .5s ease;
  transition-delay: 2s;
  transform-origin: bottom;
}

.trc .swiper-slide-active .btnn {
  transform: scale(1)
}

.trc .hero-text p {
  color: #fff;
  font-size: 22px;
  padding-bottom: 56px;
  padding-top: 35px;
  width: 73%;
  line-height: 30px;
}

.trc .hero-img {
  position: relative;
}

.trc .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 5px solid #818181;
  width: 16px;
  height: 16px;
  border-radius: 0;
  opacity: 1;
  margin-right: 10px !important;
}

.trc .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 0;
  background-color: var(--theme-colour);
}

.trc.hero-one-slider .swiper-pagination {
  text-align: left;
  position: absolute;
  left: 83% !important;
  bottom: 3% !important;
  width: fit-content !important;
}

.trc .video i {
  border: 1px solid #fff;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 50%;
  /* background-color: var(--theme-colour); */
  color: white;
  position: relative;
  margin-right: 20px;
  animation: shadow-pulse 1s infinite;
}

.trc .video {
  display: inline-block;
}

.trc .video a {
  display: flex;
  color: #fff;
  font-size: 20px;
  align-items: center;
  font-weight: bold;
}

.trc .video a:hover {
  color: var(--theme-colour);
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgb(255 255 255);
  }

  100% {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}

.trc .btnn .video {
  margin-left: 25px;
}

.trc .heading {
  text-align: center;
  width: 74%;
  margin: auto;
  padding-bottom: 50px;
  z-index: 1;
  position: relative;
}

.trc .heading span {
  display: block;
  color: var(--theme-colour);
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 8px;
  font-weight: 900;
  letter-spacing: 1px;
}

.trc .heading h2 {
  text-transform: uppercase;
  font-weight: 800;
  width: initial;
  padding-bottom: initial;
  color: initial;
}

/* about-text  */
.trc .about-text {
  width: 92%;
}

.trc .progress {
  height: 15px;
  overflow: hidden;
  background-color: var(--theme-color2);
  border-radius: 0;
}

.trc .item_bar.cell {
  background-color: #ffffff;
  width: 80%;
  border-radius: 0;
}

.trc .progress_bar_item {
  position: relative;
  width: 90%;
  padding-top: 10px;
}

.trc .progress_bar_item .item_value.cell.shrink {
  position: absolute;
  right: 90px;
  top: 6px;
  font-weight: 900;
}

.trc .progress_bar.two .progress_bar_item .item_value.cell.shrink {
  right: 30px;
}

.trc .progress_bar {
  width: 100%;
  padding-bottom: 26px;
}

.trc .progress_bar span {
  color: var(--common-colour);
  font-weight: 900;
  padding-bottom: 10px;
}

.trc .progress_bar.two .progress_bar_item {
  width: 100%;
}

.trc .about-text .btn {
  margin-top: 20px;
}

.trc .about-text p {
  padding-bottom: 40px;
}

.trc .our-core h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  padding-bottom: 4px;
}

.trc .our-core {
  background-color: var(--common-colour);
  padding: 40px;
  width: 54%;
  margin-left: 36%;
  margin-top: -57%;
  z-index: 11;
  position: relative;
}

.trc .our-core h3 {
  position: relative;
  color: #fff;
  padding-bottom: 34px;
}

.trc .our-core h3:before {
  position: absolute;
  content: "";
  width: 20%;
  background-color: var(--theme-colour);
  height: 3px;
  bottom: 26px;
}

.trc .check-list li {
  display: flex;
  align-items: flex-start;
}

.trc .check-list li:not(:last-child) {
  padding-bottom: 22px;
}

.trc .check-list li i {
  color: var(--theme-color2);
  font-size: 30px;
  padding-right: 20px;
}

.trc ul.check-list li p {
  color: #c6c6c6;
}

.trc .about-img img {
  width: 100%;
}

.trc .hover-img:hover img {
  transform: scale(1.1);
}

.trc .heading.two {
  margin: 0;
  width: 100%;
  text-align: left;
}

/* services */
.trc .services-img {
  margin-top: -80px;
  z-index: 111;
  position: relative;
  text-align: center;
  padding: 10px;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.trc .swiper-button {
  display: flex;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 5%;
  width: 116px;
  height: 53px;
  z-index: 11;
}

.trc .swiper-button-next:after,
.trc .swiper-button-prev:after {
  display: none;
}

.trc .swiper-button i {
  width: 50px;
  height: 50px;
  color: var(--theme-colour);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 50%;
  border: 1px solid var(--theme-color2);
}

.trc .swiper-button i:hover {
  background-color: var(--theme-color2);
  color: #000;
}

.trc .swiper-button-next,
.trc .swiper-button-prev {
  width: auto;
}

.trc .swiper-button-prev,
.trc .swiper-rtl .swiper-button-next {
  left: auto;
}

.trc .services-slider {
  padding-top: 130px;
  margin-top: -130px;
}

.trc .services-img p {
  font-size: 16px;
  width: 90%;
  margin: auto;
}

.trc .services:hover {
  box-shadow: -1px 10px 19px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: -1px 10px 19px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -1px 10px 19px 0px rgba(0, 0, 0, 0.1);
}

.trc .services-img i {
  background-color: var(--theme-color2);
  width: 110px;
  height: 110px;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 7px solid #fff;
  margin: auto;
}

.trc .services:hover i {
  background-color: var(--theme-colour);
  color: #fff;
}

.trc .services-img h4 {
  padding-top: 14px;
  font-weight: 800;
  padding-bottom: 10px;
}

.trc .services img,
.services figure {
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.trc .services-img a h4:hover {
  color: var(--theme-colour);
}

/* shipping */
.trc.shipping:before {
  background-color: #fff;
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: .7;
}

.trc.shipping {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.trc .shipping-text {
  position: relative;
  background-color: #fff;
  padding: 40px;
  width: 93%;
  overflow: hidden;
}

.trc .shipping-text.two {
  margin-top: 40px;
}

.trc .shipping-text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: 0;
  top: 0;
  opacity: 1;
}

.trc .shipping-text:hover a,
.trc .shipping-text:hover p {
  color: #fff;
}

.trc .shipping-text:hover:before {
  opacity: .8;
  background-color: var(--common-colour);
}

.trc .shipping-text:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--common-colour);
  left: 0;
  top: 0;
  opacity: .8;
  transform: scale(0);
}

.trc .shipping-text.two:before {
  width: 100%;
  opacity: .8;
  background-color: var(--common-colour);
}

.trc .shipping-text a {
  font-size: 30px;
  font-weight: 800;
  padding-bottom: 10px;
  display: block;
  position: relative;
}

.trc .shipping-text p {
  padding-bottom: 26px;
  font-size: 16px;
  position: relative;
}

.trc .shipping-text.two a {
  color: #fff;
}

.trc .shipping-text.two p {
  color: #b2b2b2;
}

.trc .shipping-text span {
  color: #a3a3a3;
  font-size: 40px;
  font-family: var(--theme-font);
  position: relative;
}

.trc .shipping-text.two i {
  width: 120px;
  height: 120px;
}

.trc .shipping-text i:after {
  border: 5px dashed #ffbf14;
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 83%;
  left: -12px;
  top: -14px;
  opacity: 0;
}

.trc .shipping-text:hover i:after {
  opacity: 1;
}

.trc .shipping-text.two i:after {
  opacity: 1;
}

.trc .shipping-text:hover i:after {
  animation: rotate 8s infinite;
}

.trc .shipping-text i {
  background-color: var(--theme-color2);
  width: 120px;
  height: 120px;
  font-size: 60px;
  text-align: center;
  justify-content: right;
  align-items: center;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 132%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  padding-top: 30px;
  padding-right: 20px;
}

.trc .shipping-text a:hover {
  color: var(--theme-colour);
}

/* forwarding */
.trc.forwarding .heading.two h2 {
  font-size: 44px;
  color: #fff;
}

.trc.forwarding {
  padding-bottom: 80px;
  padding-top: 80px;
  position: relative;
  background-size: cover;
}

.trc.forwarding:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .7;
  top: 0;
}

.trc.forwarding .heading.two {
  padding-bottom: 30px;
}

.trc .forwarding-text p {
  padding-bottom: 50px;
  color: #e8e8e8;
}

.trc .forwarding-text {
  position: relative;
}

.trc .pricing .btn {
  background-color: transparent;
  color: #444;
  border: 1px solid var(--theme-colour);
}

.trc .pricing .btn:before {
  background-color: var(--theme-colour);
}

.trc .pricing .btn:after {
  background-color: var(--theme-colour);
}

.trc .pricing .btn:hover:after {
  background-color: #fff;
}

.trc .pricing .btn:hover {
  background-color: var(--theme-colour);
  color: #fff;
}

.trc .pricing-pr:hover .pricing {
  margin-top: 32px;
}

.trc .pricing-pr:hover .pricing.mt-lg-5 {
  margin-top: 0 !important;
}

.trc .pricing-pr {
  min-height: 610px;
}

.trc .btn.two {
  margin-left: 20px;
  border: 1px solid;
  background-color: transparent;
}

.trc .btn.two:hover {
  border-color: var(--common-colour);
}

.trc .pricing {
  position: relative;
  background-color: #fff;
  padding: 40px;
}

.trc .pricing p {
  font-size: 16px;
}

.trc .pricing li i {
  font-size: 20px;
  padding-right: 10px;
  padding-top: 5px;
}

.trc .pricing .check-list li:not(:last-child) {
  padding-bottom: 10px;
}

.trc .pricing h4 {
  font-weight: 800;
  position: relative;
}

.trc .pricing ul.check-list {
  padding-bottom: 30px;
}

.trc .pricing h2 {
  font-size: 46px;
  font-weight: 900;
  text-transform: uppercase;
  padding-top: 8px;
  padding-bottom: 10px;
  position: relative;
}

.trc .pricing h2 span {
  font-size: 16px;
}

.trc .pricing:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 218px;
  background-color: var(--theme-color2);
  z-index: 0;
  right: 0;
  top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 75%);
}

.trc .pricing>i {
  font-size: 34px;
  background-color: var(--theme-colour);
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  border: 3px solid #fff;
  margin-bottom: 20px;
  position: relative;
}

.trc .pricing ul.check-list li p {
  color: #444;
}

.trc a.btn i {
  padding-right: 10px;
  font-size: 22px;
}

.trc ul.list {
  width: 100%;
}

/* company-shipping */
.trc .company-shipping img {
  border-radius: 50%;
  margin-top: -100px;
  border: 3px solid var(--theme-color2);
  padding: 10px;
  width: 170px;
  position: relative;
  z-index: 11;
}

.trc .company-slider .swiper-pagination {
  bottom: 0px;
}

.trc .company-slider {
  padding-bottom: 60px;
}

.trc .company-shipping ul {
  position: relative;
  z-index: 11;
}

.trc .company-shipping span {
  font-size: 14px;
  z-index: 11;
  position: relative;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  padding-bottom: 6px;
  padding-top: 24px;
  color: var(--theme-colour);
}

.trc .company-shipping h4 {
  font-size: 22px;
  font-weight: 800;
  padding-bottom: 18px;
  z-index: 11;
  position: relative;
  text-transform: uppercase;
}

.trc .company-shipping {
  padding: 40px;
  border: 1px solid #e0e0e0;
  padding-top: 0;
  margin-top: 100px;
  position: relative;
}

.trc .company-shipping:before {
  background-color: #e0e0e0;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 8px;
  right: 8px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 11;
}

.trc .company-shipping:hover {
  border: 1px solid var(--common-colour);
}

.trc .company-shipping:after {
  background-color: var(--common-colour);
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
}

.trc .company-shipping:hover:after {
  height: 100%;
}

.trc .company-shipping .dots li {
  position: relative;
  padding-left: 20px;
}

.trc .company-shipping .dots li:not(:last-child) {
  padding-bottom: 10px;
}

.trc .company-shipping .dots li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--theme-color2);
  top: 8px;
  left: 0;
}

.trc .company-shipping:hover .dots li {
  color: #d5d5d5;
}

.trc .company-shipping:hover h4 {
  color: #fff;
}

.trc .company-shipping:hover img {
  padding: 0;
  border: 13px solid #ffbf14;
}

/* Clients */
.trc .crane-img {
  position: relative;
}

.trc .crane-img img {
  position: relative;
  z-index: 1;
}

.trc .crane-img:before {
  content: "";
  position: absolute;
  width: 59%;
  height: 85%;
  border: 18px solid var(--theme-color2);
  left: 5%;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.14);
}

.trc .client-img {
  padding-top: 30px;
  display: flex;
  align-items: center;
}

.trc .client-img h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--theme-colour);
}

.trc .client-img h4 {
  font-weight: bold;
  font-size: 24px;
  padding-bottom: 4px;
}

.trc .client-img img {
  border-radius: 50%;
  margin-right: 16px;
}

.trc .client-reviews {
  border: 1px solid #dfdfdf;
  padding: 40px;
  position: relative;
}

.trc .client-reviews i {
  position: absolute;
  right: 0px;
  bottom: -30px;
  font-size: 90px;
}

.trc .review-slider {
  padding-bottom: 50px;
}

.trc .review-slider .swiper-pagination {
  left: 0;
  bottom: 0;
  text-align: left;
}

.trc .client-reviews h3 {
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 16px;
}

.trc .client-reviews:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: var(--theme-color2);
  bottom: 0;
  right: 0;
}

.trc .client-reviews p {
  font-size: 22px;
  line-height: 36px;
  color: #000;
}

/* shipments */
.trc.shipments {
  position: relative;
  background-repeat: no-repeat;
}

.trc.shipments .heading h2 {
  color: #fff;
}

.trc .shipments-img {
  position: relative;
  background-color: #fff;
  background-position: right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.15);
}

.trc .shipments-video-img {
  width: 37%;
  position: relative;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

.trc .shipments-video-img .video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.trc .shipments-video-img .video i {
  margin: 0;
  background-color: var(--theme-colour);
  border-color: var(--theme-colour);
}

.trc .your-shipment h3 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  position: relative;
}

.trc .your-shipment h3:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: var(--theme-colour);
  bottom: -6px;
}

.trc .your-shipment .your-shipment {
  padding-top: 40px;
  width: 63%;
}

.trc form {
  /* padding-top: 20px; */
}

.trc .your-shipment .from {
  display: flex;
  align-items: center;
  padding-top: 15px;
}

.trc .from h4 {
  width: 100px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.trc .from .nice-select.Advice {
  height: 55px;
  width: 290px;
  margin-right: 16px;
  border-radius: 3px;
  padding-top: 7px;
  border-color: #b6b6b6;
}

.trc .from.method>div {
  padding-right: 19px;
  display: flex;
  align-items: center;
}

.trc .from.method input {
  width: 20px;
  height: 20px;
}

.trc .from.method label {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: normal;
  margin-left: 6px;
  margin-right: 20px;
}

.trc .from.method {
  padding-top: 30px;
  padding-bottom: 30px;
}

.trc .from.method label {
  display: flex;
  font-weight: 900;
}

.trc .from.method input {
  width: 0;
  height: 0;
  opacity: 0;
}

.trc .from.method label>span {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  border: 3px solid #ffbf14;
  margin-right: 10px;
  border-radius: 0px;
  transition: all .3s;
}

.trc .from.method input:checked+label>span {
  border: 8px solid #f4520a;
  animation: bounce 250ms;
}

.trc .from.method input:checked+label>span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 4px;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checked-box 125ms 250ms forwards;
}

@keyframes checked-box {
  0% {
    width: 0;
    height: 0;
    border-color: #212121;
    transform: translate(0, 0) rotate(45deg);
  }

  33% {
    width: 4px;
    height: 0;
    border-color: #212121;
    transform: translate(0, 0) rotate(45deg);
  }

  100% {
    width: 4px;
    height: 8px;
    border-color: #212121;
    transform: translate(0, -8px) rotate(45deg);
  }
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }

  33% {
    transform: scale(.7);
  }

  100% {
    transform: scale(1);
  }
}

.trc .from.parcel>div {
  display: flex;
  height: 55px;
}

.trc .from.parcel {
  padding-top: 0;
  padding-bottom: 20px;
}

.trc .from.parcel>div input {
  width: 140px;
  height: 55px;
  border: 1px solid #b6b6b6;
  padding-left: 10px;
  margin-right: 10px;
  outline: none;
}

.trc .input-weight {
  position: relative;
}

.trc .input-weight span {
  position: absolute;
  right: 0;
  width: 52px;
  height: 55px;
  background-color: var(--theme-color2);
  text-transform: uppercase;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  font-weight: 800;
  right: 11px;
}

.trc .trc .from.parcel {
  padding-top: 0;
}

.trc .add-more {
  padding-left: 100px;
  display: inline-grid;
}

.trc .add-more a.btn {
  margin-top: 36px;
  font-weight: 700;
  justify-content: center;
}

.trc .add-more a.btn i {
  padding: 0;
}

.trc .add-more a {
  font-weight: 800;
  text-transform: uppercase;
}

.trc .add-more a i {
  background-color: #000;
  color: #fff;
  padding: 3px;
  border-radius: 50%;
  margin-right: 10px;
}

/* fun-facts */
.trc .fun-facts i {
  font-size: 65px;
  transform: translatey(10px);
  display: block;
}

.trc .fun-facts-style .fun-facts:not(:last-child):before {
  content: "...";
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 60px;
  color: var(--theme-color2);
  left: 140%;
  top: 33%;
  border-radius: 50%;
}

.trc .fun-facts {
  text-align: center;
  position: relative;
}

.trc .fun-facts h2 {
  font-size: 70px;
  font-weight: 800;
}

.trc .fun-facts h2 sup {
  color: var(--theme-colour);
  font-size: 45px;
}

.trc .fun-facts p {
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}

.trc .fun-facts-style {
  display: flex;
  justify-content: space-between;
}

/* blog */
.trc .blog h6 {
  display: inline;
  font-weight: bold;
  color: #fff;
  background-color: var(--theme-colour);
  padding: 4px 20px;
  position: relative;
  margin-left: 19px;
  z-index: 11;
}

.trc .blog span {
  background-color: #000;
  color: #fff;
  padding: 4px 8px;
  position: relative;
  margin-left: -4px;
  z-index: 11;
}

.trc .blog h4 {
  color: #242424;
  font-size: 26px;
  line-height: 34px;
  font-weight: 800;
  padding-top: 20px;
  padding-bottom: 12px;
}

.trc .blog h4 a:hover {
  color: var(--theme-colour);
}

.trc .blog p {
  font-size: 16px;
  width: 95%;
}

.trc .blog figure {
  position: relative;
  margin-top: -10px;
}

.trc .blog figure:before {
  background-color: var(--theme-colour);
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  opacity: 0;
  bottom: 0;
}

.trc .blog:hover figure:before {
  height: 100%;
  opacity: .6;
}

.trc .blog figure:after {
  background-color: var(--theme-color2);
  content: "";
  position: absolute;
  width: 0px;
  right: 0;
  height: 120px;
  bottom: -1px;
  right: -1px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.trc .blog:hover figure:after {
  width: 120px;
}

.trc .blog img {
  width: 100%;
}

.trc .blog-img>a {
  position: absolute;
  bottom: 19px;
  right: 21px;
  z-index: 11111;
  font-size: 18px;
  opacity: 0;
}

.trc .blog:hover .blog-img>a {
  opacity: 1;
}

.trc .blog-img {
  position: relative;
}

.trc .center {
  text-align: center;
  margin-top: 60px;
}

.trc .track-your-order {
  display: flex;
  align-items: center;
  background-color: var(--theme-color2);
}

.trc .track-your-order>div {
  padding: 40px;
}

.trc img.track-your-order-2 {
  position: absolute;
  right: 31%;
}

.trc .track-your-order h2 {
  font-size: 40px;
  line-height: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
  font-weight: 800;
}

.trc img.track-your-order-1 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
}

.trc .track-your-order h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--theme-colour);
  position: relative;
}

.trc .track-your-order h3:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: var(--theme-colour);
  bottom: -6px;
}

/* footer */
footer.trc {
  position: relative;
}

footer.trc a,
footer.trc h1,
footer.trc h2,
footer.trc h3,
footer.trc h4,
footer.trc h5,
footer.trc h6,
footer.trc p {
  color: #ffff;
}

footer.trc a {
  display: inline-block;
}

footer.trc:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--common-colour);
  opacity: .7;
  top: 0;
}

.trc .footer-logo {
  position: relative;
}

.trc .footer-logo p {
  color: #e2e2e2;
  padding-bottom: 40px;
  padding-top: 26px;

}

.trc .footer-logo ul.social-media {
  justify-content: left;
}

.trc .footer-logo ul.social-media a i {
  color: #fff;
}

.trc .footer-logo ul.social-media a i {
  padding: 0;
  padding-right: 40px;
  font-size: 20px;
}

.trc .footer-logo ul.social-media li:not(:last-child):before {
  background-color: #fff;
  right: 18px;
  top: 3px;
}

.trc .footer-logo ul.social-media a i.flaticon-twitter {
  font-size: 18px;
}

.trc .get-in-touch {
  position: relative;
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  width: 80%;
}

.trc .get-in-touch svg {
  fill: #ffee02;
  height: auto;
}

.trc .get-in-touch i {
  background-color: var(--theme-colour);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  margin-right: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
}

.trc .get-in-touch h6 {
  font-size: 16px;
}

.trc .get-in-touch h6 a {
  padding-bottom: 4px;
}

.trc .get-in-touch h6 a,
.get-in-touch a,
.trc .footer-bottom-text ul a,
.trc .get-in-touch span,
.trc .get-in-touch h6,
.trc .footer-bottom-text h6 {
  color: #e2e2e2;
}

.trc .get-in-touch h6 a:hover,
.trc .widget-title li a:hover,
.trc .get-in-touch a:hover {
  color: var(--theme-color2);
}

.trc .widget-title h3 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding-bottom: 30px;
}

.trc .widget-title {
  position: relative;
  z-index: 111;
}

/* 26. widget-title */
.trc .widget-title h3 {
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.trc .widget-title ul {
  display: flex;
  flex-wrap: wrap;
}

.trc .widget-title ul li {
  width: 50%;
}

.trc .widget-title li a {
  color: #e8e8e8;
  /* margin-left: 15px; */
  padding-bottom: 6px;
}

.trc .widget-title ul li:not(:last-child) {
  padding-bottom: 20px;
}

.trc .widget-title li i {
  color: var(--theme-color2);
}

.trc .widget-title .quick li {
  margin-bottom: 0px;
}

body footer.trc .widget ul.quick li a:before {
  content: none !important;
}

.trc .subscribe {
  position: relative;
  padding: 28px;
  background-color: var(--theme-color2);
}

.trc div.subscribe h3 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
  padding-bottom: 20px;
}

.trc div.subscribe span>input {
  width: 100%;
  border: 0;
  height: 61px;
  padding-left: 20px;
}

.trc div.subscribe input.btn {
  border-radius: 0;
  position: absolute;
  right: 10px;
  bottom: 37px;
  padding: 13px 26px;
  height: auto;
}

.trc ul.image-gallery li {
  width: 130px;
  height: 80px;
}

.trc ul.image-gallery li img,
.trc ul.image-gallery li figure {
  width: 100%;
  height: 100px;
}

.trc ul.image-gallery li {
  width: 17%;
  height: 80px;
  position: relative;
}

.trc ul.image-gallery {
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.trc .gallery .gallery-item dt:before {
  background-color: var(--theme-colour);
  content: "";
  position: absolute;
  /* width: 100%; */
  width: 93%;
  height: 0%;
  bottom: 0;
  top: 0;
  opacity: .8;
}

.trc .gallery .gallery-item dt:hover:before {
  height: 100%;

  top: 0;
}

.trc ul.image-gallery li i {
  position: absolute;
  z-index: 1;
  color: #fff;
  font-size: 26px;
  transform: scale(0) translate(-50%, -50%);
  top: 46%;
  left: 39%;
}

.trc ul.image-gallery li:hover i {
  transform: scale(1.0);
}

.trc .pt-80 {
  padding-top: 80px;
}

.trc .footer-bottom {
  padding-top: 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
}

.trc .footer-bottom ul {
  display: flex;
}

.trc .footer-bottom ul li {
  padding-left: 30px;
  color: #fff;
}

.trc .footer-bottom ul li a {
  color: #fff;
  text-transform: uppercase;
}

.trc .footer-bottom p {
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
}

.trc .footer-bottom ul li a:hover {
  color: var(--theme-color2);
}

/* transition */
.content-header a,
.swiper-button i,
.shipping-text:before,
.shipping-text p,
.pricing,
.shipping-text p,
.blog-img>a,
.widget-title a,
ul.image-gallery li i,
ul.image-gallery li:before,
.footer-bottom ul li a,
.shipping-text a,
.btn,
ul.social-media li a i,
.btn:before,
.hover-img img,
.services,
.services-img i,
.services-img a h4,
.services img,
.company-shipping img,
.company-shipping:after,
.company-shipping,
.company-shipping h4,
.company-shipping li,
.blog h4 a,
.blog figure:before,
.blog figure:after {
  transition: .4s ease-in-out;
}

/* styling overwritting */
.trc dl,
footer.trc .widget.widget_media_gallery {
  margin-bottom: 0;
}

.trc .gallery .gallery-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.trc .gallery .gallery-item a:before {
  color: #fff;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  font-size: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  left: 42%;
  top: 32%;
}

.trc .gallery .gallery-item:hover a:before {
  opacity: 1;
}

.trc .subscribe-data .wpcf7-form-control-wrap {
  float: none;
}

.trc .subscribe-data .wpcf7 form .subscribe input[type="submit"]:hover {
  background-color: transparent !important;
}

.widget {
  margin-bottom: 0;
}

.wpcf7-spinner {
  display: inline;
}