@font-face {
  font-family: 'Lexend Exa';
  src: url("../../assets/fonts/Lexend-Exa.ttf");
}

@font-face {
  font-family: 'Fugaz One';
  src: url("../../assets/fonts/FugazOne-Regular.ttf");
}

@font-face {
  font-family: 'Kalam';
  font-style: normal;
  font-weight: 400;
  src: url("../../assets/fonts/Kalam-Regular.ttf");
}

/* @font-face {
  font-family: 'Kalam';
  font-style: normal;
  font-weight: 300;
  src: url("https://web.archive.org/web/20210912210131im_/https://tamirslo.dev/assets/fonts/Kalam-Light.ttf");
} */

.noticeModal {
    transform: translateY(-50%);
    top: 50%;
    background: #ff3434;
    border-radius: 15px;
    width: 50%;
    margin: auto;
    border: 2px solid white;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 24px;
    font-family: 'Lexend Exa';
}

#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 1.5em 0 1.5em 0;
    z-index: 200;
    overflow: hidden;
    transition: 0.4s;
}

#nav > ul {
    line-height: 0px;
    position: relative;
    display: inline-block;
    margin: 0;
    height: 21px;
    border-left: solid 3px rgb(160, 3, 3);
    border-right: solid 3px rgb(160, 3, 3);
}

#nav > ul:before, #nav > ul:after {
    content: '';
    display: block;
    width: 300%;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    height: 2px;
    background: #ff000080;
}

#nav > ul:before {
    right: 100%;
    margin-right: 3px;
}

#nav > ul:after {
    left: 100%;
    margin-left: 3px;
}

#nav > ul > li {
    display: inline-block;
    margin: -9px 0.5em 0 0.5em;
    border-radius: 0.5em;
    padding: 0.85em;
    border: solid 1px transparent;
    -moz-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
    -webkit-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
    -ms-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
    transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
}

#nav > ul > li > a, #nav > ul > li > span {
	color: white;
    display: block;
    text-decoration: none;
    border: 0;
    outline: 0;
	transition: 0.2s;
	font-weight: bold;
}

#nav > ul > li > a:hover {
    color: #ef8376;
}

#mnav {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  transition: 0.4s;
}

#mnav #myLinks {
	display: none;
}

#mnav a, #mnav span {
	color: white;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	display: block;
	transition: 0.4s;
	font-weight: bold;
	text-align: center;
}

#mnav a.icon {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	transition: 0.4s;
}

#mnav a.icon.open {
	transform: rotate(180deg);
}



#mnav > div > a:hover {
    color: #ef8376;
}


#header {
	padding: 0;
	height: 100%;
	position: relative;
}

#header .simpleParallax {
    height: 100%;
}

#header .simpleParallax img {
    height: 100%;
	width: 100%;
}

#header #headerContent {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	text-align: center;
    padding: 40px;
    background: linear-gradient(-40deg, white 5%, rgba(255, 255, 255, 0.25) 5%, rgba(255, 255, 255, 0.25) 95%, white 95%);
    border: 1px solid white;
    border-bottom-left-radius: 45px;
    border-top-right-radius: 45px;
}

#header #headerContent span {
	display: inline-block;
	color: white;
    font-size: 60px;
    font-family: 'Lexend Exa';
	font-weight: bold;
    letter-spacing: -5px;
    padding: 0 100px;
    padding-bottom: 20px;
    border-bottom: 6px solid #ffffff80;
    border-bottom-style: dotted;
}

#header #headerContent small {
	color: white;
    display: inline-block;
    margin-top: 25px;
    font-family: 'Lexend Exa';
    font-size: 24px;
    font-style: oblique;
}

.divider {
	height: 56px;
	position: relative;
	margin-top: -56px;
}

.divider img {
	width: 100%;
	height: 100%;
}

.section {
	position: relative;
	padding: 30px 100px;
	min-height: 90%;
    padding-bottom: 56px;
	padding-top: 69px;
}

