/*** 

====================================================================
CSS FILE IMPORT
====================================================================

 ***/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url("./carousel-styles.css");
@import url("./core-styles.css");
@import url("./header-styles.css");
@import url("./footer-styles.css");

/*** 

====================================================================
Fonts
====================================================================

 ***/

@font-face {
  font-family: "quicksand-medium-font";
  src: url("../fonts/Quicksand-Medium/Quicksand-Medium.woff2") format("woff2"),
    url("../fonts/Quicksand-Medium/Quicksand-Medium.woff") format("woff"),
    url("../fonts/Quicksand-Medium/Quicksand-Medium.ttf") format("truetype"),
    url("../fonts/Quicksand-Medium/Quicksand-Medium.eot")
      format("embedded-opentype"),
    url("../fonts/Quicksand-Medium/Quicksand-Medium.svg") format("svg");
}

@font-face {
  font-family: "quicksand-bold-font";
  src: url("../fonts/Quick-Bold/Quicksand-Bold.woff2") format("woff2"),
    url("../fonts/Quick-Bold/Quicksand-Bold.woff") format("woff"),
    url("../fonts/Quick-Bold/Quicksand-Bold.ttf") format("truetype"),
    url("../fonts/Quick-Bold/Quicksand-Bold.eot") format("embedded-opentype"),
    url("../fonts/Quick-Bold/Quicksand-Bold.svg") format("svg");
}

/*** 

====================================================================
Colors Variables
====================================================================

 ***/

:root {
  /* Brand Colors */
  --primary-color: #c46228;
  --secondary-color: #231f20;
  --terracotta-clay-color: #c46228;
  --alpaca-black-color: #231f20;
  --cloud-white-color: #a7a7a7;

  /* Accent Color */
  --highland-green-color: #5e8c61;
  --andean-sky-blue-color: #89cff0;
  --golden-sun-yellow-color: #f2ce1b;

  /* Text Color */
  --dark-grey-color: #26262c;
  --medium-grey-color: #758599;
  --light-rey-color: #9ca3af;
  --outline-stroke-color: #05588e29;

  /* Default Color */
  --white-color: #ffffff;
  --black-color: #000;
  --body: #f5f5f5;
}

/*** 
 
 ====================================================================
 Reset
 ====================================================================
 
  ***/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
  box-sizing: border-box;
}

/*** 
 
====================================================================
Global Settings
====================================================================
 
***/

body {
  font-family: "quicksand-medium-font", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 135%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  background-color: var(--body);
}

html {
  scroll-behavior: smooth;
}

