/* ----------------------------------------------------------------
 Custom CSS

 Add all your Custom Styled CSS here for New Styles or
 Overwriting Default Theme Styles for Better Hanlding Updates
 -----------------------------------------------------------------*/



body{
  margin: 0;
  padding: 0;
  background: #27253d;
  user-select: none;
}

.drybn-collage__overlay{
  width: 100%;
/*  max-width: 1200px;*/
  padding: 1rem;
/*  background: #326765;
  border: 2px solid #edc988;*/
  box-sizing: border-box;
}
    #popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 1000;
    }

    /* Modal content */
    #popup-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      text-align: center;
      width: 90%;
      max-width: 400px;
      color: #3d6e72;
    }
 #popup-content p{ color:#FF521B; }
    #popup input[type="email"] {
      width: 80%;
      padding: 10px;
      margin-top: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    #popup button {
      margin-top: 15px;
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      background-color: #366596;
      color: white;
      cursor: pointer;
    }

    #popup button:hover {
      background-color: #FF521B;
    }

    .close-btn {
      background-color: #366596;
    }

    .close-btn:hover {
      background-color: #FF521B;
    }
.drybn-collage__content{
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0.25rem;
/*  background: #edc988;
  border: 4px solid #7da87b;
  box-sizing: border-box;*/
}

.drybn-collage-item{
  background-color: #7da87b;
  width: 100%;
  height: 280px;
  box-sizing: border-box;
  grid-column: span 3;
  position: relative;
  transition: .5s;
}

.drybn-collage-item--heading{
  background: #ff521b;;
  color: #ffffff;
}

.drybn-collage-item h2{
  font-family: helvetica;
  font-weight: 300;
  text-align: center;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%);
}

.drybn-collage-item h2 span{
  font-weight: 700; 
}

.drybn-collage-item:nth-child(1),.drybn-collage-item:nth-child(2){
  grid-column: span 3;
}

