
/* Admin Bar */

#cookieConsent{
    position: fixed;
    bottom: 0;
    z-index: 9999999999999;
    width: 100%;
    background-color: var(--main-bg-color);
    padding: 30px;
}

#cookieConsent .container {
    max-width: 100%;
}

#cookieConsent .container a{
    cursor: pointer;
}


/* Bootstrap reset */

/* div[class*="col-"] {
    padding-right: 0px;
    padding-left: 0px 
  } */


/* Header Section */

.headContainer{
    position: sticky;
    box-shadow: 0px 0px 15px var(--main-text-color-light);
    background: var(--main-nav-bg-color);
    top: 0;
    z-index: 997;
}

.headerWrap{
    width: 100%;
    max-width: var(--main-container-width);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    padding: 10px var(--main-padding-width);
}

.headerLogo{
    flex: 1;
}

.headerLogo .mainlogo{
    height: 80px;
    width: unset;
}

/* Nav Bar */

.overLay{
    position: fixed;
    background: #000;
    opacity: 0.8;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    z-index: 998;
    right: -450px;
    transition: .3s ease;
}

.overLay.active{
    right: 0;
}


.navCont{
    display: flex;
    width: 100%;
    max-width: 450px;
    margin: auto;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
    padding: 10px var(--main-padding-width);
    position: fixed;
    z-index: 999;
    top: 40px;
    right: -720px;
    transition: .3s ease;
    align-items: center;
}

.navCont.active{
    right: 0;
    top: 70px;
}

.navCont a{
    flex-grow: 1;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

.btn-invited-by-us{
    background: var(--alt-bg-color);
    border-radius: 5px;
    border: 1px solid var(--main-text-color);
    font-weight: 700;
    color: var(--alt-text-color);
    width: 100%;
}

.get-started{
    border: 2px solid var(--alt-main-bg-color)!important;
    max-width: 100%!important;
}

.btn-invited-by-us:hover{
    background: var(--alt-main-bg-color);
    color: var(--main-text-color);
}

.btn-invited-by-us-cta{
    background: var(--alt-main-bg-color);
    border-radius: 5px;
    border: 1px solid var(--alt-main-text-color);
    font-weight: 200;
    color: var(--alt-text-color);
    font-size: var(--h3-font-size);
    width: 50%;
    margin-top: 20px;
    max-width: 350px;
}

.btn-invited-by-us-cta:hover{
    background: var(--main-bg-color);
    color: var(--alt-bg-color);
}

.btn-invited-by-us-cta-white{
    background: var(--alt-bg-color);
    border-radius: 5px;
    border: 1px solid var(--alt-bg-color);
    font-weight: 700;
    color: var(--main-text-color);
    font-size: var(--h3-font-size);
    width: 50%;
    margin-top: 20px;
    max-width: 350px;
}

.btn-invited-by-us-cta-white:hover{
    background: var(--main-bg-color-light);
    color: var(--alt-text-color);
}

@media screen and (min-width:769px) {
    .navCont{
        flex-direction: row;
        position: sticky;
        opacity: 1;
        top: 0;
        padding: 10px 0 0 0;
        width: calc(100% - 110px);
        max-width: 100%;
    }

    .navCont a{
        max-width: 100px;
    }

    .overLay.active{
        display: none;
    }

    .btn-invited-by-us{
        background: unset;
        border: unset;
    }

    .get-started {
        max-width: 120px !important;
    }
}

/* Burger Menu */

.burgerMenuCont{
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
}

.burgerMenu{
    padding: 15px;
    line-height: 5px;
    cursor: pointer;
    z-index: 999;
    position: relative;
}

.burgerMenu span{
    height: 5px;
    width: 100%;
    background-color: var(--alt-text-color);
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

.burgerMenu span:nth-child(1) {
    top: 25%;
}
.burgerMenu span:nth-child(3) {
    top: 75%;
}

.burgerMenu.active span {
    background-color: white;
}
.burgerMenu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.burgerMenu.active span:nth-child(2) {
    opacity: 0;
}
.burgerMenu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (min-width:769px) {
    .burgerMenu{
        display: none;
    }

}


.page404{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 120px);
}

.page404 h1{
    font-size: calc(var(--hero-font-size-lg) * 2.5);
    font-weight: 700;
}

.page404 h2{
    font-size: var(--h2-font-size);;
    font-weight: 700;
}

/* Form */

form {
    width: 100%;
}

.form-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--formgap-10);
    /* margin-bottom: var(--formgap-10); */
}

