/* ===================================
   1. RESET
=================================== */

html {
  box-sizing: border-box;
  font-size: 16px;
  overflow-x:hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

ol,
ul {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

/* ===================================
   2. BODY
=================================== */

body {
  background: #eee;
  color: #000;
  font-family: "Poppins", "Didact Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: #ff214f;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:active {
  color: #ff214f;
}

/* ===================================
   3. TYPOGRAPHY
=================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Didact Gothic", sans-serif;
  font-weight: 600;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

/* Mobile First */

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.56rem;
  } /* 41px */
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
}

/* ===================================
   4. LISTS
=================================== */

ul,
ol {
  margin: 1.25rem 0;
  padding-left: 2rem;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li {
  margin-bottom: 1rem;
}

ul ul,
ol ol {
  margin-top: 0.5rem;
}

ul[role="alert"] {
  color: red;
  list-style: none;
  padding: 0;
}

/* ===================================
   5. IMAGES & ICONS
=================================== */

[class^="icon-"],
[class*=" icon-"] {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
}

/* ===================================
   6. UTILITIES
=================================== */

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.marginauto {
  margin-inline: auto !important;
}

.fullheight {
  height: 100% !important;
}

/* ===================================
   7. FLEX HELPERS
=================================== */

.vertical-align-all,
.only-vertical-align {
  display: flex;
  align-items: center;
  justify-content: center;
}

.only-vertical-align {
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .vertical-align-no-xs {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .vertical-align-no-sm {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .row-eq-height-no-sm {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .row-eq-height,
  .row-eq-height-no-md {
    display: flex;
  }
}

/* ===================================
   8. WRAPPER & CONTAINER
=================================== */

#wrapper {
  width: 100%;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1500px;
  }
}

/* ===================================
   9. SECTIONS
=================================== */

.section {
  padding: 25px 0;
}

.section.largepadding {
  padding: 60px 0;
  text-align: center;
  background-size: cover !important;
}

.section.lesspadding,
.section.toppadding {
  padding: 45px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section.largepadding {
    min-height: 550px;
    padding: 245px 0;
  }

  .section.largepaddinghome {
    padding: 125px 0;
  }

  .section.toppadding {
    padding: 215px 0 0;
  }
}

/* ===================================
   10. BUTTONS
=================================== */
.tel {
  color:#e70909;
  font-weight:bold;
  font-size:18px;
}
.tel span {
  margin: 0 10px 0;
}
.btn,
.btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background: #ff214f;
  color: #fff;
  border: 0;
  font-size: 17px;
  border-radius: 999px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover,
.btn-primary:hover {
  background: #004e90;
  color: #fff;
  text-decoration: none;
}

.btn:focus,
.btn:active {
  background: #004e90;
  color: #fff;
  outline: none;
}

.btn i {
  margin-inline: 10px;
}

.btn-secondary {
  background: #009432;
  color: #fff;
}

.btn-secondary:hover {
  background: #007e2b;
}

.btn-tertiary {
  padding: 15px 25px;
  background: #4caf50;
  color: #fff;
  border: 0;
  border-radius: 15px;
  font-size: 1.5rem;
}

.btn-tertiary:hover {
  background: #3e8e41;
}

/* ===================================
   11. SHAREPOINT HEADER
=================================== */

#sharepointHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  min-height: 50px;
  background: #333;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 5;
}

#sharepointHeader > div {
  flex: 1 1 auto;
}

.fxs-topbar-placeholder {
  display: none;
}

/* ===================================
   LOGO
=================================== */

#sharepointHeader #logo {
  flex: 0 0 auto;
}

#sharepointHeader h1 {
  margin: 0;
}

#sharepointHeader h1.header-logo a {
  color: #fff;

  display: inline-flex;
  align-items: center;

  min-height: 40px;

  padding: 0 15px;

  font-size: 15px;
  font-weight: 600;

  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

/* ===================================
   SEARCH BOX
=================================== */

#sharepointHeader #searchbox {
  order: 3;
  width: 100%;
  margin-top: 0.75rem;
}

#sharepointHeader #searchForm {
  display: flex;
  align-items: center;

  height: 38px;

  padding: 0 10px;

  background: #ccc;
  border-radius: 2px;
}

#sharepointHeader #searchForm input[type="text"] {
  flex: 1;

  border: 0;
  background: transparent;

  color: #2b77d3;
  font-style: italic;
}

#sharepointHeader #searchForm input:focus {
  outline: none;
}

#sharepointHeader #searchForm button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

#sharepointHeader #searchForm i {
  color: #2b77d3;
}