.drybn-collage-item:nth-child(1){
  background: url(../images/collage_1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: polygon(0 0, 82% 0, 100% 95%, 0 100%);
}

.drybn-collage-item:nth-child(2){
  background: url(../images/collage_2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 90%);
  width: 118%;
  margin-left: -18%;
  height: calc(100% + 1rem);
}

.drybn-collage-item:nth-child(3){
  background: url(../images/collage_3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  grid-row: 3;
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 90%);
  margin-top: -2rem;
}

.drybn-collage-item:nth-child(4){
  grid-column: span 6;
  clip-path: polygon(50% 0, 100% 10%, 100% 100%, 0 90%, 0 5%);
  margin-top: -1rem;
}

.drybn-collage-item:nth-child(5){
  background: url(../images/collage_4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 90%);
  margin-top: -1rem;
}

.drybn-collage-item:nth-child(6){
  background: url(../images/collage_5.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  grid-column: span 6;
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 66% 100%, 0 90%);
  margin-top: -2.7rem;
}

.drybn-collage-item:nth-child(7){
  background: url(../images/collage_6.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: polygon(0 0, 100% 10%, 77% 100%, 0 100%);
  margin-top: -1.8rem;
  width: 130%;
}

.drybn-collage-item:nth-child(8){
  background: url(../images/collage_7.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: polygon(31% 10%, 100% 0, 100% 100%, 0 100%);
  margin-top: -1.8rem;
}

/*
**  MD BREAKPOINT
*/
@media only screen and (min-width: 960px){

  .drybn-collage__overlay{
    margin: 0.75rem auto;
  }
  
/*  .drybn-collage-item{
    
    filter: sepia(1) blur(1px);
    transition: .3s;
  }
  
  .drybn-collage-item:hover{
    filter: sepia(0);
  }*/
  
  .drybn-collage-item{
    grid-column: span 2;
  }
  
/*  .drybn-collage-item h2{
    opacity: 0;
    line-height: 0;
    transition: .3s;
  }*/

  .drybn-collage-item--heading:hover h2{
    opacity: 1;
    line-height: 1;
  }
  
  .drybn-collage-item--heading:hover{
    clip-path: unset !important;
  }

  .drybn-collage-item:nth-child(1),.drybn-collage-item:nth-child(2){
    grid-column: span 3;
  }

  .drybn-collage-item:nth-child(1){
    clip-path: polygon(0 0, 100% 0%, 100% 87%, 0% 100%);
    background-position: center;
  }

  .drybn-collage-item:nth-child(2){
    clip-path: polygon(0 0, 100% 0%, 100% 74%, 0% 87%);
    background-position: center;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .drybn-collage-item:nth-child(3){
    clip-path: polygon(0 8%, 100% 0, 100% 65%, 0 100%);
    background-position: center;
    margin-top: -1.5rem;
    grid-row: 2;
  }

  .drybn-collage-item:nth-child(4){
    clip-path: polygon(0 8%, 93% 0, 100% 90%, 69% 100%, 0 88%);
    grid-column: span 2;
    margin-top: -3rem;
    z-index: 999;
  }

  .drybn-collage-item:nth-child(5){
    clip-path: polygon(0 9%, 100% 0, 100% 65%, 7% 98%);
    background-position: center;
    width: 107%;
    margin-top: -4.65rem;
    margin-left: -7%;
  }

  .drybn-collage-item:nth-child(6){
    clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
    background-position: center;
    margin-top: -6rem;
    grid-column: span 2;
  }

  .drybn-collage-item:nth-child(7){
    clip-path: polygon(70% 26%, 100% 16%, 100% 100%, 0 100%, 0 14%);
    background-position: center;
    margin-top: -6rem;
    width: 100%;
  }

  .drybn-collage-item:nth-child(8){
    clip-path: polygon(0 37%, 100% 11%, 100% 100%, 0 100%);
    background-position: center;
    margin-top: -12rem;
    height: calc(100% + 12rem);
  }
  
  .drybn-collage-item:nth-child(4):hover{
    transform: scale(1.5);
  }
  
  
}

 #main-wrapper {
  background: linear-gradient(-45deg, #7593f7 0%, #70cef7 100%);
  /*  background: linear-gradient(-45deg, #3d6e72, #80d3dc, #74c4cb, #3b6d70);*/
}


 #main-wrapper {
/*    background: #D9D9D9;*/
/*        background-image: linear-gradient(to right, #ff6736 0%, #ff6736 0%, #4e8f94 0%, #68a4a9 30%, #74c4cb 64%, #71d7df 100%);
*/}
#preloader [data-loader="dual-ring"] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    margin-top: -25px;
    display: inline-block;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 5px solid #3c6e71;
    border-color: #3c6e71 transparent #3c6e71 transparent;
    animation: dual-ring 1slinear infinite;
}
#header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
#header .logo {
  z-index: 111;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  top: 0px;
  left:0px;
  height: 100%;
}
.blog-post {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
#header .logo img {
    max-height: 60px;
}
a, a:focus {
    color: #3C6E71;
    text-decoration: none;
    -webkit-transition: all 0.2sease;
    transition: all 0.2sease;
}
a:hover, a:active {
    color: #FF521B;
    -webkit-transition: all 0.2sease;
    transition: all 0.2sease;
}
.primary-menu ul.navbar-nav > li:hover > a:not(.btn), .primary-menu ul.navbar-nav > li.active > a:not(.btn), .login-signup ul.navbar-nav > li:hover > a:not(.btn), .login-signup ul.navbar-nav > li.active > a:not(.btn) {
  color: #FF521B;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.primary-menu ul.navbar-nav > li.itemSelected > a:not(.btn), .primary-menu ul.navbar-nav > li.active > a:not(.btn), .login-signup ul.navbar-nav > li:hover > a:not(.btn), .login-signup ul.navbar-nav > li.active > a:not(.btn) {
  color: #FF521B;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.primary-menu ul.navbar-nav > li.dropdown .dropdown-menu li > a:not(.btn), .login-signup ul.navbar-nav > li.dropdown .dropdown-menu li > a:not(.btn) {
  padding: 8px 0px;
  background-color: transparent;
  color: #777;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.text-4 {
    font-size: 18px !important;
    font-size: 1.125rem !important;
    line-height: 1.7rem !important;
}
.text-orange{
	color:#FF521B;
}
.text-blue {
    color: #284B63;
}
.text-gray{
  color:#D9D9D9;
}
.text-green{
	color:#294b63;
}
.text-black{
	color:#353535;
}
.bg-blue{
  background-color:#284B63;
}
.bg-gray{
  background-color:#D9D9D9;
}
.bg-White{
  background-color:#ffffff !important;
}
.bg-green{
  background-color:#3C6E71;
}
.bg-black{
  background-color:#353535;
}
.section-header {
  color: #3C6E71;
}
.text-primary, .btn-light, .btn-outline-light:hover, .btn-link, .link-primary {
  color: #ff521b !important;
}
.fab.fa-x-twitter{
	font-family:sans-serif;
}
.fab.fa-x-twitter::before{
	content:"𝕏";
	font-size:1.2em;
}

#header .navbar {
  padding: 1px;
  margin-left: 218px;
  width: 100%;
}
.bg-offWhite {
      background-color: rgb(255, 255, 255, 0.6);
    border: 2px solid rgb(255, 255, 255, 1);
    border-radius: 10px;
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
#Home .fullwidth_container {
  background-image: url(../images/typewriter.jpg);
  z-index: 0;
/*  background-attachment: fixed;*/
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  transition: background-image 300msease-in 200ms;
}