.section h2 {
	font-family: 'Fugaz One';
    font-size: 7rem;
}

@media (max-width: 768px) {
	#header #headerContent {
		padding: 10px 20px;
	}
	
	#header #headerContent span {
		font-size: 40px;
		padding: 0;
	}
	
	.section {
		padding: 0px 60px;
	}

	.section h2 {
		font-size: 3rem !important;
		text-align: center !important;
	}
	
	#me h2 {
		transform: rotateZ(-8deg) !important;
	}
	
	#work h2 {
		transform: rotateZ(8deg) !important;
	}
	
	#footer h2 {
		transform: rotateZ(-8deg) !important;
	}
}

@media (max-width: 500px) {
	.section {
		padding: 0px 20px;
	}
}

#me {
	background: #0c54ad;
    padding-bottom: 56px;
}

#me h2 {
    transform: rotateZ(-1.5deg);
    text-shadow: 4px 4px 1px black;
	margin-bottom: 30px;
}

#me p {
	font-family: Kalam;
	font-size: 18px;
	color: white;
}

#work {
	background: #b15709;
	text-align: right;
	padding-bottom: 56px;
}

#work h2 {
    transform: rotateZ(1.5deg);
    text-shadow: -4px 4px 1px black;
    margin-bottom: 56px;
}

#work .projectsGallery {
	margin-bottom: 50px;
}

#footer {
	background: #004e00;
    padding-bottom: 106px;
}

#footer h2 {
    transform: rotateZ(-1.5deg);
    text-shadow: 4px 4px 1px black;
    padding-bottom: 56px;
}

#footer #contact {
    position: relative;
    height: 400px;
}

#contact h4, #mContact h4 {
    color: #002d00;
    text-align: center;
}

#mContact {
    box-shadow: black 0px 0px 15px 6px;
    border-radius: 6px;
}

#footer #contactAbout {
    position: absolute;
    left: 12.5%;
    width: 250px;
    z-index: 110;
    background: #139813;
    border-radius: 6px;
    top: 10%;
    height: 80%;
    box-shadow: black 0px -10px 20px -10px;
    padding: 15px 10px;
}

#footer #mContactAbout {
    background: #139813;
    border-radius: 6px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 30px 20px;
    text-align: center;
}

#footer #contactMain {
    position: absolute;
    width: 60%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    z-index: 110;
    background: #fbfbfb;
    box-shadow: black 0px 0px 15px 5px;
    border-radius: 6px;
    min-height: 100%;
    padding-left: 180px;
}

#footer #mContactMain {
    text-align: center;
    background: #fbfbfb;
    border-radius: 6px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 30px;
}

#contactMain h4 {
    margin-top: 2rem !important;
    position: relative;
}

#mContact #mContactMain h4, #mContact #mContactMain h4 small {
    display: block;
    width: 100%;
    padding: 2px;
}

#footer #contact #contactMain h4 small, #footer #mContact #mContactMain h4 small{
    display: block;
    font-size: 16px;
    color: gray;
}

#footer #contact #contactMain form input, #footer #contact #contactMain form textarea, 
#footer #mContact #mContactMain form input, #footer #mContact #mContactMain form textarea{
    display: block;
    border: 0;
    margin: 10px auto;
    padding: 4px 10px;
    background: #dadada;
    border-radius: 6px;
    width: 70%;
    outline: none;
}

#contactAbout a, #mContactAbout a{
    color: white;
    display: block;
    margin: 10px 0px;
    transition: 0.2s;
	text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

#mContactAbout a {
	font-size: 24px;
}

#mContactAbout .mini-icons a {
	display: inline-block;
}

#contactAbout a[data-src="mail"]:hover,
#mContactAbout a[data-src="mail"]:hover {
	color: orange;
}

#contactAbout a[data-src="skype"]:hover,
#mContactAbout a[data-src="skype"]:hover {
	color: #6febff;
}

#contactAbout a[data-src="phone"]:hover,
#mContactAbout a[data-src="phone"]:hover {
	color: #edff57;
}