/* ===================================
   BUTTONS
=================================== */

#sharepointHeader #buttonsContainer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#sharepointHeader #buttons {
  display: flex;
  align-items: center;
}

#sharepointHeader #buttons > div {
  width: 48px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#sharepointHeader #buttons i {
  color: #fff;
  font-size: 18px;
}

/* ===================================
   USER PROFILE
=================================== */

#sharepointHeader #user {
  display: flex;
  align-items: center;

  margin-left: 1rem;

  color: #fff;
}

#sharepointHeader #user a {
  color: inherit;
}

#sharepointHeader .userAvatar {
  width: 34px;
  height: 34px;

  overflow: hidden;

  border-radius: 50%;

  background: #697585;

  margin-left: 10px;
}

#sharepointHeader .Avatar {
  width: 100%;
  height: 100%;

  background: url("./img/avatar.png") center center no-repeat;
  background-size: cover;
}

#sharepointHeader .userDetails {
  font-size: 10px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #sharepointHeader {
    flex-wrap: nowrap;
  }

  #sharepointHeader #searchbox {
    order: initial;
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ===================================
   12. SITE HEADER
=================================== */

header {
  width: 100%;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 1rem;

  padding-top: 25px;
  padding-bottom: 25px;
}

/* ===================================
   LOGO
=================================== */

header .logo {
  text-align: center;
}

header .logo a {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
}

header .logo span {
  display: block;

  font-size: 12px;
  font-weight: 700;

  color: #000;
}

header .logo a:hover {
  color: #ff214f;
  text-decoration: none;
}

/* ===================================
   TOP NAVIGATION
=================================== */

header .topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

header .topnav a {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===================================
   LANGUAGES
=================================== */

header .languages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

header .languages img {
  width: 30px;
  height: 17px;
}

@media (min-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ===================================
   13. MAIN NAVIGATION
=================================== */

#nav {
  position: relative;
  z-index: 2;

  width: 100%;

  background: #fff;

  border-top: 3px solid #ddd;

  transition: all 0.4s ease;
}

#nav.sticky {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  border-bottom: 3px solid #ccc;

  z-index: 100;
}

#nav .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* ===================================
   NAV LOGO
=================================== */

#nav .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-grow: 2;
}

#nav .logo img {
  max-width: 40px;
}

#nav .logo a {
  color: #000;
}

#nav .logo i {
  font-size: 25px;
}

#nav .logo span {
  display: block;

  font-size: 15px;
  font-weight: 600;

  color: #ff214f;
}

/* ===================================
   MOBILE TOGGLE
=================================== */

.navbar-toggler {
  background: transparent;
  border: 0;
display:none;
  cursor: pointer;

  font-size: 24px;
  color: #000;
}

/* ===================================
   MOBILE NAV DEFAULT
=================================== */

.navbar-collapse {
  display: none;

  width: 100%;
}

.navbar-collapse.is-open {
  display: block;
}

#navbarNavDropdown {
  width: 100%;

  margin-top: 1rem;

  background: #333;
}

#navbarNavDropdown ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

#navbarNavDropdown li {
  margin: 0;
}

#navbarNavDropdown a.nav-link {
  display: block;

  padding: 14px 20px;

  color: #fff;

  border-top: 1px solid #555;

  transition: 0.3s;
}

#navbarNavDropdown a.nav-link:hover {
  color: #ff214f;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

/* ===================================
   SEARCH BOX
=================================== */

#nav .searchbox {
  position: relative;

  width: 100%;
  margin-top: 1rem;

  background: #eee;
}

#nav .searchbox input[type="text"] {
  width: 100%;

  height: 40px;

  padding: 0 40px 0 15px;

  border: 0;

  background: transparent;
}

#nav .searchbox input:focus {
  outline: none;
}

#nav .searchbox button {
  position: absolute;

  top: 50%;
  right: 10px;

  transform: translateY(-50%);

  border: 0;
  background: transparent;
}

@media (min-width: 1200px) {
  .navbar-toggler {
    display: none;
  }

  .navbar-collapse {
    display: block !important;
    width: auto;
  }

  #navbarNavDropdown {
    width: auto;
    background: transparent;
    margin-top: 0;
  }

  #navbarNavDropdown .navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  #navbarNavDropdown a.nav-link {
    position: relative;
    color: #333;
    border: 0;
    padding: 10px;
  }

  #navbarNavDropdown a.nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -4px;

    width: 0;
    height: 3px;

    background: #ff214f;

    transition: all 0.3s ease;
  }

  #navbarNavDropdown a.nav-link:hover::after {
    width: 100%;
    left: 0;
  }

  #nav .searchbox {
    width: 200px;
    margin-top: 0;
  }
}

