@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);
:root {
  --primary: #a60364;
  --secondary: #505b73;
}
html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
}
body {
  font: normal normal 14px 'Open Sans', Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.4em;
  background: #fff;
  color: var(--secondary);
}
.container {
  width: 100%;
  max-width: 1170px;
  position: relative;
}
h1, h2, h3 {
  line-height: 1.3;
}
h4, h5, h6 {
  line-height: 1.6;
}
p {
  margin: 1.5em 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-full {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
div, button {
  outline: none;
}
.white, .white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white p {
  color: white;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.table th {
  vertical-align: middle !important;
}
/* ---------------------------------------------
					Button
---------------------------------------------- */
a {
  color: var(--primary);
}
a:hover, a:focus {
  text-decoration: none;
  -webkit-filter: brightness(1.15);
  filter: brightness(1.15);
}
.thumbs {
  overflow: hidden;
  position: relative;
}
.thumbs p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
a:hover .thumbs img {
  transition: transform 500ms linear 0s;
  transform: scale(1.05, 1.05);
}
.btn {
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  padding: 12px 20px;
  margin: 10px auto;
  font-size: 90%;
}
.btn.center-block {
  display: table;
}
.btn-back {
  margin: 3em auto 0;
  color: var(--secondary);
  position: relative;
  padding-left: 30px;
  display: table;
}
.btn-back:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/arrow-red.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  transition: all .3s;
  transform: rotate(180deg);
}
.btn-back:hover {
  color: var(--primary);
}
.btn-back:hover:before {
  left: -10px;
}
.btn-primary {
  background-color: transparent;
  border-color: white !important;
  color: white !important;
}
.btn-primary:hover {
  background-color: white;
  color: var(--primary) !important;
}
.btn-secondary {
  background: var(--secondary);
  color: white !important;
}
.pdf img {
  border: 1px solid #efefef;
  padding: 5em 4em;
  margin: 15px 0;
}
/* ---------------------------------------------
					Nav
---------------------------------------------- */
.navbar {
  width: 100%;
  padding: 0;
  background-color: transparent;
  z-index: 99999;
  position: fixed;
}
.navbar.affix {
  top: 0;
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: move-in-up;
  animation-name: move-in-up;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, .15);
  background: white;
}
.navbar-brand {
  max-width: 200px;
  padding: 15px 20px;
  padding-left: 0;
  margin: 0;
  filter: contrast(0) brightness(2);
}
.affix .navbar-brand {
  max-width: 180px;
  filter: contrast(1) brightness(1);
}
.navbar-nav > li {
  margin: 0;
}
.navbar-nav > li > a {
  color: white;
}
.affix .navbar-nav > li > a {
  color: var(--primary);
}
.dropdown-menu > li > a {
  padding: 10px 15px;
}
.dropdown-toggle-mobile {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 999;
  background: none;
  border: none;
}
/* ---------------------------------------------
					Search
---------------------------------------------- */
.search .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  transform: translate(0, 0) !important;
}
.search .dropdown-toggle:after {
  display: none !important;
}
.search .dropdown-menu {
  padding: 0;
}
.search .navbar-form {
  width: 100%;
  margin: 0;
  padding: 0;
}
.search .form-control {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.search button {
  background: none;
  border: none;
  color: var(--primary);
  margin: 0;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
/* ---------------------------------------------
					Banner
---------------------------------------------- */
/*#banner:before {
  content: '';
  width: 100%;
    height: 100%;
    background: url(../images/banner-layer.jpg) center center / cover no-repeat;
    background-blend-mode: multiply;
}*/
#banner .banner {
  max-height: calc(100vh - 0px);
}
#banner .banner:before, #banner.banner:before {
  content: '';
  width: 100%;
  display: block;
  padding-top: calc((9 / 18) * 100%);
  /*background: url(../images/banner-layer.jpg) center center / cover no-repeat;
  mix-blend-mode: multiply;*/
}
.banner.banner-layer:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 75%);
  position: absolute;
  top: 0;
  left: 0;
}
#inner #banner:before {
  content: '';
  width: 100%;
  display: block;
  padding-top: calc((5 / 20) * 100%);
}
.banner {
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
}
.bgg {
  position: relative;
}
.bgg:before {
  content: '';
  /*background: linear-gradient(120deg, rgba(166, 3, 100, 1) 0%, rgba(80, 91, 115, 1) 100%);*/
  background: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.carousel-control-next, .carousel-control-prev {
  width: auto;
  top: 50%;
  bottom: inherit;
  transform: translate(0, -50%);
  opacity: 1;
  padding: 20px;
  font-size: 20px;
}
.carousel-indicators {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  width: auto;
  height: calc(70vh - 0em);
  display: none;
}
.carousel-caption {
  top: 50%;
  bottom: inherit;
  left: 20%;
  right: inherit;
  transform: translate(-50%, -50%);
  padding: 0 1.5em;
  max-width: 30vw;
  text-align: left;
}
.carousel .carousel-item {
  -webkit-transition: opacity 0.1s ease;
  -moz-transition: opacity 0.1s ease;
  -ms-transition: opacity 0.1s ease;
  -o-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  opacity: 0.5;
}
.carousel .active.carousel-item {
  opacity: 1;
}
/*.carousel .active.carousel-item .bg {
    animation: zooooom 7s ease-in-out;
   -webkit-animation: zooooom 7s ease-in-out;
}
@keyframes zooooom {
0%   {
	transform: scale(1);
}
100% {
	transform: scale(1.05);
}
}*/
/* ---------------------------------------------
					List
---------------------------------------------- */
section ul {
  padding: 0;
  margin: 10px 0;
}
section ul li {
  list-style: none;
  padding-left: 1em;
  margin: 5px 0;
  position: relative;
}
section ul li:before {
  content: '\00B7';
  left: 0px;
  top: 0px;
  position: absolute;
  display: block;
  color: var(--primary);
  font-size: 30px;
}
section.white ul li:before {
  color: white;
}
.list-unstyled li, .pagination li {
  padding-left: 0;
}
.list-unstyled li:before, .pagination li:before {
  display: none;
}
.collum-list-2 li {
  width: calc(50% - 3px);
  display: inline-block;
  vertical-align: top;
}
.list-tick li {
  list-style: none;
  padding-left: 2em;
  position: relative;
}
.list-tick li:before {
  font-family: 'Glyphicons Halflings';
  content: "\e013";
  color: var(--primary);
  left: 0;
  position: absolute;
}
.list-number {
  counter-reset: my-badass-counter;
}
.list-number li {
  list-style: none;
  padding: 5px 0;
  padding-left: 3em;
  position: relative;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
}
.list-number li:before {
  content: counter(my-badass-counter);
  counter-increment: my-badass-counter;
  background-color: #b6966a;
  color: var(--primary);
  display: inline-block;
  text-align: center;
  top: 0;
  left: 0;
  position: absolute;
}
/* ---------------------------------------------
					Form
---------------------------------------------- */
.form-group {
  position: relative;
}
.form-control {
  height: auto;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--secondary);
  border-radius: 0;
  box-shadow: none;
  padding: 10px 12px;
}
/*.form-control::-webkit-input-placeholder {
 	color:#333;
}
.form-control:-ms-input-placeholder {
 	color:#333;
}
.form-control:-moz-placeholder {
 	color:#333;
}*/
.form-control.error {
  border-color: #c33;
}
select {
  outline: none !important;
}
select.no-radius {
  border: none;
  width: 100%;
  background: none;
}
.select-wrapper.form-control {
  padding-left: 5px;
  padding-right: 5px;
}
label.error {
  position: absolute;
  top: 11px;
  right: 10px;
  color: #c33;
  font-weight: 400;
  font-size: 11px;
}
/* ---------------------------------------------
					Panel
---------------------------------------------- */
.accordion .card {
  border: none;
  border-bottom: 1px solid #ddd !important;
  background-color: transparent;
}
.accordion .card .card-header {
  padding: 0;
  background: none;
  border: none;
  margin-bottom: 0;
}
.accordion .card .card-header .btn {
  margin: 0;
  display: block;
  padding: 15px 0;
  width: 100%;
  text-align: left;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  position: relative;
  outline: none !important;
  border-radius: 0;
  text-decoration: none !important;
}
.accordion .card .card-header .btn.collapsed {
  color: var(--secondary);
}
.accordion .card .card-header .btn:after {
  content: "\e252";
  font-family: "Glyphicons Halflings";
  font-size: 10px;
  color: var(--primary);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
.accordion .card .card-header .btn.collapsed:after {
  content: "\e250";
}
.accordion .card .card-body {
  padding: 0;
}
/* ---------------------------------------------
					Modal
---------------------------------------------- */
.modal-full .modal-dialog {
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  margin: 0;
}
.modal-full .modal-content {
  border: none;
  box-shadow: none;
}
.modal-full .modal-content img {
  margin: 15px auto;
}
.modal-full .close {
  color: var(--primary);
  font-size: 14px;
  opacity: 1;
  z-index: 999;
  position: absolute;
  right: 15px;
}
.modal-full .close span {
  font-size: 21px;
  top: 1px;
  position: relative;
}
.modal.modal-center.in {
  position: absolute;
  transform: translate(0, -50%);
}
.modal {
  background: rgba(0, 0, 0, .65);
}
.modal .close {
  position: absolute;
  top: -15px;
  right: -15px;
  color: white;
  background: var(--primary);
  border-radius: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  font-size: 18px;
  align-items: center;
  opacity: 1;
}
.modal-dialog {
  top: 50%;
  bottom: auto;
  transform: translate(0, -50%) !important;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.modal-content {
  background: #f9f9f9;
  border: none;
  border-radius: 0;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
  padding: 2em 1.5em;
}
.modal-contents {
  padding: 1rem 0 1rem 2rem;
  position: relative;
}
.modal-contents:before {
  content: '';
  background: var(--primary);
  width: 2px;
  height: 5rem;
  position: absolute;
  top: 1.2rem;
  left: 0;
}
.modal-contents ul {
  margin: 0;
  padding: 0;
}
.modal-contents li {
  list-style: none;
  margin: 5px 0;
  padding-left: 1em;
  position: relative;
}
.modal-contents li:before {
  content: '';
  background: var(--primary);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 0;
}
/* ---------------------------------------------
					Row
---------------------------------------------- */
.row.row-grid > [class^="col-"]:after {
  content: '';
  position: absolute;
  top: 5%;
  right: 0;
  height: 100%;
  width: 1px;
  background: #eee;
}
.row.row-grid > [class^="col-"]:last-child:after, .row.row-grid > .col:last-child:after {
  display: none;
}
@media (min-width: 769px) {
  .row.row-grid > .col-lg-4:nth-child(3n):after {
    display: none;
  }
}
@media (max-width: 768px) {
  .row.row-grid > .col-sm-6:nth-child(2n):after {
    display: none;
  }
}
@media (max-width: 767px) {
  .row.row-grid > div:after {
    display: none;
  }
}
/* ---------------------------------------------
					Ratio
---------------------------------------------- */
.ratio {
  position: relative;
}
.ratio:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: calc((6 / 9) * 100%);
}
.ratio.ratio-square:before {
  padding-top: calc((1 / 1) * 100%);
}
.ratio.ratio-vertical:before {
  padding-top: calc((9 / 6) * 100%);
}
.ratio iframe {
  position: absolute;
  top: 0;
}
.ratio img {
  position: absolute;
  top: 0;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
/* ---------------------------------------------
					Others
---------------------------------------------- */
/*.bg-about {
  background-image: url(../images/bg-about-new.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto
}*/
.vertical-line {
  position: relative;
  padding-left: 1.5rem;
}
.vertical-line:before {
  content: '';
  background: var(--primary);
  width: 2px;
  height: 10vh;
  position: absolute;
  top: 0;
  left: -2px;
}
.white .vertical-line:before {
  background: white;
  opacity: 0.5;
}
.profile a {
  padding-bottom: 50px;
  position: relative;
  display: block;
  height: 100%;
  cursor: pointer;
}
.profile a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
	width: 1px;
	height: 100%;
	background: white;
}
.profile a:after {
  content: "\e258";
  font-family: 'Glyphicons Halflings';
  padding: 12px 16px;
  position: absolute;
  bottom: 0;
  left: 25px;
  display: block;
  border: 1px solid white;
  border-radius: 30px;
  color: white;
}
.profile a:hover:after {
  content: 'More';
  font-family: open sans, Tahoma, Arial, Helvetica, sans-serif;
}
.profile-white a:after {
  color: var(--primary);
  border-color: var(--primary);
}
.profile-white a:before {
  background: var(--primary) !important;
}
.news {
  border-left: 2px solid var(--primary);
  padding-left: 20px;
}
.news p {
  font-size: 0.85em;
  margin: 0.5em 0;
}
.news a {
  margin-top: 1.5em;
  color: var(--secondary);
  position: relative;
  padding-right: 30px;
  display: inline-block;
}
.news a:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/arrow-red.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
  transition: all .3s;
}
.news a:hover {
  color: var(--primary);
}
.news a:hover:after {
  right: -10px;
}
.maps {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.maps a {
  display: block;
  position: absolute;
  top: calc(50% - 14px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 48px;
  z-index: 9;
}
.maps iframe {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  width: 300%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.arrow {
  position: relative;
  width: calc(100% - 40px);
}
.arrow:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 40px solid var(--primary);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
}
/*.maps:before {
  content: '';
  background: url(../images/droppin.png) no-repeat;
  background-size: contain;
  width: 52px;
  height: 48px;
  position: absolute;
  top: calc(50% - 12px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}*/
.maps:after {
  content: '';
  background: url(../images/spacer.gif) repeat;
  display: block;
  width: 100%;
  padding-top: calc((6 / 9) * 100%);
  position: relative;
  z-index: 2;
}
.alert {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 99;
}
.alert .close {
  position: relative !important;
  float: inherit !important;
}
/* ---------------------------------------------
					Social Media
---------------------------------------------- */
.social-icon {
  position: absolute;
  right: 35px;
  top: 12px;
}
.fa {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 2px;
  padding: 7px 0px;
  text-align: center;
  color: #666 !important;
  font-size: 20px !important;
}
/* Set a specific color for each brand */
.fa-facebook {
  background: #3B5998;
}
.fa-instagram {
  background-image: linear-gradient(-135deg, #9836bd, #da2c71, #fec460);
}
/* ---------------------------------------------
					Media Queries
---------------------------------------------- */
@media (min-width: 1170px) {
  /*.container {
    width: 80%;
    max-width: inherit;
  }*/
}
@media (min-width: 992px) {
  .banner-fixed {
    background-attachment: fixed !important;
  }
  .navbar-nav > li {
    margin: 0;
  }
  .navbar-nav > li > a {
    padding: 15px 10px !important;
    position: relative;
  }
  .navbar-nav > li.active > a:after {
    content: '';
    background: white;
    width: calc(100% - 20px);
    height: 1px;
    position: absolute;
    bottom: 10px;
    left: 10px;
  }
  .affix .navbar-nav > li.active > a:after {
    background: var(--primary);
  }
  .navbar-nav > li.dropdown > a {
    display: inline-block;
  }
  .navbar-nav .dropdown-toggle {
    background: none;
    border: none;
  }
  .navbar-nav > li.dropdown:hover > .dropdown-menu {
    display: block;
  }
  .quick-link .navbar-nav > li.dropdown:hover > .dropdown-menu {
    display: none;
  }
  .dropdown-menu {
    margin: 0;
    padding: 0;
    left: auto;
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background: var(--primary);
  }
  .dropdown-item {
    margin: 10px 0;
    color: #fff !important;
    background: none !important;
  }
  .dropdown-item:hover {
    opacity: 0.5;
  }
  .dropdown-toggle-mobile {
    display: none;
  }
  .py-7 {
    padding-top: 7em !important;
    padding-bottom: 7em !important;
  }
  .my-7 {
    margin-top: 7em !important;
    margin-bottom: 7em !important;
  }
  /*.bg-about .mt-lg-n5 {
    margin-top: -5em !important;
  }*/
  .vertical-line.px-lg-5 {
    padding-left: 5rem !important;
  }
  .vertical-line.px-lg-5:before {
    left: 3rem;
  }
  .seviora_group > div {
    border-left: 1px solid var(--primary);
    padding-bottom: 5em !important;
  }
  .seviora_group > div:hover {
    background: var(--primary);
    /*background: linear-gradient(90deg, rgba(166, 3, 100, 1) 0%, rgba(80, 91, 115, 1) 100%)*/ ;
    color: white;
  }
  .seviora_group > div:after {
    content: "\e258";
    font-family: 'Glyphicons Halflings';
    font-size: 8px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: grid;
    align-items: center;
    text-align: center;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 1;
  }
  .seviora_group > div:last-child:after {
    display: none;
  }
  .seviora_group > div img {
    max-width: 160px;
    height: 38px;
    object-fit: contain;
    object-position: center top;
  }
  .seviora_group > div:hover img {
    filter: contrast(0) brightness(2);
  }
  .seviora_group .btn {
    opacity: 0;
    position: absolute;
    bottom: 1em;
    left: 3rem;
  }
  .seviora_group > div:hover .btn {
    opacity: 1;
  }
  .esgMenu .dropdown-menu {
    display: flex !important;
    position: relative;
    align-items: center;
    background-color: transparent;
    border: none;
    margin: 10px -15px;
    float: inherit;
  }
  .esgMenu .col {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .esgMenu a {
    background: var(--primary) !important;
    display: grid;
    padding: 20px 25px;
    min-width: inherit;
    white-space: normal;
    text-align: center;
    min-height: 120px;
    align-items: center;
    border: 1px solid var(--primary);
    border-radius: 4px;
    -webkit-filter: brightness(1) !important;
    filter: brightness(1) !important;
    opacity: 1 !important;
  }
  .esgMenu a:hover {
    background: white !important;
    color: var(--primary) !important;
  }
  .table-col-4 th, .table-col-4 td {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .navbar {
    position: relative;
  }
  .navbar-brand {
    filter: contrast(1) brightness(1);
  }
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid, .container {
    max-width: 100%;
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .navbar-toggler {
    width: 22px;
    height: 32px;
    position: relative;
    padding: 0;
  }
  .navbar-toggler .icon-bar {
    position: absolute;
    transition: all 250ms linear;
    background: var(--primary);
    width: 100%;
    height: 2px;
    border-radius: 30px;
    right: 0;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0)
  }
  .affix .navbar-toggler .icon-bar {
    background: var(--primary);
  }
  .navbar-toggler.collapsed .icon-bar {
    position: absolute;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0)
  }
  .navbar-toggler .line1 {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    top: 15px;
  }
  .navbar-toggler .line2 {
    opacity: 0;
  }
  .navbar-toggler .line3 {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    top: 15px;
  }
  .navbar-toggler.collapsed .line1 {
    top: 9px;
  }
  .navbar-toggler.collapsed .line2 {
    opacity: 1;
    top: 15px;
  }
  .navbar-toggler.collapsed .line3 {
    top: 21px;
  }
  .navbar-nav > li {
    margin: 0;
  }
  .navbar-nav > li > a {
    color: var(--primary);
  }
  .navbar-nav > li > .dropdown-menu {
    background: none;
    border: none;
    margin: 0 0 10px;
    padding: 0;
  }
  .navbar-nav > li.show > .dropdown-menu {
    display: block;
  }
  .dropdown-item {
    padding: 5px 0;
    opacity: 0.5;
  }
  .nav-item.dropdown {
    position: relative;
    padding: 5px 0;
  }
  .dropdown-toggle {
    background: var(--primary);
    color: white;
    border-radius: 4px;
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
  }
  .search .dropdown-menu {
    position: absolute;
    top: 0;
    width: calc(100% + 30px);
    margin: 0 -15px !important;
  }
  .search .form-control {
    width: 100%;
    background: #fff;
  }
  #banner .banner:before, #banner.banner:before {
    padding-top: calc((4 / 6) * 100%);
  }
  .carousel-caption {
    max-width: 45vw
  }
  .bg-about:before {
    background: #505b73;
  }
  .modal-content {
    margin-left: 2em;
    margin-right: 2em;
    width: calc(100% - 4em);
  }
  .seviora_group .btn {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    opacity: 1;
  }
  .seviora_group > div img {
    max-width: 160px;
    height: 38px;
    object-fit: contain;
    object-position: center top;
  }
  .esgMenu {
    position: relative;
  }
  .esgMenu .btn {
    display: block;
    background-color: var(--primary);
    text-align: center;
    width: 100%;
    position: relative;
  }
  .esgMenu .dropdown-menu {
    position: relative !important;
    transform: translate(0) !important;
    width: 100%;
    text-align: center;
    background: var(--primary);
  }
  .esgMenu .dropdown-item {
    color: white;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  #banner .banner:before, #banner.banner:before {
    padding-top: calc((5 / 4) * 100%);
  }
  #banner {
    padding-top: 50px;
  }
  #inner #banner:before {
    padding-top: calc((3 / 5) * 100%);
  }
  .carousel-caption {
    max-width: inherit;
    transform: translate(0, -50%);
    left: 0;
  }
  .carousel-indicators {
    width: calc(80vw - 0em);
  }
  .carousel-control-next, .carousel-control-prev {
    display: none;
  }
  .py-7 {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .my-7 {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  .navbar {
    position: relative;
    background: white;
    position: fixed;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .15);
  }
  .navbar.affix {
    -webkit-animation-duration: inherit;
    animation-duration: inherit;
    -webkit-animation-name: inherit;
    animation-name: inherit;
  }
  .navbar-brand {
    max-width: 180px;
    filter: contrast(1) brightness(1);
  }
  .navbar-toggler .icon-bar {
    background: var(--primary);
  }
  .navbar-nav > li > a {
    color: var(--primary);
  }
  #banner .banner {
    max-height: calc(100vh - 57px);
  }
  #banner .banner:after {
    padding-top: calc((18 / 9) * 100%);
  }
  .modal-content {
    margin: 3em 1em 2em;
    width: calc(100% - 2em);
    height: calc(100vh - 10em);
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .modal .close {
    top: 0;
    right: 0;
  }
  .vertical-line {
    padding-left: 0;
  }
  div.vertical-line {
    padding-left: 15px;
  }
  .vertical-line:before {
    display: none;
  }
}
/*--------  Lock Screen --------  */
@media only screen and (max-height: 420px) and (orientation:landscape) {
  .alert-mobile {
    display: block;
    position: fixed;
    top: 50%;
    z-index: 999;
    margin: auto;
    transform: translate(0, -50%);
    padding: 3% 10%;
    text-align: center;
  }
  .alert-mobile h4 {
    line-height: 24px;
    margin-bottom: 20px;
  }
}
/* ---------------------------------------------
					IE 10
---------------------------------------------- */
@media all and (-ms-high-contrast:none) {}
/* ---------------------------------------------
					Firefox
---------------------------------------------- */
@-moz-document url-prefix() {}