@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}

button:focus-visible {
  outline: none !important;
}
a {
  text-decoration: none;
}

html, body {
    scroll-behavior: smooth;
}

body {
    color: #151515;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.row {
    margin: 0px;
}

a {
    color: #FC0;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: #000000;
}

input:focus, textarea:focus, button:focus {
    border: 0;
    outline: 0;
    box-shadow: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
h2 {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 69.6px; 
    text-transform: uppercase;
}
h3 {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 69.6px; 
    text-transform: uppercase;
}
h4 {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 69.6px; 
    text-transform: uppercase;
}
h5 {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 69.6px; 
    text-transform: uppercase;
}
h6 {
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 69.6px; 
    text-transform: uppercase;
}
h2 strong {
    font-weight: 700;
}
.container {
    max-width: 1500px;
    width: 100%;
}

ul {
    margin: 0px;
    padding: 0;
}

ul li {
    list-style: none;
}
.single-detail-page ul li {
    background-image: url('../images/square-tick.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    color: #000;
    text-align: justify;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    margin: 12px 0px;
    padding-left: 35px;
}
/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #FFA200;
}

::-webkit-scrollbar-thumb {
    background: #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFA200;
}

p {
    margin: 0;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px; 
}