/* ===================================
   DROPDOWNS
=================================== */

.navbar-nav > li > .dropdown-menu {
  background: #ff214f;

  min-width: 250px;

  border: 0;
  border-radius: 0;

  box-shadow: none;
}

.navbar-nav > li > .dropdown-menu a {
  display: block;

  padding: 0.5rem 1rem;

  color: #fff;
}

.navbar-nav > li > .dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.15);
}
/* 
-----------
(10) slider
-----------
*/

.slider {
  position: relative;
  color: #fff;
  width: 100%;
}
.slider.home {
	 min-height: 480px;
}
.slider.about {
  position: relative;
  color: #fff;
  width: 100%;
  background-size: cover !important;
  background-position: 50% center !important;
}
.slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #333;
  z-index: 1;
}
.slider .overlay.home {
  background: rgb(9 0 0 / 49%);
}
.slider .container {
  text-align: center;
  color: #fff;
  z-index: 9;
  position: relative;
}
.slider.about .container {
  text-align: left;
  color: #fff;
  z-index: 9;
  position: relative;
}
.slider.contact .container {
  text-align: left;
  color: #fff;
  z-index: 9;
  position: relative;
}
.slider h1 {
  font-size: 40px;
  color: #fff;
  display: block;
  z-index: 999;
  position: relative;
  padding-top: 20px;
  font-weight: 600;
}
.section.largepaddinghome h1 {
  text-align: center;
}

@media all and (min-width: 1024px) {
  .slider {
    min-height: 270px;
  }
  .slider.contact {
    min-height: 120px;
  }
}
@media only screen and (min-width: 1500px) {
  .slider {
    background-size: 100% !important;
  }
}
/* 
-----------
10 Carousel
-----------
*/
#carousel-example-generic img {
  width: 100%;
}
#carousel-example-generic .item {
  max-height: 450px;
  overflow: hidden;
}
/*
---------------------
11.Slider Main Search
---------------------
*/

.slider .searchbox {
  position: relative;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}
.slider .searchbox form {
  background: #eee;
  margin-right: 230px;
  position: relative;
}
.slider .searchbox input[type="text"] {
  border: 0;
  background: transparent;
  padding: 0 40px 0 15px;
  height: 60px;
  font-family: Arial;
  width: 100%;
  outline: none;
  font-size: 20px;
}
.slider .searchbox button {
  border: 0;
  background: #ff214f;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
}
.slider .btn-all {
  display: inline-block;
  text-align: center;
  height: 60px;
  margin-top: 0;
  padding: 13px 25px;
  text-decoration: none;
  position: absolute;
  top: 0;
  font-weight: 500;
  right: 0;
  font-size: 19px;
}



/* ===================================
   14. BREADCRUMBS
=================================== */

#breadcrumbs {
  width: 100%;
  background: #ddd;
  clear: both;
}

#breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;

  margin: 0;
  padding: 0;

  list-style: none;
}

#breadcrumbs li {
  margin: 0;
}

#breadcrumbs a {
  display: block;

  padding: 16px 10px;

  color: #333;
  font-size: 16px;
}

#breadcrumbs a span {
  display: inline-block;

  margin-right: 10px;
  padding: 5px;

  background: #fff;
  color: #006683;
}

/* ===================================
   15. HERO SLIDER
=================================== */

.slider {
  position: relative;

  width: 100%;

  color: #fff;

  overflow: hidden;
}

.slider.about,
.slider.contact {
  background-size: cover !important;
  background-position: center center !important;
}

.slider .overlay {
  position: absolute;
  inset: 0;

  background: rgba(51, 51, 51, 0.8);

  z-index: 1;
}

.slider .overlay.home {
  background: rgba(9, 0, 0, 0.49);
}

.slider .container {
  position: relative;
  z-index: 5;

  text-align: center;
  color: #fff;
}

.slider.about .container,
.slider.contact .container {
  text-align: left;
}

.slider h1 {
  position: relative;
  margin: 0 0 20px 0;
  padding-top: 20px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  z-index: 10;
}

.section.largepaddinghome h1 {
  text-align: center;
}

@media (min-width: 768px) {
  .slider h1 {
    font-size: 40px;
    
  }
}


@media (min-width: 1024px) {
  .slider {
    min-height: 270px;
  }

  .slider.contact {
    min-height: 120px;
  }
}

@media (min-width: 1500px) {
  .slider {
    background-size: 100% !important;
  }
}

/* ===================================
   SLIDER CTA BUTTONS
=================================== */