#contactAbout > a:nth-child(2) {
    margin-top: 35px;
}

#contactAbout a i {
    font-size: 26px;
}

#mContactAbout a i {
    font-size: 28px;
}

#contactAbout .mini-icons {
	text-align: center;
}

#contactAbout .mini-icons a {
    display: inline-block;
    margin: 10px 6px;
    transition: 0.4s !important;
    vertical-align: middle;
}

#contactAbout .mini-icons a:hover {
    margin: 6px 0px;
}

#contactAbout .mini-icons a i {
    transition: 0.4s;
}

#contactAbout .mini-icons a:hover i {
    font-size: 34px;
}

.uil-skype {
    color: #6febff;
}

.uil-at {
    color: orange;
}

.uil-phone {
    color: #edff57;
}

.uil-github {
    color: #171717;
}

.portraitImage {
    background-image: url(/assets/img/me.jpg);
    width: 300px;
    height: 300px;
    background: url(/assets/img/me.jpg) center no-repeat;
    background-size: cover;
    background-position-y: -80px;
    border-radius: 100%;
    margin: 30px auto;
    box-shadow: 0px 0px 30px white;
}

.projectsGallery {
  margin: auto;
  margin-top: 50px;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 170px;
  grid-gap: 14px;
  padding-bottom: 50px;
}