a {
  font-family: "quicksand-medium-font", sans-serif;
  text-decoration: none;
  color: var(--medium-grey-color);
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

input,
select,
button {
  font-family: "quicksand-medium-font", sans-serif;
}

textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

.theme-btn a {
  font-family: "quicksand-bold-font";
  background: var(--terracotta-clay-color);
  color: var(--body);
  padding: 10px 27px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
.btn-style-one a {
  font-family: "quicksand-bold-font";
  background: var(--terracotta-clay-color);
  color: var(--body);
  padding: 10px 27px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
.btn-style-one a span {
  font-size: 14px;
  font-weight: 700;
  color: var(--body);
  font-family: "quicksand-bold-font";
}
.theme-btn a:hover,
.btn-style-one a:hover {
  background-color: var(--alpaca-black-color);
}



.btn-style-one a span {
  position: relative;
  padding-right: 20px;
}
.btn-style-one a span::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  width: 18px;
  height: 18px;
  background-image: url("../images/btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: .3s;
}
.btn-style-one a:hover span::after {
    rotate: 45deg;
}
.btn-style-one.white a {
    background: transparent;
    border: 1px solid var(--white-color);
}
.btn-style-one.white a:hover{
    border-color: var(--terracotta-clay-color);
    background-color: var(--terracotta-clay-color);
}
.black-bg {
    width: fit-content;
    background: var(--black-color);
    padding: 10px 20px;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

p,
li,
span {
  margin: 0px;
  font-family: "quicksand-medium-font", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  padding-bottom: 15px;
  color: var(--medium-grey-color);
}

.auto-container {
  position: static;
  max-width: 1340px;
  padding: 0px 30px;
  margin: 0 auto;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "quicksand-bold-font", sans-serif;
  position: relative;
  background: none;
  margin-bottom: 0px;
  padding-bottom: 15px;
  color: var(--alpaca-black-color);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 1.8725rem + 3.1373vw, 4.5rem);
  line-height: 125%;
}

h2 {
  font-size: clamp(1.875rem, 1.5221rem + 1.7647vw, 3rem);
  line-height: 125%;
}

h3 {
  font-size: clamp(1.5625rem, 1.2684rem + 1.4706vw, 2.5rem);
  line-height: 130%;
}

h4 {
  font-size: clamp(1.375rem, 1.1005rem + 1.3725vw, 2.25rem);
  line-height: 130%;
}

h5 {
  font-size: clamp(1.25rem, 1.0147rem + 1.1765vw, 2rem);
  line-height: 130%;
}

h6 {
  font-size: clamp(1.25rem, 1.0931rem + 0.7843vw, 1.75rem);
  line-height: 130%;
}

.xlg-font {
  /* 48  -  30 */
  font-size: clamp(1.875rem, 1.5221rem + 1.7647vw, 3rem);
  line-height: 125%;
  font-weight: 700;
  letter-spacing: 0px;
}

.lg-font {
  /* 40  -  25 */
  font-size: clamp(1.5625rem, 1.2684rem + 1.4706vw, 2.5rem);
  line-height: 130%;
  font-weight: 700;
  letter-spacing: 0px;
}

.rg-font {
  /* 36  -  22 */
  font-size: clamp(1.375rem, 1.1005rem + 1.3725vw, 2.25rem);
  line-height: 130%;
  font-weight: 700;
  letter-spacing: 0px;
}

.md-font {
  /* 32  -  20 */
  font-size: clamp(1.25rem, 1.0147rem + 1.1765vw, 2rem);
  line-height: 130%;
  font-weight: 700;
  letter-spacing: 0px;
}

.tg-font {
  /* 28  -  20 */
  font-size: clamp(1.25rem, 1.0931rem + 0.7843vw, 1.75rem);
  line-height: 130%;
  font-weight: 700;
  letter-spacing: 0px;
}

.body-small {
  /* 24  -  20 */
  font-size: clamp(1.125rem, 1.0074rem + 0.5882vw, 1.5rem);
  line-height: 140%;
  font-weight: 700;
  letter-spacing: 0px;
}

.md-body {
  /* 20  -  18 */
  font-size: clamp(1.125rem, 1.0858rem + 0.1961vw, 1.25rem);
  line-height: 140%;
  font-weight: 700;
  letter-spacing: 0px;
}

.light-font {
  /* 18  -  18 */
  font-size: 18px;
  line-height: 150%;
  font-weight: 700;
  letter-spacing: 0px;
}

.sm-font .sm-font p {
  font-family: "quicksand-medium-font", sans-serif;
  /* 16px */
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  letter-spacing: 0px;
}

.s-font .s-font p {
  font-family: "quicksand-medium-font", sans-serif;
  /* 14px */
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
  letter-spacing: 0px;
}

.sub-title {
  font-family: "quicksand-medium-font", sans-serif;
  /* 14px */
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--terracotta-clay-color);
}


.p-tb{
    padding-top: clamp(3.125rem, 1.7525rem + 6.8627vw, 7.5rem);
    padding-bottom: clamp(3.125rem, 1.7525rem + 6.8627vw, 7.5rem);
}
.p-b{
    padding-bottom: clamp(3.125rem, 1.7525rem + 6.8627vw, 7.5rem);
}
.p-t{
    padding-top: clamp(3.125rem, 1.7525rem + 6.8627vw, 7.5rem);
}


.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.clear-fix {
  clear: both;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/*** 
 
====================================================================
flex-css
====================================================================
 
***/
.dy-flex {
  display: flex;
  flex-wrap: wrap;
}

.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/****** 
====================================================================
Wordpress Core 
====================================================================
******/

.alignnone {
  margin: 15px 20px 15px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 15px auto 15px auto;
}

.alignright {
  float: right;
  margin: 5px 0 10px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 10px 0;
}

.aligncenter {
  display: block;
  margin: 15px auto 15px auto;
}

a img.alignright {
  float: right;
  margin: 5px 0 10px 20px;
}

a img.alignnone {
  margin: 15px 20px 15px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 10px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
  /* Image does not overflow the content area */
  padding: 7px 7px 3px 7px;
  text-align: center;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.wp-caption.alignnone {
  margin: 15px 20px 15px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 10px 0;
}

.wp-caption.alignright {
  margin: 5px 0 10px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  padding: 6px 4px 4px 4px;
  text-align: center;
}

.sticky .post-title {
  padding-left: 30px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  clip: auto !important;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  -ms-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  -o-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

/****** Comments ******/

#respond ul {
  list-style-type: none;
}

#respond .logged-in {
  margin: 0 0 12px 0;
}

#commentform input[type="text"],
#commentform .input-comments {
  width: 198px;
  float: left;
  margin-right: 13px;
}

#commentform label {
  display: block;
}

#commentform .url-comments {
  margin-right: 0px !important;
}