.section_2,.section_3{
	display: none;
}
.page-section {
  /*background-color: #ffffff;*/
  /*color: #444;*/
  display: flex;
  flex-wrap: wrap;
      margin: 7rem 0;
    padding: 1rem;
}
.my-8 {
    margin-top: 6rem !important;
}
.fullwidth_container {
  width: 100%;
}
#Home .row {
  width: 100%;
  height: 90vh;
  position: relative;
  align-content: center;
  justify-content: space-between;
  padding: 0px;
}
/*.typewriter {
    background-color: rgba(214, 214, 214, 0.8);
    width: max-content;
    padding: 20px;
}*/
/*#Home h1.h1.headlineText {
  color: #093d55;
  font-family: 'Gotham-Bold';
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-shadow: -1px 1px 8px rgb(0 0 0 / 30%);
  text-align: left;
  line-height: 3.4rem;
  position: relative;
  margin-left: 20px;
}
#Home h2 {
  color: #FF521B;
  font-size: 1.4rem;
  margin-left: 20px;
}
.type {
  color: #fff;
  overflow: hidden;
  width:0;
  white-space: nowrap;
  animation: typing 3.5s steps(30,end) infinite;
  animation-delay: 2s;
}

@keyframes typing{
  from { width: 0% }
  to { width:100% }
}*/
  .typewriter {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
    text-shadow: -1px 1px 8px rgb(0 0 0 / 30%);
    display: inline-block;
    border-right: 2px solid #ff521b;
    font-size: 2rem;
    animation: blinkCursor 0.75s step-end infinite;
    line-height: 4rem;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 50px;
        color: #ff521b;
    font-family: 'Gotham-Bold';

    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-top-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
    border-bottom-color: rgb(255, 255, 255);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;



        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blinkCursor {
            50% { border-color: transparent; }
        }


.social-media-menu {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  flex-direction: column;
  background-color: #ebeced;
  align-items: center;
  border-radius: 0;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.blog-post.card {
    min-height: 200px;
}
.social-media-menu i {
  color: #0a3151;
  font-size: 1.5rem;
  display: block;
  padding: 5px 30px;
  transition: all .2sease-in-out;
}
section#meetTheTeam .text-primary, .btn-light, .btn-outline-light:hover, .btn-link, .link-primary {
    color: #ff521b !important;
}
@media (max-width: 991.98px) {
  .navbar-toggler span {
     display: block;
     position: absolute;
     height: 3px;
     width: 100%;
     background: #FF521B;
     border-radius: 2px;
     opacity: 1;
     left: 0;
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
     -webkit-transition: 0.25sease-in-out;
     transition: 0.25sease-in-out;
 }
}
.primary-menu ul.navbar-nav > li, .login-signup ul.navbar-nav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
    ;
    height: 100%;
}
ul.navbar-nav li{
  position: relative;
}

ul.navbar-nav li:before,
ul.navbar-nav li:after {
  opacity: 0;
  transition: 0.3s ease;
}

ul.navbar-nav li:hover:before,
ul.navbar-nav li:hover:after,
ul.navbar-nav li:focus:before,
ul.navbar-nav li:focus:after {
  opacity: 1;
}


ul.navbar-nav li:before,
ul.navbar-nav li.itemSelected:hover:before,
ul.navbar-nav li.itemSelected:before {
  content: "";
  position: absolute;
  z-index: -1;
/*      box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
*/     top: 50%;
bottom: 0px;
left: 5px;
right: 5px;
}

ul.navbar-nav li.itemSelected:after,
ul.navbar-nav li.itemSelected:hover:after,
ul.navbar-nav li.itemSelected:after {
	content: "";
	background: #dacbb9;
	position: absolute;
	width: 12px;
	height: 12px;
	left: 50%;
	bottom: -6px;
	margin-left: -6px;
	transform: rotate(45deg);
	box-shadow: inset 3px 3px 3px rgba(255, 82, 27, 0.5), inset 1px 1px 1px rgba(0, 0, 0, 0.3);

	opacity: 1;
}



