/*----------- Fonts -----------*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/*----------- General -----------*/
html, body {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    text-rendering: optimizeLegibility;
    height: 100%;
    background-color: transparent;
    position: relative;
    padding-top: 60px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.1;
}

h1, .h1 {font-size: 60px;}

h2, .h2 {font-size: 48px;}

h3, .h3 {font-size: 30px;}

h4, .h4 {font-size: 22px;}

i {font-style: italic;}

p {margin-bottom: 1.6em;}

strong {font-weight: bold;}

ul {
    margin-bottom: 0rem;
    padding-left: 1rem;
}

.text-shadow {
    text-shadow: 2px 2px 8px #000000;
}

.text-light-blue {
    color: #308aa2;
}

.text-dark-blue {
    color: #2c3252;
}

.grey-bg {
    background-color: #dddddd;
}

.black-bg {
    background-color: #000000;
}

#myScrollspy, #logo {
    transition: 0.4s;
}

.language-bar {
    position: absolute;
    right: 0;
    top: -54px;
    transition: 0.3s;
}

.language-selection {
    padding: 0;
    display: flex;
}

.language-selection .language-item {
    padding: 0 2px!important;
}

.language-link {
    font-size: 12px;
    background: #999999;
    color: #ffffff;
    padding: 5px;
    text-decoration: none;
    border-radius: 25%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 30px;
    text-align: center;
}

.language-link.active {
    background: #2c3252;
}

.language-link:hover {
    color: #ffffff;
    background: #2c3252;
    text-decoration: none;
}


.show-mobile, .show-small, .custom-show, .show-bg-vertical {display: none;}

.overlay-dark:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    opacity: 0.3;
}

/*----------- Navigation -----------*/
.gradient-light {
    background-color: #ffffff;
    background-image: linear-gradient(#ffffff, #cecece);
    /*border-bottom: 12px solid #f3b75f;*/
}
.navbar-light {
    background-color: #ffffff;
}
.navbar-light .navbar-nav .nav-link {
    color: #2c3252;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    border-bottom: 10px solid transparent;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link:hover {
    color: #2c3252;
    border-bottom: 10px solid #2c3252;
}


.navbar-light .navbar-nav .dropdown-menu li a {
    color: #708CA8;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.3;
    padding: 6px 10px;
}


.navbar-light .navbar-nav {
    padding:0 0 0 10%;
}

.navbar-light .navbar-nav li {
    display: flex;
    padding: 0px 25px;
}


.navbar-light .navbar-nav .dropdown-menu li {
    padding:0;
}

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.55);
    border-color: transparent;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.dropdown-toggle:after {
    border-top: .5em solid;
    border-right: .5em solid transparent;
    border-left: .5em solid transparent;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #e9ecef;
}

.bg-scroll-down {
    background-color: rgba(255,255,255,1) !important;
    transition: all 0.7s ease;
}

.animated-icon1{
width: 30px;
height: 20px;
position: relative;
margin: 0px;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
}

.animated-icon1 span {
display: block;
position: absolute;
height: 3px;
width: 100%;
border-radius: 9px;
opacity: 1;
right: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}

.animated-icon1 span {
background: #6c757d;
}

.animated-icon1 span:nth-child(1) {
top: 0px;
}

.animated-icon1 span:nth-child(2) {
top: 10px;
}

.animated-icon1 span:nth-child(3) {
top: 20px;
}

.animated-icon1.open span:nth-child(1) {
top: 11px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
opacity: 0;
right: -60px;
}

.animated-icon1.open span:nth-child(3) {
top: 11px;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg);
}



/*----------- CTA Button -----------*/
.btn {border-radius: 0;}
.btn-primary,
.btn-primary:focus {
    background-color: #308ba4;
    border-color: #308ba4;
    border-radius: 10px;
    padding: 1.7rem;
    font-size :16px;
}

.btn-primary:hover {
    background-color: #2aa8cb;
    border-color: #2aa8cb;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem #f9fafb26;
}