.slider a {
  display: inline-block;
  max-width: 500px;
  margin-inline: auto;
  padding: 10px 30px;
  background: #ff214f;
  color: #fff;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
}

@media only screen and (min-width:992px) {
  .slider a {
    padding:20px 40px;
  }
}

/* ===================================
   16. CAROUSEL
=================================== */

#carousel-example-generic img {
  width: 100%;
}

#carousel-example-generic .item {
  overflow: hidden;
  max-height: 450px;
}

/* ===================================
   17. HERO SEARCH
=================================== */

.slider .searchbox {
  width: 100%;
  max-width: 850px;

  margin-inline: auto;

  position: relative;
}

.slider .searchbox form {
  position: relative;

  background: #eee;
}

.slider .searchbox input[type="text"] {
  width: 100%;
  height: 60px;

  padding: 0 70px 0 15px;

  border: 0;

  font-size: 18px;

  background: transparent;
}

.slider .searchbox input:focus {
  outline: none;
}

.slider .searchbox button {
  position: absolute;

  top: 0;
  right: 0;

  width: 60px;
  height: 100%;

  border: 0;

  background: #ff214f;
  color: #fff;
}

.slider .btn-all {
  display: block;

  margin-top: 10px;

  padding: 15px 25px;

  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

@media (min-width: 601px) {
  .slider .searchbox {
    display: flex;
    gap: 10px;
    align-items: stretch;
  }

  .slider .searchbox form {
    flex: 1;
  }

  .slider .btn-all {
    margin-top: 0;
    white-space: nowrap;
  }
}

/* ===================================
   18. MAIN
=================================== */

#main {
  position: relative;
}

#main.container.nopadding {
  padding: 0 !important;
}

/* ===================================
   19. CONTENT LAYOUT
=================================== */

.content-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Mobile First */

.column-left,
.column-right,
.product-column-left,
.product-column-right {
  width: 100%;
}

.column-left,
.column-right {
  padding-inline: 20px;
}

.product-column-left,
.product-column-right {
  padding: 20px;
}

/* Desktop */

@media (min-width: 992px) {
  .content-layout {
    flex-direction: row;
  }

  .column-left {
    flex: 0 0 25%;
  }

  .column-right {
    flex: 0 0 75%;
  }

  .product-column-left,
  .product-column-right {
    flex: 0 0 50%;
  }
}

/* ===================================
   20. SIDEBAR
=================================== */

.column-left h2 {
  margin: 0;

  padding: 14px 15px;

  background: #bbb;

  font-size: 25px;
  text-align: left;
}

.column-left ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.column-left li {
  margin: 0;
}

.column-left a {
  display: block;

  padding: 12px 15px;

  background: #bbb;

  color: #333;

  border-top: 1px solid #ddd;
  border-bottom: 1px solid #666;
}

.column-left a:hover {
  background: #ff214f;
  color: #fff;
}

/* ===================================
   21. PRODUCT COLUMNS
=================================== */

.product-column-left .inner,
.product-column-right .inner {
  background: #fff;
}

.product-column-left .inner {
  padding: 20px;
}

.product-column-right .inner {
  padding: 30px 20px;
}

@media (min-width: 992px) {
  .product-column-right {
    padding-right: 25px;
  }
}

/* ===================================
   22. INTRODUCTION
=================================== */

#introduction {
  text-align: center;

  padding-top: 30px;
  padding-bottom: 0;
}

#introduction h1 {
  font-size: 24px;
}

#introduction h2 {
  margin-bottom: 0;
}

#introduction p {
  margin: 20px 0;
}

@media (min-width: 768px) {
  #introduction h1 {
    font-size: 32px;
  }
}

/* ===================================
   23. GET IN TOUCH
=================================== */

#getintouch {
  text-align: center;
}

#getintouch .container {
  max-width: 750px;
}

#getintouch p {
  margin-top: 30px;
}

/* ===================================
   24. ABOUT SECTION
=================================== */

#about .container {
  padding-top: 25px;

  border-top: 1px solid #ededed;
}

#about #blocks {
  display: grid;
  gap: 30px;
}

#about #blocks > div {
  text-align: center;
}

#about .icons {
  margin-inline: auto;
  margin-bottom: 20px;

  width: 85px;
}

#about .icons i {
  font-size: 65px;
  color: #ff214f;
}

#about .text h3 {
  margin: 20px 0;
}

#about .text p {
  margin: 0;
}

@media (min-width: 768px) {
  #about .container {
    padding-top: 60px;
  }
}