.projectsGallery .item {
  display: flex;
  position: relative;
  width: 190px;
  height: 215px;
  background-color: #424242;
  clip-path: url(#my-clip-path);
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.projectsGallery .item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.projectsGallery .item:first-child {
  grid-row-start: 1;
  grid-column: 2 / span 2;
  background-color: #eeff8e;
}

.projectsGallery .item:nth-child(2) {
  grid-row-start: 1;
  grid-column: 4 / span 2;
  background-color: #99b4ff;
}

.projectsGallery .item:nth-child(3) {
  grid-row-start: 1;
  grid-column: 6 / span 2;
  background-color: #ff8282;
}

.projectsGallery .item:nth-child(4) {
  grid-row-start: 2;
  grid-column: 1 / span 2;
  background-color: #139187;
}

.projectsGallery .item:nth-child(5) {
  grid-row-start: 2;
  grid-column: 3 / span 2;
  background-color: #deb239;
}

.projectsGallery .item:nth-child(6) {
  grid-row-start: 2;
  grid-column: 5 / span 2;
  background-color: navy;
}

.projectsGallery .item:nth-child(7) {
  grid-row-start: 2;
  grid-column: 7 / span 2;
  background-color: skyblue;
}

.projectsGallery .item:nth-child(8) {
  grid-row-start: 3;
  grid-column: 2 / span 2;
}

.projectsGallery .item:nth-child(9) {
  grid-row-start: 3;
  grid-column: 4 / span 2;
}

.projectsGallery .item:nth-child(10) {
  grid-row-start: 3;
  grid-column: 6 / span 2;
}

.flip-card {
  background-color: transparent;
  width: 215px;
  height: 190px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}

.flip-card-back {
  color: black;
  transform: rotateY(180deg);
  top: 20%;
}

.flip-card-back h1 {
    font-family: Kalam;
}

.flip-card-back h1.long {
    font-size: 2rem;
    margin-top: 1rem;
}

.flip-card-back p {
  font-family: 'Fugaz One';
}
/*
.flip-card-back a{
  background-color: #00000080;
  border: 1px solid orange;
  border-radius: 10px;
  color: #ddd;
  transform: rotateY(180deg);
  cursor: pointer;
  padding: 5px;
  transition: 0.2s;
}*/

.flip-card-back a {
    background-color: #00000080;
    border: 1px solid orange;
    border-radius: 10px;
    color: #ddd;
    transform: rotateY(180deg);
    cursor: pointer;
    padding: 5px;
    transition: 0.2s;
    position: absolute;
    transform: rotateY(0deg);
    display: block;
    width: max-content;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 35%;
}

.flip-card-back a:hover{
  color: white;
  box-shadow: black 0px 0px 10px;
  letter-spacing: 3px;
}

.mProjectsGallery .item {
    height: 150px;
    width: 150px;
    margin: 4px;
    display: inline-block;
    vertical-align: middle;
    transition: 0.4s !important;
	background-color: #424242;
    text-align: center;
}

.mProjectsGallery .item:hover .item-bg {
    background: black;
}

.mProjectsGallery 
 .item .item-details {
    position: relative;
    top: -100%;
    padding: 10px 2px;
    opacity: 0;
    transition: 1s;
    height: 100%;
}

.mProjectsGallery 
 .item:hover .item-details {
    opacity: 1;
}

.mProjectsGallery .item .item-bg img {
    transition: 0.4s;
}

.mProjectsGallery .item:hover .item-bg img {
    opacity: 0.4;
}

.mProjectsGallery .item .item-details h1 {
    font-size: 25px;
    text-shadow: black 2px 2px 21px;
    margin: 20%;
}
/*
.mProjectsGallery .item .item-details a {
    background-color: #000000aa;
    border: 1px solid orange;
    border-radius: 10px;
    color: #ddd;
    cursor: pointer;
    padding: 5px;
    transition: 0.2s;
    display: inline-block;
}
*/
.mProjectsGallery .item .item-details a {
    background-color: #000000aa;
    border: 1px solid orange;
    border-radius: 10px;
    color: #ddd;
    cursor: pointer;
    padding: 5px;
    transition: 0.2s;
    display: inline-block;
    position: absolute;
    bottom: 10%;
	width: 90%;
    width: max-content;
    left: 0;
    right: 0;
    margin: auto;
}

@media (min-width: 1250px){
	.d-md-grid {
		display: grid !important;
	}
}

@media (min-width: 1000px){
	
	.d-sm-grid {
		display: grid !important;
	}
	
	.d-sm-grid-none {
		display: none!important;
	}
	
	.d-sm-custom-none {
		display: none!important;
	}
	
	.d-sm-grid-block {
		display: block!important;
	}
	
}

.clipNotSupported{
	display: none!important;
}

.clipNotSupported.d-sm-grid-none{
	display: block!important;
}

@media (max-width: 600px){
	#footer #mContact #mContactMain form input, #footer #mContact #mContactMain form textarea {
		width: 80%;
	}
	
	.copyright a {
		font-size: 12px !important;
	}
}

.portfolioModal {
	margin-top: 6rem;
}

.portfolioModal .modal-content .modal-header {
	margin: -6rem 0 -1rem;
	border-bottom: 0;
}

.portfolioModal .modal-content .modal-header img {
    width: 130px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}


.portfolioModal .modal-content .modal-body {
	padding-right: 2rem;
    padding-left: 2rem;
    color: #616161;
}

.portfolioModal .modal-content .modal-body p {
    text-align: justify;
}

.fade {
	transition-duration: 0.25s !important;
}

.copyright {
    text-align: center;
    background-image: url(/assets/img/waveBottom.png);
    height: 50px;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 200;
}

.copyright a {
    display: block;
    font-size: 14px;
    color: #ccc;
    font-family: monospace;
    padding: 20px;
	transition: 0.2s;
}

.copyright a:hover {
    color: #eee;
}

.copyright a span:hover {
    text-decoration: underline;
    color: #eee;
}

.grecaptcha-badge {
    bottom: 60px !important;
}
/*
     FILE ARCHIVED ON 21:01:31 Sep 12, 2021 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:44:59 May 12, 2022.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 147.568
  exclusion.robots: 0.086
  exclusion.robots.policy: 0.078
  RedisCDXSource: 2.794
  esindex: 0.012
  LoadShardBlock: 123.257 (3)
  PetaboxLoader3.datanode: 103.148 (4)
  CDXLines.iter: 18.591 (3)
  PetaboxLoader3.resolve: 150.172 (2)
  load_resource: 141.24
*/