.btn-secondary,
.btn-secondary:focus {
    background-color: #2c3252;
    border-color: #2c3252;
    border-radius: 10px;
    padding: 1.7rem;
    font-size :16px;
}

.btn-secondary:hover {
    background-color: #3b436d;
    border-color: #3b436d;
}

.btn-secondary:focus {
    box-shadow: 0 0 0 0.25rem #f9fafb26;
}

.btn-primary.large, .btn-secondary.large {
    padding: 6px 16px;
}

.btn-primary.large span, .btn-secondary.large span {
    font-size: 1.2vw;
}

.btn-primary.small span, .btn-secondary.small span {
    font-size: 16px;
    line-height: 1;
    /*height: 16px;*/
}

.btn-primary.sustainability,
.btn-primary.sustainability:focus {
    background-color: #688100 !important;   
    border-color: #688100 !important; 
}

.btn-primary.sustainability:hover {
    background-color: #4d5f04 !important;
    border-color: #4d5f04 !important;
}

.btn-custom {
    height: 108px;
    line-height: 1.2;
    border: 1px solid #ffffff;
}
.btn-custom:hover {
    border: 1px solid #ffffff;
}
.title-button {
    width: 220px;
    margin: 0 auto;
}
.btn-grey {
    background-color: lightgrey;
    color: #000000;
}
.btn-active {
    background-color: #308ba4;
    color: #ffffff;
}