.form-flex{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-control {
    font-family: 'Visby-light';
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-container .form-100col .form-col-inner{
    display: flex;
    flex-direction: row;
    align-items: center;
    /* flex: 1 0 calc(33% - var( --formgap-8)); */
    /* max-width: calc(33% - var( --formgap-8)); */
    width: calc(100% / 3.06);
    justify-content: space-between;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}

.form-container .form-100col .form-col-inner label{
    flex: 1 0 20%
}

.form-container .flexreset{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--formgap-10);
    max-width: 100%;
}

.form-container input[type=text], select, textarea{
    margin-bottom: 0px;
}

input[type="radio" i]:disabled {
    background-color: initial;
}

.form-container textarea{
    min-height: 250px;
}

/* Footer */

footer{
    color: #000;
}

.footer a{
    color: #ff0000;
}

/* hero */

.hero{
    width: 100%;
}

.hero-65h{
    height: 65vh;
}

.hero-imagebg{
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
}

.hero-bgcolor{
    background-color: var(--alt-main-bg-color);
}

.hero-bgcolor-blue{
    background-color: var(--main-bg-color);
}

.heroWrap{
    display: flex;
    width: 100%;
    height: 100%;
    margin: auto;
    max-width: var(--main-container-width);
}

.hero h1{
    font-size: var(--hero-font-size-sm);
}

.hero h2{
    font-size: var(--h2-font-size);
}

/* .hero p{
    width: 70%;
    margin: 20px auto;
} */

.hero-blue-full-overlay{
    display: flex;
    width: 100%;
    max-width: unset;
    height: 100%;
    background-color: var(--blue-bg-color-fade);
    padding: 30px var(--main-padding-width);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--alt-text-color);
}

.hero-white-small-overlay{
    height: fit-content;
    background-color: var(--white-bg-color-fade);
    padding: 30px;
}

.hero-h1-large{
    font-size: var(--hero-font-size-lg);
}

.hero-h1-small{
    font-size: var(--hero-font-size-sm);;
}


/* Main Section Template */

.mainsectioncontainer{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--main-gap);
    /* padding: 0 var(--main-padding-width); */
    margin: 0;
}

.bgcolor{
    background-color: var(--alt-main-bg-color);
}

.bgcolor-blue{
    background-color: var(--main-bg-color);
    color: #fff;
}

/* Section footer Template */

.sectionfooterContainer{
    width: 100%;
    border-top: 1px solid var(--alt-main-bg-color);
}

.sectionfooterContainerWrap{
    display: flex;
    width: 100%;
    height: 100%;
    margin: auto;
    max-width: var(--main-container-width);
}

.sectionfooterContainerWrap .block{
    display: flex;
    margin: auto 0px;
    width: 100%;
    height: 100%;
    background-color: var(--alt-bg-color);
    padding: 80px var(--main-padding-width);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--main-text-color);
    gap: 30px;
}

.sectionfooterContainerWrap .block h1{
    font-size: var(--h1-font-size);
}

.sectionfooterContainerWrap .block h2{
    font-size: var(--h2-font-size);
}

.sectionfooterContainerWrap .block p{
    margin: 15px auto;
    text-align: center;
}

.sectionfooterContainerWrap .block .blockLeft,
.sectionfooterContainerWrap .block .blockRight,
.sectionfooterContainerWrap .block .blockCenter{
    display: flex;
    flex: 1;
    flex-direction: column;
    align-content: flex-start;
    flex-wrap: wrap;
}