#commentform li.middle {
  margin-right: 0px !important;
}

.comments-closed {
  margin: 40px 0 40px 0;
}

ol.commentlist {
  list-style: none;
}

ol.commentlist li div.vcard cite.fn {
  font-style: normal;
}

ol.commentlist li div.vcard img.avatar {
  float: left;
  margin: 0 10px 0px 0px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

ol.commentlist li div.commentmetadata {
  padding: 8px 0 14px 0;
}

ol.commentlist li div.comment-meta {
  font-size: 14px;
  color: var(--color-text);
}

ol.commentlist li div.comment-meta a,
ol.commentlist li div.comment-meta a:visited {
  color: var(--color-text);
}

ol.commentlist li div.comment-meta a:hover {
  color: var(--color-secondary);
}

ol.commentlist li div.reply {
  font-size: 14px;
  padding: 0px 0 40px 0;
  font-weight: 700;
}

ol.commentlist li ul.children {
  list-style: none;
  margin: 10px 0 0;
}

ol.commentlist li ul.children li.depth-2 {
  margin: 0 0 0 35px;
}

ol.commentlist li ul.children li.depth-3 {
  margin: 0 0 0 35px;
}

ol.commentlist li ul.children li.depth-4 {
  margin: 0 0 0 35px;
}

ol.commentlist li ul.children li.depth-5 {
  margin: 0 0 0 35px;
}

ol.commentlist li.pingback {
  margin: 0 0 40px 0;
}

.clearfix {
  clear: both;
  padding-bottom: 20px;
}

/*** 

====================================================================
			Table Default Styling
====================================================================

***/


thead th {
    text-align: left;
    padding: 0px !important;
}

thead {
    background: #F5F5F5 !important;
    box-shadow: 0px -1px 12px 0px #0000000A;
}
thead th {
    color: #000 !important;
    font-family: 'quicksand-medium-font' !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 150% !important;
    padding: 15px 24px !important;
}

table.table.table-cart.table-mobile {
    width: 100%;
}
tr{
  display: block;
}
tbody tr td {
    padding: 0px 20px 0px 20px;
}
tbody tr {
    border: 1px solid #05588E1F;
    margin: 17px 20px;
    border-radius: 10px;
    padding: 18px 0px;
}


thead th:first-child {
    flex: auto;
}

thead tr {
    display: flex;
}

















ul {
  margin: 0px 0px 20px 30px;
}

ul li {
  list-style-type: disc;
}

ol {
  margin: 0px 0px 20px 30px;
}

ol li {
  list-style-type: decimal;
}

/*** 

====================================================================
	Default Form Style
====================================================================

***/

form {
  position: relative;
}

::placeholder {
  color: var(--color-text);
}

form label.gfield_label.gform-field-label,
form span label.gform-field-label,
form legend.gfield_label {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 12px;
  display: block;
  margin: 0px;
}

form input,
form select,
form textarea {
  color: var(--medium-grey-color) !important;
  font-size: 16px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
   font-family: 'quicksand-medium-font', sans-serif !important;
  border-radius: 12px !important;
  border: 0px !important;
  padding: 0px !important;
  outline: none !important;
  background-color: #fff !important;
  margin-bottom: 30px !important;
  outline: 0px !important;
  box-shadow: none !important;
  border: 1px solid var(--outline-stroke-color) !important;
  padding: 14px 24px !important;
  height: 56px;
}

form select option {
  padding: 10px 20px !important;
}

form input[type="text"],
form input[type="password"],
form input[type="tel"],
form input[type="email"],
form input[type="url"],
form input[type="search"],
form textarea,
form input.file,
form select {
  width: 100%;
}

input[type="submit"] {
  border: 0px !important;
  background: var(--terracotta-clay-color) !important;
  padding: 0px !important;
  font-size: 16px !important;
  line-height: 22px !important;
  font-weight: 500 !important;
  font-family: 'quicksand-medium-font', sans-serif !important;
  cursor: pointer !important;
  transition: 0.3s;
  color: var(--white-color) !important;
  border-radius: 8px !important;
  width: 137px !important;
  height: 48px !important;
  outline: 0px !important;
  box-shadow: none !important;
  letter-spacing: 0px !important;
  margin-bottom: 0px !important;

}

.gform_fields.top_label {
  gap: 50px !important;
  row-gap: 0px !important;
}

input[type="submit"]:hover {
  background: var(--alpaca-black-color) !important;
}

form input[type="text"]:focus,
form input[type="password"]:focus,
form input[type="tel"]:focus,
form input[type="email"]:focus,
form input[type="search"]:focus,
form select:focus,
form textarea:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: none;
  border-color: var(--primary-color) !important;
}