ul.navbar-nav li.itemSelected:before,
ul.navbar-nav li:hover:before,
ul.navbar-nav li:focus:before {
	content: "";
	position: absolute;
	z-index: -1;
	box-shadow: 0 2px 3px rgba(255, 82, 27, 0.5);
	top: 50%;
	bottom: 0px;
	left: 5px;
	right: 5px;
	opacity: 1;
}
.featured-box:not(.style-5) .featured-box-icon {
    display: flex;
    font-size: 40px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    width: 45px;
    margin-top: 0;
    margin-bottom: 25px;
    color: #4c4d4d;
    border-radius: 0;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 14px;
}
.btn-primary {
   background-color: #366596;
    border-color: #366596;
}
.row {
    padding: 5px;
}
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active:hover,
.btn-primary:not(:disabled):not(.disabled):active:hover{
    background-color: #ff521b;
    border-color: #ff521b;
    color: #ffffff;
}
ul.navbar-nav li:hover:after,
ul.navbar-nav li:focus:after {
	box-shadow:inset 3px 3px 3px  rgba(0,0,0,0.2), 
	inset 1px 1px 1px opacify( rgba(0,0,0,0.2),0.1);
}

ul.navbar-nav li:focus {
	outline: none;
}

ul.navbar-nav li a {
	color: #444;
	text-decoration: none;
}
ul.navbar-nav li a:focus {
	outline: none;
}

ul.navbar-nav li a span {
	position: relative;
	top: -0.5em;
}
ul.list-unstyled li {
	padding: 10px 0 0 30px;
	text-indent: -10px;
}
.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url('../images/arrowup.svg');
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2sease-in-out;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/arrowup.svg');
    transform: rotate(-180deg);
}
.accordion-button:focus {
    border-color: rgba(60, 111, 114, 0.6);
    box-shadow: 0 0 0 .25rem rgba(60, 111, 114, 0.6);
}
.accordion-button:not(.collapsed) {
    background-color: rgb(255 255 255);
    color: #f65623 !important;
}


.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #3c6e71;
    outline: 0;
    box-shadow: 0 0 5px rgb(60 110 113);
}
.card-area {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	height: 100%;
	justify-content: space-evenly;
	padding: 1rem;
}
.card-section {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	width: 100%;
	cursor: url(../images/Icons/pen.png), auto;
}
.card-book {
	background-color: rgba(0,0,0, .05);
	box-shadow: -.1rem 1.7rem 6.6rem -3.2rem rgba(0,0,0,0.5);
	height: 21rem;
	position: relative;
	transition: all 1s ease;
	width: 21rem;
	border: 0px solid rgba(0, 0, 0, 0.125);
}
.flip-card {
	height: 21rem;
	perspective: 100rem;
	position: absolute;
	right: 0;
	transition: all 1s ease;
	visibility: hidden;
	width: 21rem;
	z-index: 100;
}
.flip-card > * {
	visibility: visible;
}
.flip-card__container {
	height: 100%;
	position: absolute;
	right: 0;
	transform-origin: left;
	transform-style: preserve-3d;
	transition: all 1s ease;
	width: 100%;
}