@media (min-width: 1000px) {
  #about #blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1025px) {
  #about #blocks > div > div {
    display: flex;
    align-items: flex-start;

    text-align: left;
    gap: 20px;
  }

  #about .icons {
    flex: 0 0 85px;
    margin: 0;
  }
}

/* ===================================
   25. PRODUCT HEADER
=================================== */

.product-header {
  margin: 25px 25px 0;
  padding: 20px;

  text-align: center;

  background: #ddd;
}

.product-header h1 {
  margin-bottom: 0;
  font-size: 20px;
}

@media (min-width: 768px) {
  .product-header h1 {
    font-size: 26px;
  }
}

/* ===================================
   26. FOOTER
=================================== */

#footer {
  clear: both;

  background: #3c3c3b;
  color: #fff;
}

#footer section {
  padding-top: 60px;
}

#footer .container {
  padding-inline: 0;
  padding-bottom: 0;
}

/* ===================================
   FOOTER COLUMNS
=================================== */

#footer .column {
  margin-bottom: 20px;
}

#footer .column h4 {
  position: relative;

  margin: 0;

  padding: 0;

  font-size: 18px;

  cursor: pointer;

  color: #ccc;
}

#footer .column h4::after {
  content: "+";

  position: absolute;

  right: 0;
  top: 0;
}

#footer .column h4.expanded {
  color: #ff214f;
}

#footer .column h4.expanded::after {
  content: "-";
}

#footer .column h4 + ul {
  display: none;
}

#footer .column h4.expanded + ul {
  display: block;
}

/* ===================================
   FOOTER CONTENT
=================================== */

#footer p,
#footer div {
  font-size: 15px;
  text-align: center;
}

#footer a {
  color: #fff;
  word-break: break-word;
  text-align: center;
}

#footer a:hover {
  color: #ff214f;
}

#footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer li {
  margin: 0;
}

#footer ul li a {
  display: block;
  padding: 0 15px;
  margin-bottom: 15px;
  font-size: 16px;
}

#footer ul li:first-child a {
  margin-top: 15px;
}

/* ===================================
   ADDRESS
=================================== */

#footer address > div {
  position: relative;

  padding-left: 30px;
  margin-bottom: 10px;
}

#footer address i {
  position: absolute;

  left: 0;
  top: 3px;
}

/* ===================================
   SOCIAL MEDIA
=================================== */

#socialmedia {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#socialmedia a {
  font-size: 20px;
}

#socialmedia a:hover {
  color: #0099cc;
}

/* ===================================
   COPYRIGHT
=================================== */

#footer .copyright {
  padding: 30px 0;
  text-align: center;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

#footer .copyright ul li a {
  display: inline-block;
  margin: 0 5px 15px;
}

@media (min-width: 991px) {
  #footer .container {
    display: flex;
    flex-wrap: wrap;
  }

  #footer .column {
    width: 50%;

    padding-inline: 20px;
  }
}

@media (min-width: 1200px) {
  #footer .column {
    width: 25%;
    padding-left: 40px;
  }

  #footer .column:first-child {
    padding-left: 0;
  }

  #footer .column h4 {
    border-bottom: 1px dotted #fff;

    padding-bottom: 20px;
    margin-bottom: 20px;

    cursor: default;
  }

  #footer .column h4::after {
    display: none;
  }

  #footer .column h4 + ul {
    display: block;
  }
}

/* ===================================
   27. FLOATING CONTACT ICONS
=================================== */

.iconPhone,
.iconMail {
  position: fixed;

  right: 30px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: #0099cc;

  transition: 0.3s ease;
}

.iconPhone {
  top: 45%;
}

.iconMail {
  top: 53%;
}

.iconPhone i,
.iconMail i {
  color: #fff;
  font-size: 20px;
}

.iconPhone:hover,
.iconMail:hover {
  background: #fff;
}

.iconPhone:hover i,
.iconMail:hover i {
  color: #0099cc;
}

/* ===================================
   28. SCROLL INDICATOR
=================================== */

.scrollBarHolder {
  position: fixed;

  left: 0;
  right: 0;
  bottom: 0;

  height: 8px;

  background: #d9d9d9;
}

#scrollBar {
  height: 8px;

  background: #ff214f;
}

/* ===================================
   29. LIGHTBOX OVERLAY
=================================== */

#overlay {
  display: none;

  position: fixed;
  inset: 0;

  z-index: 999;

  background: rgba(0, 0, 0, 0.7);
}

#overlay .wrap {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  background: #fff;

  border: 8px solid #fff;
  border-radius: 3px;

  animation: lightboxZoom 0.3s;
}

#overlay img {
  display: block;

  margin-bottom: 10px;
}