form select {
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: #ffffff url("../images/arrow-select.svg") right center no-repeat !important;
  cursor: pointer;
  background-position: 99% 48% !important;
  background-repeat: no-repeat !important;
  background-size: 12px !important;
  position: relative;
}

form select option {
  padding-left: 10px;
  cursor: pointer;
}

form textarea {
  height: 108px;
  resize: none;
}

form button,
form input[type="submit"],
form .theme-btn {
  position: relative;
  display: inline-block;
  margin: 0;
}

form .radio-block {
  position: relative;
  display: inline-block;
  margin-right: 50px;
}

/*** 

====================================================================
	About Css
====================================================================

***/

.default-content-box {
  padding-bottom: 50px;
  padding-top: 60px;
}

section.sample-page {
  padding-top: 50px;
}

/* about--sec */
.same-about-typo h3 {
  text-transform: uppercase;
  padding-bottom: 40px;
}

.same-about-typo p {
  padding-bottom: 0px;
  color: #072843;
}

.same-padding {
  padding: 90px 0px 58px;
}

.bg-blue h2,
.bg-blue p,
.bg-dark h2,
.bg-dark p {
  color: #fff;
}

.row-gap.dy-flex {
  gap: 3.4%;
  row-gap: 30px;
}

.col-two-colum {
  width: 48.3%;
}

.b-padding {
  padding-top: 70px;
}

.b-padding p {
  margin-bottom: 0px;
}

.col-three-colum {
  width: 31%;
}

.col-half-colum {
  width: 31%;
}

.col-half-second-colum {
  width: 65.5%;
}

.three-reverse-colum .row-gap.dy-flex {
  flex-direction: row-reverse;
}

.col-four-colum {
  width: 22.43%;
}

.grey {
  background-color: #eeeeee;
  border-radius: 12px;
  margin-bottom: 30px;
}

.grandiant-blue {
  background: linear-gradient(
    180deg,
    rgba(99, 124, 140, 1) 0%,
    rgba(7, 40, 67, 1) 100%
  );
  border-radius: 12px;
  margin-bottom: 30px;
}

.full-blue {
  background-color: #072843;
  border-radius: 12px;
  margin-bottom: 30px;
}

.grandiant-orange {
  background: linear-gradient(
    180deg,
    rgba(241, 171, 126, 1) 0%,
    rgba(255, 108, 14, 1) 100%
  );
  border-radius: 12px;
  margin-bottom: 30px;
}

.full-orange {
  background-color: #ff6c0e;
  border-radius: 12px;
  margin-bottom: 30px;
}

.b-dark-bg {
  background-color: #000;
}