.card-front,
.card-back {
	backface-visibility: hidden;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.card-front {
/*	background-color: #3C6E71;*/
background-color: #38699c;
	height: 21rem;
	width: 21rem;
	padding: 10px;
}

/* Front side's top section */
.card-front__bt {
    clip-path: polygon(0 10%, 43% 10%, 50% 0, 57% 10%, 100% 10%, 100% 100%, 0 100%);
    /* background: linear-gradient(to bottom, #FF521B, #0a3151); */
    background: #ffffff;
    padding: 40px 0 2px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    color: #284B63;
    height: 25%;
}
.animation-card_image {
    padding: 5px;
    display: flex;
    height: 100%;
}
.animation-card_image img {
    width: 100%;
    height: 100%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}


.card-front__tp {
    display: flex;
    height: 75%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.card-back {
	background-color: #fafbfa;
	transform: rotateY(180deg);
	color:#284B63;
	padding: 0.5rem;
}
.inside-page ul,.inside-page ol {
    padding-left: 1rem;
}
.inside-page {
	background-color: #fafbfa;
	box-shadow: inset 20rem 0px 5rem -2.5rem rgba(0,0,0,0.25);
	height: 100%;
	padding: 0.5rem;
	position: absolute;
	right: 0;
	transition: all 1s ease;
	width: 21rem;
	z-index: 1;
	color:#284B63;
}




.inside-page__container {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-align: left; 
	width: 100%;
}
/* Functionality ====================================*/

/* This is to keep the card centered (within its container) when opened */
.card-book:hover {
	box-shadow:
	-.1rem 1.7rem 6.6rem -3.2rem rgba(0,0,0,0.75);
	width: 42rem;
}

/* When the card is hovered, the flip card container will rotate */
.card-book:hover .flip-card__container {
	transform: rotateY(-180deg);
}

/* When the card is hovered, the shadow on the inside page will shrink to the left */
.card-book:hover .inside-page {
	box-shadow: inset 1rem 0px 5rem -2.5rem rgba(0,0,0,0.1);

}
.card {
    color: #284B63;
}


.slider-wrap{
    height: 100%;
    width: 100%;
    position: relative;
    display: block;
}

.slider{
	position: absolute;
	height: 100%;
	width: 100% ; 
	left: 50px;
	top: 50px;
}
.slider-wrap-holder{
	min-height: 500px;
	width:100%;
	overflow: hidden;
}
.slider-item{
	height: fit-content;
	width: 80% ; 
	padding: 20px 40px 25px 30px;
	background-color: #ffffff;
	display: flex;
	justify-content: flex-start;
	position: absolute;
	opacity: 0;
	z-index: 0;
	box-shadow: 0 4px 9px #f1f1f4;
	position: absolute;
	left: 0;
	top: 0;
}

.animation-card_content{
	width: 100%;
	margin-left: 26px;
}


.animation-card_content_title{
	color: #FF521B;

}
.animation-card_content_description{
	color: #284B63;
}

.profile-image {
    display: inline-block;
    width: 80%;
    z-index: 1;
    position: relative;
    padding: 10px;
    border: 2px solid rgba(255, 82, 27, 0.5);
}
.profile-image img {
    max-width: 100%;
    vertical-align: top;
}
.image-holder {
/*    width: 100%;
height: 100%;*/
justify-content: center;
align-items: center;
}

.blog-post .title-blog {
    margin-bottom: 1rem;
    color: #FF521B;
}

/* Back to Top */
#back-to-top {
    display: none;
    position: fixed;
    z-index: 1030;
    bottom: 8px;
    right: 10px;
    background-color:  #366596;
    text-align: center;
    color: white;
    font-size: 16px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 0.25rem;
    -webkit-transition: all 0.3sease-in-out;
    transition: all 0.3sease-in-out;
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}
span.showHide {
    color: #FF521B;
}
#back-to-top:hover {
  background-color: #ff521b;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color:#ffffff;
}

.rtl #back-to-top {
  left: 10px;
  right: auto;
}
section#contactUs {
    padding-bottom: 40px !important;
}
footer.footer.fixed-bottom.bg-white {
	border-top: 1px solid rgba(0, 0, 0, 0.2);

}

.footer-container{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
@media (max-width: 575.98px) {
  #back-to-top {
    z-index: 1029;
}
}


/*MOBILE*/
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse,.navbar-expand-lg .navbar-nav {
     width: 100%;
 }
 .navbar-expand-lg .navbar-nav {
     justify-content: flex-end;
 }

}
@media (max-width: 991.98px) {
    #header .closeBtn {
        z-index: 111;
        position: absolute;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-item-align: stretch;
        align-self: stretch;
        top: 0px;
        left:0;
        height: 100%;
    }
     #header .logo img {
    max-height: 60px;
    max-width: 150px;
}
    #header .logo {
      right: 0px;
        left: auto;

}
    ul.navbar-nav li.itemSelected:after,
    ul.navbar-nav li.itemSelected:hover:after,
    ul.navbar-nav li.itemSelected:after {
        background: transparent;
        box-shadow: none;
    }
    ul.navbar-nav li.itemSelected:before,
    ul.navbar-nav li:hover:before,
    ul.navbar-nav li:focus:before {
        box-shadow: none;
    }
    .slider {
       left: 0px; 
       top: 0px; 
   }
   .slider-item {
    width: 80%;
    padding: 15px 15px 5px 5px;
}
#Home .fullwidth_container{
background-position: center center;

}
#Home h1.h1.headlineText {
    font-size: 2rem;
}
  .typewriter {
    background-color: rgba(214, 214, 214, 0.8);
    text-shadow: -1px 1px 8px rgb(0 0 0 / 30%);
    display: inline-block;
    border-right: 2px solid #ff521b;
    font-size: 1.25rem;
    animation: blinkCursor 0.75s step-end infinite;
    line-height: 3rem;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 50px;
        color: #093d55;
    font-family: 'Gotham-Bold';
        }
}