/*----------- Home -----------*/
.masthead {
  height: calc(100vh - 120.36px);
  min-height: 500px;
  background-image: url('../img/alr-banner-01.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.masthead.our-mandate{
  background-image: url('../img/istockphoto-1204743098-1024x1024.jpeg');
  background-position: top center;
  height: calc(100vh - 120.36px - 160.8px);
}

.masthead.about-us{
  background-image: url('../img/alr-banner-02.jpg');
  background-position: top center;
  height: calc(100vh - 120.36px - 160.8px);
}

.masthead.corporate-structure{
  background-image: url('../img/istockphoto-1169712270-1024x1024.jpeg');
  background-position: top center;
  height: calc(100vh - 120.36px - 160.8px);
}

.masthead.newsroom{
  background-image: url('../img/alr-banner-03.jpg');
  background-position: top center;
  height: calc(100vh - 120.36px - 160.8px);
}
@media screen and (max-width: 500px){
.masthead.newsroom{
  background-image: url('../img/alr-banner-03-m.jpg');
  background-position: top center;
  height: calc(100vh - 120.36px - 160.8px);
}
}

.masthead.investor-updates{
  background-image: url('../img/alr-banner-investor-update2.jpg');
  background-position: top center;
  height: calc(100vh - 120.36px - 160.8px);
}
@media screen and (max-width: 500px){
.masthead.newsroom{
  background-image: url('../img/alr-banner-investor-update-m.jpg');
  background-position: top center;
  height: calc(100vh - 120.36px - 160.8px);
}
}

.masthead.contact-us{
  background-image: url('../img/alr-banner-04.jpg');
  background-position: top center;
  height: calc(100vh - 120.36px - 160.8px);
}

.section-title {
    /*margin-left: -3.75rem;
    margin-right: -3.75rem;*/
    padding: 2.75rem 3.75rem;
    background: #2c3252;
    color: #ffffff;
}

/*#AboutUs {
    padding-top: 86.23px;
}*/

.img-fluid.text-img {
    width: 28em;
}

.card {
    backface-visibility: hidden;
    border: none;
    box-shadow: 0.125rem 0.1875rem 0.9375rem rgb(0 0 0 / 15%);
    margin-bottom: 0;
    overflow: hidden;
}
.card-body {
    flex: 1 1 auto;
    padding: 1.35rem 2.5rem;
}

.card-title {
    margin-bottom: 0.5rem;
    font-size: 18px;
    margin-bottom: 0;
	text-transform: uppercase;
}

p.card-text, .card-text li {
    line-height: 1.2;
    font-size: 16px;
}

.card-text li {
    margin-bottom: 0.5rem;
}

.number {
    position: relative;
    float: left;
} 

.card-no {
    border: solid #2c3252 1px;
    top: -25px;
    position: absolute;
    left: -46px;
    display: block;
    padding: 0.15rem 0.4rem;
    font-size: .65em;
    background: #2c3252;
    color: #ffffff;
}

.zoom {
    transition: all 1.5s ease;
}

.zoom:hover {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.line-content + .line-content {
    border-top: 2px solid #2c3252;
    margin-top: 3rem;
}

/*----------- corporate structure -----------*/
.accordion-item {
    border-bottom: 8px solid #ffffff;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2rem 3.75rem;
    font-size: 1.5rem;
    color: #ffffff;
    text-align: left;
    background-color: #999999;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}

.accordion-body {
    padding: 4rem 3.75rem;
    background-color: #626262;
    color: #ffffff;
}

.accordion-button::after {
  background-image: url(../img/plus-icon-white.svg) !important;
  width: 2.25rem;
  height: 2.25rem;
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../img/minus-icon-white.svg) !important;
  width: 2.25rem;
  height: 2.25rem;
  transform: unset !important;
}
.accordion-button:focus {
    outline: 0;
    box-shadow: unset !important;
    border: 0;
}
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #626262;
    box-shadow: unset !important;
}

/*----------- newsroom -----------*/
.month.active {
  color: red;
}

.filter-arrow {
  -moz-transition: transform .3s;
  -webkit-transition: transform .3s;
  transition: transform .3s;
  margin-bottom: 5px
}

.filterTitle {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
}

.January-February-Mar {
  height: max-content;
}

#ourlatest-news-section {}

.youtube-embed-post {
  display: block;
  width: 533px;
  margin: 0 auto;
}

.youtube-embed-post-720 {
  display: block;
  width: 720px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .youtube-embed-post {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .youtube-embed-post-720 {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
  }
}

.cta-showallnews,
.cta-showallblog,
.cta-showallpodcast {
  display: inline-block;
  vertical-align: top;
  padding: 0 20px;
  cursor: pointer;
  font-size: 0.8em;
}

.our-latest-year ul {
  white-space: nowrap;
  font-family: 'Poppins-SemiBold', Sans-Serif;
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #91989D;
}

.our-latest-year li {
  display: inline;
  padding: 5px 10px;
}

.our-latest-month li {
  display: inline;
  padding: 5px 10px;
  cursor: pointer;
}

.our-latest-year {
  position: relative;
  width: 100%;
  margin: 35px 0 40px -28px;
  overflow: auto;
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  transition: height 0.4s;
  left: 0;
  transition: left 2s;
  -webkit-transition: left 2s;
}

.our-latest-year li a {
  width: 79px;
  height: 48px;
  font-family: 'Poppins-SemiBold', Sans-Serif;
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #91989D;
  border-bottom: 3px solid #91989D;
  transition: 1s;
}

.our-latest-year li a.selected {
  color: #E32119;
  border-bottom: 3px solid #E32119;
}

.our-latest-year li a.active {
  color: #E32119;
  border-bottom: 3px solid #E32119;
}

.our-latest-year li a:hover {
  text-decoration: none;
  color: #E32119;
  border-bottom: 3px solid #E32119;
  transition: 1s;
}

.main-text {
  /*width: 522px;
                    height: 64px;*/
  font-family: 'Poppins-SemiBold', Sans-Serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  color: #1e2122;
  /*margin-right: 20px;
                    padding-left: 50px;*/
  /*margin-bottom: 10px;*/
}

a:hover .main-text {
  color: #e32119;
}

.second-text {
  /*width: 371px;
                    height: 64px;*/
  font-family: 'Muli-Regular', Sans-Serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.3px;
  color: #91989d;
  /*margin-bottom: 10px;
                    margin-top: 15px;*/
  padding: 8px;
  border: 1px solid #9ea8af;
  float: left;
}

.second-text a,
.second-text a:hover {
  color: #91989d;
}

.main-date {
  font-family: 'Muli-Regular', Sans-Serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.3px;
  color: #788184;
}

.main-date,
.main-text,
.second-text {
  margin-left: 40px;
}

.main-date {
  margin-left: 30px;
}

.container-outer {
  width: 100%;
  background-color: #F9F9F9;
  /*min-width:993px;*/
  margin-left: 20px;
}

.container {
  width: 100%;
}

/* ::-webkit-scrollbar {*/
/*  display: none;*/
/*}*/

.main-image {
  width: 180px;
}

.main-image img {
  width: 100%;
  padding-right: 40px;
  height: unset;
}

.main-image-mobile {
  margin-left: 30px;
  margin-right: 10px;
}

.main-image-mobile img {
  width: 60px;
  height: 169px;
  display: none;
  margin-right: 50px;
  max-width: 500%;
}

#loadMore {
  font-family: 'Muli-Regular', Sans-Serif;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #788184;
  margin-top: 15px;
  float: left;
  padding: 5px;
  border: 2px solid #788184;
  text-align: center;
  cursor: pointer;
  width: 126px;
  padding-top: 11px;
  padding-bottom: 11px;
  margin-left: 50%;
}

#loadMoreAll {
  font-family: 'Muli-Regular', Sans-Serif;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #788184;
  margin-top: 15px;
  float: left;
  padding: 5px;
  border: 2px solid #788184;
  text-align: center;
  cursor: pointer;
  width: 126px;
  padding-top: 11px;
  padding-bottom: 11px;
  margin-left: 50%;
}