.full-orange h3,
.full-orange p,
.grandiant-orange h3,
.grandiant-orange p,
.grandiant-blue h3,
.grandiant-blue p,
.full-blue h3,
.full-blue p {
  color: #fff;
}

.same-about-typo .style-btn {
  margin-top: 33px;
}

.quote-sec h2 {
  text-align: center;
  max-width: 1283px;
  margin: auto;
  text-transform: uppercase;
  padding-bottom: 0px;
  color: #ff6c0e;
}

.quote-sec h5 {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 0px;
  font-size: 25px;
  line-height: 25px;
  padding-bottom: 22px;
}

blockquote {
  font-size: 32px;
  line-height: 36px;
  font-family: "akhand-bold";
  text-align: center;
  max-width: 1290px;
  margin: auto;
  color: #637c8c;
}

.quote-sec img {
  width: 70px !important;
  margin: auto;
}

.quote-sec {
  padding-top: 104px;
}

.popups-default {
  display: flex;
  gap: 20px;
}

.popups-default a {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 10px 20px;
  text-transform: capitalize;
}

.popups-default a:hover {
  color: #000;
  background-color: transparent;
}

div#iframe-video .modal-contents {
  width: 85%;
  height: 85vh;
}

div#iframe-video iframe,
div#iframe-video .video-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-contents span.close {
  background: #000;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 17px;
  transition: 0.3s;
}

.modal-contents span.close:hover {
  rotate: 180deg;
}

.light-box.daefault {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tabs-defaut ul {
  display: flex;
  gap: 20px;
  padding: 13px 20px;
  text-transform: capitalize;
}

.tabs-defaut ul li {
  cursor: pointer;
}

/*** 

====================================================================
Breadcrumbs
====================================================================

 ***/

.bread-crumbs ul {
  margin: 0px;
  display: flex;
  gap: 20px;
}

.bread-crumbs ul li {
  list-style: none;
}

.bread-crumbs ul a {
    color: #758599;
    position: relative;
    font-family: 'quicksand-medium-font';
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.bread-crumbs ul a:hover {
  color: var(--primary-color);
}

.bread-crumbs ul a::after {
    content: "";
    width: 1px;
    height: 17px;
    position: absolute;
    top: 5px;
    right: -10px;
    background-color: #758599;
    rotate: 20deg;
}

.bread-crumbs ul li:last-child a::after {
  display: none;
}

.bread-crumbs ul li:last-child a {
  pointer-events: none;
  color: var(--primary-color);
  font-weight: 700;
  font-family: 'quicksand-bold-font', sans-serif;
}

.about-banner h1 {
  padding-bottom: 16px;
}

.first-box {
  padding-top: 0px;
}

/*** 

====================================================================
       Site Map
====================================================================

 ***/

.row--site {
  padding: 30px 0px;
}

.col-heading {
  width: 30%;
}

.col-links-site {
  width: 70%;
}

.col-links-site ul {
  display: flex;
  row-gap: 16px;
  flex-wrap: wrap;
}

.col-links-site li {
  width: 34%;
  list-style: none;
}

.bullet-icon a {
  padding-left: 15px;
}

.col-links-site li a {
  font-size: 14px;
  line-height: 17px;
  color: #475361;
  position: relative;
}

.col-links-site ul {
  list-style: none;
  margin: 0;
}

.bullet-icon a::after {
  content: ">";
  position: absolute;
  width: 6px;
  height: 16px;
  /* background-image: url('../images/angleaa.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; */
  left: 0px;
  top: 0;
}

.row--site {
  border-bottom: 1px solid #475361;
}

.site-map,
.error-sec {
  padding: 60px 0px;
}

.site-map h2 {
  padding-bottom: 30px;
}

/*** 

====================================================================
  404 Page Css
====================================================================

 ***/

.error-sec h2 {
  font-size: 160px;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px black;
  color: white;
  text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000,
    -1px 1px 0 #000, 1px 1px 0 #000;
  text-align: center;
  line-height: 200px;
}

.error-sec h3 {
  text-align: center;
  text-transform: uppercase;
}

.error-sec p {
  text-align: center;
}

.error-sec .theme-btn {
  text-align: center;
  margin-top: 20px;
}



body {
    overflow-x: hidden;
}