#overlay p {
  margin: 0 0 5px;
}

#overlay .close {
  position: absolute;

  top: 10px;
  right: 10px;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #000;
  color: #fff;

  cursor: pointer;

  transition: 0.3s;
}

#overlay .close:hover {
  transform: rotate(180deg);
}

@keyframes lightboxZoom {
  from {
    transform: translate(-50%, -50%) scale(0);
  }

  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ===================================
   30. MEDIA CARD
=================================== */

.media {
  margin-top: 20px;

  padding: 20px;

  background: #fff;
}

.media-wrapper {
  display: flex;
  gap: 20px;
}

.media .image {
  width: 100px;
  height: 100px;

  background-size: cover;
  background-position: center;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 10px;

  font-size: 17px;
}

.media p {
  margin: 16px 0 !important;

  color: #ff214f;

  font-size: 17px;
  font-weight: 700;
}

@media (min-width: 481px) {
  .media .image {
    width: 150px;
    height: 150px;
  }
}



/* ===================================
   31. PHOTO GALLERY
=================================== */

#photogallery.section {
  background: #ddd;
  text-align: center;
}

#photogallery .container {
  padding-inline: 0;
}

#photogallery ul {
  display: grid;
  gap: 20px;

  list-style: none;

  margin: 0;
  padding: 0;
}

#photogallery li {
  margin: 0;
}

#photogallery li a {
  position: relative;
  display: block;

  overflow: hidden;

  padding: 5px;

  background: #eee;

  border: 1px solid #ccc;

  min-height: 205px;
}

#photogallery img {
  width: 100%;
}

#photogallery li a::before {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.5);

  transform: scale(0);
  transition: 0.3s;
}

#photogallery li a::after {
  content: "\f00e";

  font-family: "Font Awesome 5 Free";
  font-weight: 900;

  position: absolute;

  top: 50%;
  left: 50%;

  color: #fff;
  font-size: 30px;

  transform: translate(-50%, -50%) scale(0);

  transition: 0.3s;
}

#photogallery li a:hover::before {
  transform: scale(1);
}

#photogallery li a:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

@media (min-width: 768px) {
  #photogallery ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  #photogallery ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================
   32. CONTACT / PORTFOLIO SECTIONS
=================================== */

#contact,
#portofolios {
  background: #eee;
}

#contact .container,
#portofolios .container {
  padding: 25px;

  background: #fff;
}

@media (min-width: 1000px) {
  #contact .container,
  #portofolios .container {
    padding: 60px;
  }
}

/* ===================================
   33. RESPONSIVE TABLES
=================================== */

.responsiveTbl {
  overflow-x: auto;
}

.responsiveTbl table {
  width: 100%;
  min-width: 640px;

  text-align: left;
}

tr {
  background: #fff;
}

tr:nth-child(even) {
  background: #f2f2f2;
}

th,
td {
  padding: 20px 15px;
  vertical-align: middle;
}

th {
  font-size: 22px;
  background: #ddd;
  color: #000;
}

th h1 {
  margin: 0;
  font-size: 26px;
}

td.prices {
  width: 90px;
}

/* ===================================
   TABLE BUTTONS
=================================== */

.responsiveTbl .btn,
.responsiveTbl .price {
  display: block;
  min-width: 100px;
  text-align: center;
  padding: 11px;
  border-radius: 999px;
}

.responsiveTbl .price {
  background: #ff214f;
  color: #fff;
}

.responsiveTbl .btn {
  border: 1px solid #ff214f;

  color: #ff214f;

  background: #fff;
}

.responsiveTbl .btn:hover {
  background: #0080d6;
  color: #fff;
}

.responsiveTbl td.align-left h4 {
  padding: 15px 25px;

  background: #333;
  color: #fff;

  border-radius: 999px;

  text-align: center;

  font-size: 17px;
}



/* ===================================
   34. FORM LAYOUT
=================================== */

.form-group {
  margin-bottom: 15px;
}

.formContainer {
  padding: 40px 20px;

  text-align: center;

  background: rgba(255, 255, 255, 0.6);
}

.formContainer form {
  max-width: 650px;
  margin-inline: auto;
}

.formContainer .titleContainer {
  margin-bottom: 40px;
}

.formContainer .titleContainer .far {
  font-size: 70px;
  color: #ff214f;

  margin-bottom: 20px;
}

.formContainer .titleContainer h1 {
  margin-bottom: 10px;
}

.formContainer a {
  color: #333;
  font-size: 14px;
}

.formContainer a:hover {
  color: #ff214f;
}