.sectionfooterContainerWrap .block .blockLeft{
    flex: 2;
}

.sectionfooterContainerWrap .block .blockLeft h2,
.sectionfooterContainerWrap .block .blockRight h2,
.sectionfooterContainerWrap .block .blockCenter h2{
    width: 100%;
    font-size: var(--h3-font-size);
    line-height: 32px;
    border-bottom: 1px solid var(--main-bg-color);
}

.sectionfooterContainerWrap .block img{
    width: 100%;
}

.sectionfooterContainerWrap .block .mainlogo{
    width: 100%;
    max-width: 50px;
}


@media screen and (min-width:426px) {
    .sectionfooterContainerWrap .block{
        flex-direction: row;
    }
}


@media screen and (min-width:1921px) {

    .headerWrap,
    .hero1ContainerWrap,
    .hero2ContainerWrap,
    .hero3ContainerWrap,
    .w100BlueBGContainerWrap,
    .w100WhiteBGContainerWrap,
    .textblockw100WhiteBGContainerWrap,
    .w50blockimageContainerWrap,
    .sectioncvContainerWrap,
    .imagepodContainerWrap,
    .sectionfooterContainerWrap{
        max-width: var(--main-container-width);
        margin: auto;
        padding: 10px;
    }

}

/* Section Blog Template */
.card{
    border: 1px solid var(--main-grey);
    border-radius: 5px;
    overflow: hidden;
    height: 430px;
}

.card .cardimg{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
}

.card .cardtext{
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: flex-start;
    padding: 10px;
    height: 170px;
}

.card .cardtext p{
    text-align: left;
    margin: 0!important;
}

.card .cardtext .btn{
    border: 1px solid rgba(0, 0, 0, .125);
    max-width: 100px;
    font-size: var(--p-font-size);
}

.card .cardtext .btn:hover{
    background: #333;
    color: #fff;
}

.card .cardtext div{
    display: flex;
    height: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-end;
}

  /*/ Skills Percent /////////////////////////////*/

  #editorial {	
	display: table;
    margin: auto;
	position: relative;
	/* padding: 50px 0; */
	margin: -15px 0 0 0;
    margin: 0em -100%;
    margin: 0em calc(50.5% - 50vw);
    width: 120%;
  }



.parallax {

	  /* Full height */
	  height: 600px; 

	  /* Create the parallax scrolling effect */
	  background-attachment: fixed;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-size: cover;
	}


	.percent_overlay{
		background: #000;
		height: 100%;
		opacity: 0.3;
	}
	
.percent_container{
        display: flex;
        flex-wrap: wrap;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		max-width: 1290px;
    	width: 100%;
}
.percent_container img{
		width: 100%;
	}
.percent_container h3{
        font-size: 80px;
        flex: 1 0 100%;
		text-align: center;
		color: #fff!important;
	}
.percent_container .percent_box{
    flex: 1;
    position: relative;
    color: #fff;
    float: left;
    padding: 30px;
}
.percent_container .percent_box h1{
    color: #fff !important;
    text-align: center !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    font-size: var(--h1-font-size);
        }
        .percent_container .percent_box p{
    color: #fff!important;
    text-align: center!important;
}

@media screen and (max-width: 1024px) {
	.percent_container .percent_box h1{
			transform: translate(-50%, 140%);
    		font-size: var(--h1-font-size);
				}
	}

@media screen and (max-width: 768px) {
	.parallax {
		height: 700px;
		background-attachment: unset;
	}
	
	.percent_container .percent_box{
		width: 33%;
		height: 300px;
    }
    .percent_container .percent_box h1{
			transform: translate(-50%, 175%);
    		font-size: var(--h1-font-size);;
				}
		.percent_container .percent_box .percent_box:nth-child(5){
			left: 17%;
		}
		.percent_container .percent_box .percent_box:nth-child(6){
			left: 20%;
		}
	}
	

