@font-face {
  font-family: 'Roboto';
  src: url(../fonts/Roboto-Regular.eot);
  src: url(../fonts/Roboto-Regular.eot?#iefix) format('embedded-opentype'),
    url(../fonts/Roboto-Regular.ttf) format('truetype'),
    url(../fonts/Roboto-Regular.otf) format('otf'),
    url(../fonts/Roboto-Regular.woff) format('woff');
}

:root {
  --font-default: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Roboto", sans-serif;
}

/* Colors */
:root {
  --color-default: #0c3e5f;
  --color-primary: #008374;
  --color-secondary: #3f4e68;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  position: relative;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #00b6a1;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.topbar {
  background-color: #f5d406;
  height: 5px;

}

.header {
  height: 420px;
  background-color: var(--color-default);
}




/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.main {
  margin-top: -180px;
  margin-bottom: 50px;
  position: relative;
}

.section-header h2 {
  color: #22334a;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
}

.form_lable {
  font-size: 14px;
  color: #686c71;
}

form .form_lable {
  font-size: 16px;
  color: #070707;
}

form.box_sec {
  padding: 20px 30px;
  background-color: #e2e5e975;
}

.contact .form_sec {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.contact .form_sec .form-group {
  padding-bottom: 8px;
}


.contact .form_sec input,
.contact .form_sec textarea,
.contact .form_sec select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .form_sec input,
.contact .form_sec input,
.contact .form_sec select,
.contact .form_sec textarea {
  padding: 12px 15px;
  border-radius: 6px;
}

.contact .form_sec input:focus,
.contact .form_sec input:focus,
.contact .form_sec select:focus,
.contact .form_sec textarea:focus {
  border-color: var(--color-primary);
}

.contact .form_sec textarea {
  padding: 10px 12px;
}

.contact .form_sec button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .form_sec button[type=submit]:hover {
  background: rgba(0, 131, 116, 0.8);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-secondary);
  padding: 25px 0;
  color: white;
}


.footer .footer-contact p {
  line-height: 26px;
}

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

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


/* .main::after {
  content: "";
  background: url(../img/silhouette.png);
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: contain;
  height: 25em;
  position: absolute;
  bottom: 0px;
} */

body::after {
  content: '';
  background: url(../img/body_bg.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 450px;
  height: 467px;
  z-index: -1;
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
  -ms-filter: fliph;
  /*IE*/
  filter: fliph;
  /*IE*/
}

body::before {
  content: '';
  background: url(../img/body_bg.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 450px;
  height: 467px;
  z-index: -1;
}

hr {
  border-color: #b5a9a9 !important;
}

.dt-container .col-12{
 overflow-x: auto;
}