@media (min-width: 768px) {
  .formContainer {
    padding: 80px 40px;
  }

  .formContainer .titleContainer h1 {
    font-size: 40px;
  }
}

/* ===================================
   35. FORM FIELDS
=================================== */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea {
  width: 100%;

  padding: 15px 15px 15px 35px;

  border: 0;
  border-bottom: 1px solid #666;

  background: transparent;

  color: #333;

  font: 300 16px/1.6 "Didact Gothic", sans-serif;

  transition: 0.3s;
}

textarea {
  min-height: 120px;
  resize: none;
}

input:focus,
textarea:focus {
  outline: none;

  border-color: #ff214f;
  color: #ff214f;
}

/* ===================================
   FIELD ICONS
=================================== */

.formContainer .row {
  position: relative;
}

.formContainer .fas {
  position: absolute;

  top: 30px;
  left: 0;

  transform: translateY(-50%);

  color: #333;

  transition: 0.3s;
}

input:focus + .fas,
textarea:focus + .fas {
  color: #ff214f;
}

/* ===================================
   PLACEHOLDERS
=================================== */

::placeholder {
  color: #333;
  opacity: 1;
}

/* ===================================
   FORM BUTTON
=================================== */

.formContainer .btn {
  width: 100%;
  padding: 15px;
  border: 0;
  background: #ff214f;
  color: #fff;
  cursor: pointer;
  text-transform: capitalize;
}

.formContainer .btn:hover {
  background: #ff214f;
}

/* ===================================
   36. CUSTOM RADIO BUTTONS
=================================== */

.customRadio input,
.formContainerCustom input[type="radio"] {
  position: absolute;
  left: -9999px;
}

.customRadio label,
.formContainerCustom input[type="radio"] + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}

.customRadio label::before,
.formContainerCustom input[type="radio"] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #ff214f;
  border-radius: 50%;
  background: #fff;
}

.customRadio label::after,
.formContainerCustom input[type="radio"] + label::after {
  content: "";

  position: absolute;
  left: 6px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #ff214f;
  border-radius: 50%;
  opacity: 0;
  transform: scale(2);
  transition: 0.3s;
}

.customRadio input:checked + label::after,
.formContainerCustom input[type="radio"]:checked + label::after {
  opacity: 1;
  transform: scale(1);
}

/* ===================================
   37. CUSTOM CHECKBOXES
=================================== */

.customCheckbox input,
.formContainerCustom input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.customCheckbox label,
.formContainerCustom input[type="checkbox"] + label {
  position: relative;

  padding-left: 35px;

  cursor: pointer;
}

.customCheckbox label::before,
.formContainerCustom input[type="checkbox"] + label::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 22px;
  height: 22px;

  border: 2px solid #ff214f;
  border-radius: 4px;

  background: #fff;
}

.customCheckbox label::after,
.formContainerCustom input[type="checkbox"] + label::after {
  content: "";

  position: absolute;

  left: 5px;
  top: 5px;

  width: 10px;
  height: 6px;

  border-width: 0 0 2px 2px;
  border-style: solid;
  border-color: transparent transparent #fff #fff;

  opacity: 0;

  transform: rotate(-45deg) scale(2);

  transition: 0.3s;
}

.customCheckbox input:checked + label::before,
.formContainerCustom input[type="checkbox"]:checked + label::before {
  background: #ff214f;
}

.customCheckbox input:checked + label::after,
.formContainerCustom input[type="checkbox"]:checked + label::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

/* ===================================
   38. CUSTOM INPUT STYLES
=================================== */

.formContainerCustom input,
.formContainerCustom textarea {
  width: 100%;

  padding: 12px 15px;

  border: 1px solid #ccc;

  background: #fff;

  transition: 0.3s;
}

.formContainerCustom textarea {
  min-height: 150px;
}

.formContainerCustom input:hover,
.formContainerCustom textarea:hover,
.formContainerCustom input:focus,
.formContainerCustom textarea:focus {
  border-color: #ff214f;

  box-shadow: inset 0 0 0 1px #ff214f;

  outline: none;
}

/* ===================================
   39. CUSTOM SELECT
=================================== */

.customSelect .select,
.formContainerCustom .select {
  position: relative;

  height: 50px;

  border: 1px solid #ff214f;

  background: #fff;
}

.customSelect select,
.formContainerCustom select {
  width: 100%;
  height: 100%;

  padding: 0 50px 0 15px;

  border: 0;
  background: transparent;

  appearance: none;
}

.customSelect .select::before,
.formContainerCustom .select::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;

  width: 40px;

  background: #ff214f;
}