@media screen and (max-width: 425px) {
	.parallax {
		height: 800px;
	}
	
	.percent_container .percent_box{
		width: 50%;
		height: 220px;
    }
    .percent_container .percent_box h1{
			transform: translate(-50%, 135%);
    		font-size: var(--h1-font-size);;
				}
	
        .percent_container .percent_box .percent_box:nth-child(5){
    left: 0%;
}
    .percent_container .percent_box .percent_box:nth-child(6){
        left: 50%;
        transform: translate(-50%, 0px);
    }
}

/* // Gallery ///////////////// */

.thumb_text{
  text-transform: capitalize;
}

div.thumb{
  display:table-cell;
  /*width:16.6666667%;*/
  border: 5px white solid;
  float: left;
  text-align: center;
  color: black;
  font-size: 14pt;
  font-weight: 500;
  background: white;
  padding-bottom:0px;
}

.img{
  width: 100%;
  height: auto;
  border: 1px black solid;
}

.imageview {
  max-height: 80%;
  max-width: 80%;
}

.imageview_container{
	max-width: 100%;
	max-height: 100%;
		img{
			width: auto;
			height: auto;
			max-width: 90vw;
			max-height:90vh;
			margin: 5vh 0 5vh 0;
			border: 2px solid #000;
			background: #fff;
			padding: 20px 20px 40px 20px;
		}
}

.imageview_container_border{
  background: #fff;
	padding: 20px 20px 40px 20px;
}


.imageoverlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.9);
    overflow: hidden;
    transition: 0.5s;
}

.imageoverlay-content {
    position: relative;
    top: 50%;
    width: 100%;
    text-align: center;
    padding: 0;
    transform: translate(0%, -50%);
}

.imageoverlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
		:hover {
    		color: #f1f1f1;
		}
		:focus {
    		color: #f1f1f1;
		}
}

.imageoverlay .closebtn {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 60px;
    z-index:101;
}

.module table {
	width: 100%;
	border-collapse: collapse;
}

.module td {
	padding: 5px 10px;
}

.module tr:nth-child(2n){
	background-color: #e4e4e4;
}


/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    width: 100%;
    margin: 0 auto; }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #e4e4e4;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    margin-top: 20px;
    margin-bottom: 200px; }
  
  /* container_timeline around content */
  .container_timeline {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%; }
    .container_timeline h2 {
      text-align: left !important;
      font-size: var(--robportfolio-28); }
    .container_timeline p {
      text-align: left !important; }
  
  /* The circles on the timeline */
  .container_timeline::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1; }
  
  /* Place the container_timeline to the left */
  .left {
    left: 0; }
  
  /* Place the container_timeline to the right */
  .right {
    left: 50%; }
  
  /* Add arrows to the left container_timeline (pointing right) */
  .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #e4e4e4;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #e4e4e4; }
  
  /* Add arrows to the right container_timeline (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #e4e4e4;
    border-width: 10px 10px 10px 0;
    border-color: transparent #e4e4e4 transparent transparent; }
  
  /* Fix the circle for container_timelines on the right side */
  .right::after {
    left: -12px; }
  
  /* The actual content */
  .content {
    padding: 20px 30px;
    background-color: #E4E4E4;
    position: relative;
    border-radius: 6px; }
  
  /* Media queries - Responsive timeline on screens less than 600px wide */
  @media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
      left: 31px; }
  
    /* Full-width container_timelines */
    .container_timeline {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px; }
      .container_timeline h2 {
        text-align: left !important;
        font-size: var(--robportfolio-37); }
      .container_timeline p {
        text-align: left !important;
        font-size: 1em !important; }
  
    /* Make sure that all arrows are pointing leftwards */
    .container_timeline::before {
      left: 60px;
      border: medium solid white;
      border-width: 10px 10px 10px 0;
      border-color: transparent #e4e4e4 transparent transparent; }
  
    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
      left: 18px; }
  
    /* Make all right container_timelines behave like the left ones */
    .right {
      left: 0%; } }