#table-our-latest tbody {
  background-color: #F9F9F9 !important;
  border: 0px !important;
}

#table-our-latest tr td {
  background-color: #F9F9F9 !important;
  border: 0px !important;
}

#table-our-latest tr {
  border-color: #F9F9F9;
}

.td-image {
  width: 230px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

.gamuda-defaultbg {
  background: url(/wp-content/uploads/2018/08/Default_Mobile@2X.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

@media only screen and (min-width: 500px) {
  .gamuda-defaultbg {
    background-image: url(/wp-content/uploads/2018/07/Default_Desktop@2X.png);
  }
}

@media only screen and (max-width: 500px) {
  .td-image {
    width: 105px;
    display: none;
  }
  .our-latest-year {
    margin: 35px 0 40px -25px;
  }
  .container {}
  #loadMore,
  #loadMoreAll {
    margin-left: 35%;
  }
  .main-date,
  .main-text,
  .second-text {
    margin-left: 0px;
  }
  .td-date {
    padding: 0;
  }
  .td-maintext {
    padding: 15px 0;
  }
  .td-secondtext {
    padding: 0;
  }
  .main-text {
    line-height: 1.2em;
  }
}

@media only screen and (max-width: 960px) {
  .container-outer {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .container-outer {
    margin-left: 10px;
  }
}

#ourlatest-blog-section {}



/*new*/
.newsroom-row .card {
    box-shadow: none;
    border-radius: 0;
}

.newsroom-row .card-body {
    padding: 1rem;
    min-height: 135px;
}

.newsroom-link {
    text-decoration: none;
    color: inherit;
}

.newsroom-link:hover .card-title{
    text-decoration: none;
    color: #2c3252;
}

.inthenews-row .card {
    box-shadow: none;
    border-radius: 0;
}

.inthenews-row .card-body {
    padding: 1rem;
    min-height: 80px;
}

.box-bg {
    overflow: hidden;
    position: relative;
    min-height: 150px;
}

.datebox-bg {
    overflow: hidden;
    position: relative;
	padding: 1rem;
	min-height: 50px;
}
.news-datebox {
	border: solid grey 1px;
	margin-top: 0.5rem;
	padding: 15px 10px;
	text-align: center;
}

.news-defaultbg {
    background: url(../img/img-placeholder.png) no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100.2%;
    width: 100.2%;
    background-size: cover;
    z-index: 1;
    background-position: center;
    transition: transform 1s ease, opacity 0.5s ease 0.25s;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.news-defaultbg.press-statement {
    background: url(../img/PRESS-STATEMENT.jpg) no-repeat center center;
}

.newsroom-link:hover .news-defaultbg{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transition: transform 2s cubic-bezier(0.1,0.2,.7,1);
}

.newsroom-link:hover .card-title{
    color: grey;
}

.newsroom-link:hover .news-datebox {
    background-color: #f9f9f9;
}

.newsroom-link .card-title span{
    font-size: 14px;
}

.btn-link-pdf{
    border: 0;
    background-color: transparent;
    padding: 0;
}


@media only screen and (max-width: 767px) {
  .box-bg {
    height: 200px;
  }
}

/*pagination*/
/*.pager div
{
  float: left;
}*/

.nextPage, .previousPage {
  padding: 5px 12px;
  color: #7c7c7c;
  cursor: pointer;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
}

/*.nextPage {
  margin-left: 5px;
}*/

.pager div.disabled {
  opacity: 0.25;
  display: none;
}

.pager .pageNumbers a
{
  display: inline-block;
  color: white;
  background-color: #cacaca;
  margin: 3px;
  padding: 5px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
}

.pager .pageNumbers a.active, .pager .pageNumbers a:hover, .nextPage:hover, .previousPage:hover
{
  background-color: #2c3252;
  color: #ffffff;
}

.pager {
  margin: 0 auto;
}

/* SELECTBOX*/
.sbHolder, .sbHolder *{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
} 
.sbHolder{
    height: 45px;
    /*border: solid 1px #8d8e97;*/
    position: relative;
    width: 115px;
    display:inline-block;
    background-color: #cdcccc; 
    /*margin: 0 0 30px 0;*/
    outline:none;
    background-image: none;
    z-index: 1;
}
.sbHolder.open {
  background-color: #cdcccc; 
}
.sbSelector{
    /*width: 140px;*/
    height: 45px;
    font-size: 16px;
    /*font-weight: 600;*/
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
    cursor: pointer;
    padding: 13px 54px 13px 20px;
}
.sbToggle {
  height: 100%;
  right: 0;
  top: 0;
  width: 45px;
  background-color: #cdcccc; 
  position: absolute;
  display: block;
}
.sbToggle i {
    position: relative;
    top: 25%;
    left: 30%;
    color: #ffffff;
}
span.sbToggle:after {
    content: url('../img/arrow-down.svg');
    position: absolute;
    top: 23px;
    right: 18px;
    -webkit-font-smoothing: antialiased;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out;
}
.sbHolder:hover .sbToggle {
     background: #cdcccc; 
}

.sbHolder.open .sbToggle, .sbHolder.open:hover .sbToggle{
  background: #cdcccc;
  
}
.sbHolder.open span.sbToggle:after {
    content: url('../img/arrow-down.svg');
    /*transform: rotate(-180deg);*/
    /*top: 11px;*/
}
.sbOptions{
  background-color: #d7d7d7;
  list-style: none !important;
  margin: 0 !important;
  padding: 0;
  position: absolute;
  top: 100%;
  /*overflow-y: auto;*/
  width: 100%;
  /*max-width: 101%;*/
  left: 0px;
  z-index: 99;
  visibility:hidden;
  opacity:0;
  -webkit-transition:all .4s ease-in-out;
  transition:all .4s ease-in-out;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.17);
  /*height: 205px;*/
  overflow-x: auto;
}

.sbOptions a{
  text-decoration:none;
  color:#000000;
  padding:11px 28px 0px 22px;
  display: block;
  outline: none; 
  font-size: 16px;
  /*font-weight: bold;*/
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  -webkit-transition:all .4s ease-in-out;
  transition:all .4s ease-in-out;
} 
.sbOptions a:last-child{
  padding-bottom: 11px;
}
.sbOptions a:hover{
  padding-left: 28px;
} 
.sbHolder.open  .sbOptions{
  visibility:visible;
  opacity:1;
}
@media screen and (max-width: 341px){
  .sbHolder, .sbSelector, .sbOptions a{
    /*font-size: 18px;*/
  }
}
/*END SELECTBOX*/


/*----------- contact us -----------*/
.input-container {
    position: relative;
    margin: 0 0 50px;
}
.input-container input, .input-container textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    border: 0;
    color: #212121;
    font-size: 24px;
    font-weight: 400;
}
.input-container input:focus ~ label, .input-container textarea:focus ~ label {
    color: #9d9d9d;
    transform: translate(-12%, -50%) scale(0.75);
}
.input-container input:valid ~ label, .input-container textarea:valid ~ label {
    color: #9d9d9d;
    transform: translate(-12%, -50%) scale(0.75);
}
.input-container label {
    position: absolute;
    top: -13px;
    left: 0;
    color: #757575;
    font-size: 20px;
    font-weight: 300;
    line-height: 60px;
    transition: 0.2s ease;
}
.input-container .bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #757575;
    width: 100%;
    height: 1px;
}
.input-container .bar:before, .input-container .bar:after {
    content: "";
    position: absolute;
    background: #2c3252;
    width: 0;
    height: 2px;
    transition: 0.2s ease;
}
.input-container .bar:before {
    left: 50%;
}
.input-container .bar:after {
    right: 50%;
}
.input-container input:focus ~ .bar:before, .input-container input:focus ~ .bar:after, .input-container textarea:focus ~ .bar:before, .input-container textarea:focus ~ .bar:after {
    width: 50%;
}

.help {
    font-size: 8px;
    background: #adb5bd;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 50%;
    top: -4px;
    position: relative;
    cursor: pointer;
    z-index: 100;
}

.help-block.with-errors {
    color: #ff5050;
    margin-top: 5px;
    font-size: 13px;
}


/*----------- Footer -----------*/

.footer {
    color: #3B444A;
    font-size: 14px;
    padding-right: var(--bs-gutter-x,3.75rem);
    padding-left: var(--bs-gutter-x,3.75rem);
}


.nav-fill .nav-item, .nav-fill>.nav-link {
    flex: 1 1 !important;
}



/*----------- Media Queries -----------*/


@media (max-width: 1440px) {
    .navbar-light .navbar-nav {
        padding:0;
    }

    .ms-md-2 { margin-left: 0rem!important;}

}


@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav {
        flex-direction: row;
        position: absolute;
        bottom: 0;
        right: 3.5%;
    }

    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        width: 100%;
        padding-right: var(--bs-gutter-x,3.75rem);
        padding-left: var(--bs-gutter-x,3.75rem);
        margin-right: auto;
        margin-left: auto;
    }
}
@media (max-width: 1199px) {
    h2, .h2 {
        font-size: 34px;
    }
    h3, .h3 {
        font-size: 24px;
    }
    .masthead {
        background-attachment: scroll;
    }
    .section-title {
        padding: 1.75rem 0.75rem;
    }
    .accordion-button {
        padding: 2rem 0.75rem;
    }

    .accordion-body {
        padding: 4rem 0.75rem;
    }
    
    .navbar-light .navbar-nav .nav-link {
        text-align: center;
        border-bottom: 1px solid #afafaf;
        padding: 20px 10px;
        width: 100%;
    }

    .navbar-light .navbar-nav li {
        padding:0 5px;
    }
    
    .hide-mobile {display: none;}
    .show-mobile {display: block;}
    .headline {
        text-align: center;
        width: 100%;
        top: 16%;
        left: 0;
        padding: 20px;
    }
    .headline .logo {width: 30%;}
    .masthead h1 {font-size: 38px;}
    .masthead p {font-size: 2.5vw;}
    
    .btn-primary.large {
        padding: 6px 12px;
    }
    .btn-primary.large span {
        font-size: 2.5vw;
    }
    
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .language-bar {
        top: -0px!important;
        padding-right: var(--bs-gutter-x,.75rem);
    }

    .language-link {
        font-size: 10px;
    }
}


@media (max-width: 575.98px) {
    .navbar-light .navbar-nav {
        padding:0;
    }
}



@media (max-width: 520px) {
    .custom-show {
        display: block;
    }
}

@media (max-width: 425px) {
    .show-bg-vertical {
        display: block;
    }
    .hide-bg-horizontal {
        display: none;
    }
}

@media (max-width: 398px) {
    .show-small {
        display: block;
    }
}

 