.customSelect .select::after,
.formContainerCustom .select::after {
  content: "";

  position: absolute;

  top: 50%;
  right: 12px;

  transform: translateY(-50%);

  border-style: solid;
  border-width: 10px 7px 0;
  border-color: #fff transparent transparent;
}

/* ===================================
   40. TOGGLE SWITCH
=================================== */

.customToggle input {
  position: absolute;
  left: -9999px;
}

.customToggle label {
  position: relative;

  display: inline-block;

  width: 60px;
  height: 28px;

  border-radius: 50px;

  background: #f70000;

  cursor: pointer;
}

.customToggle label::before {
  content: "";

  position: absolute;

  top: 3px;
  left: 3px;

  width: 22px;
  height: 22px;

  border-radius: 50%;

  background: #fff;

  transition: 0.3s;
}

.customToggle input:checked + label::before {
  transform: translateX(32px);
}

/* ===================================
   41. BOOTSTRAP OVERRIDES
=================================== */

.checkbox,
.radio {
  display: inline-block;
}

.form-control {
  height: auto !important;

  border-radius: 0 !important;

  box-shadow: none !important;
}

/* ===================================
   42. ALERT POPUP
=================================== */

.AlertContainer {
  position: fixed;
  inset: 0;

  z-index: 1000;

  background: rgba(0, 0, 0, 0.3);
}

.AlertContainer .container {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 100%;
}

.AlertContainer .popupbox {
  max-width: 600px;

  padding: 2rem;

  background: #fff;

  text-align: center;

  border-radius: 40px;
}

.AlertContainer h2 {
  margin-bottom: 20px;
}

.AlertContainer p {
  margin-bottom: 20px;
}

.AlertContainer .btn {
  font-size: 18px;
}

/* ===================================
   43. GLOBAL OVERLAY
=================================== */

#mainOverlay {
  display: none;

  position: fixed;
  inset: 0;

  z-index: 9999;

  background: rgba(0, 0, 0, 0.7);
}

/* ===================================
   44. AJAX POPUP PANEL
=================================== */

#ajaxHomepagePopup {
  position: fixed;

  top: 0;
  right: -100%;

  width: 100%;
  height: 100%;

  background: #fff;

  z-index: 99999;
}

#ajaxHomepagePopup .ajaxHomepagePopup_inner {
  height: 100%;
  padding: 20px;
}

#ajaxHomepagePopup .close {
  position: absolute;

  top: 10px;
  right: 10px;
}

#ajaxHomepagePopup .close a {
  color: #ff214f;
  font-size: 20px;
}

#mypopup {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  #ajaxHomepagePopup {
    max-width: 900px;
  }
}

/* ===================================
   45. PORTFOLIO LIST
=================================== */

#portfolio-list {
  max-width: 900px;

  margin-inline: auto;

  list-style: none;
}

#portfolio-list li {
  margin-bottom: 10px;
}

#portfolio-list i {
  margin-right: 10px;
}

#portfolio-list a {
  font-weight: 700;
}

/* ===================================
   46. FEATURE CARDS
=================================== */

.upload-card,
.testimonial-card {
  max-width: 700px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  /* border-radius: 20px; */
  box-shadow: 0 5px 20px #ddd;
}

.upload-card {
  max-width: 600px;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-inline: auto;
  border-radius: 50%;
  background: #ff214f;
  color: #fff;
  font-size: 35px;
  margin: 0 auto 30px;
}

.icon-circle:hover {
  background: #004e90;
}

.upload-icon {
  font-size: 70px;
  color: #ff214f;
  margin: 0 0 30px 0;
}

.feature-card {
  background: #fff;
  padding: 35px;
  margin-bottom: 30px;
  /* border-radius: 20px; */
  text-align: center;
  box-shadow: 0 5px 25px #ddd;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card:hover .icon-circle {
  background: #004e90;
}

.process-box {
  padding: 25px;
  text-align: center;
}

.process-box i {
  color: #ff214f;
  font-size: 45px;
  margin: 0 auto 30px;
}

.portfolio-card {
  overflow: hidden;

  margin-bottom: 30px;

  border-radius: 15px;

  background: #fff;

  box-shadow: 0 5px 20px #ddd;

  transition: 0.3s;
}

.portfolio-card:hover {
  transform: scale(1.05);
}

.portfolio-title {
  padding: 20px;

  font-size: 20px;
  font-weight: 700;
}

.testimonial-card i {
  font-size: 60px;
  color: #ff214f;
  margin: 0 auto 30px;
}

/* ===================================
   47. UTILITIES
=================================== */

.red {
  color: #ff214f;
}

 