/***
    The new CSS reset - version 1.7.2 (last updated 23.6.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
 /* *:where(:not(html, iframe, canvas, img, svg, video):not(svg *, symbol *)) {
    all: unset;
    display: revert;
} */

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-width: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

html,
body {
	margin: 0;
	padding: 0;
    font-family: 'Heebo', sans-serif;
	font-weight: normal;
	font-size: 24px;
	direction: rtl;
	transition: 0.3s;
	color: #fff;
}
main{
    background-color: #344858;
}
.text-center{
    text-align: center;
}
.fnt-medium{
    font-weight: 500;
}
.view-row{
    height: 100vh;
}

/* CONTENT */
.icon{
    opacity: 0;
}
.content-col{
    width: 100%;
    background-color: #344858;
}
.content-wrap{
    position: relative;
}
.content-wrap .title h1{
    color: #FFC800;
    font-size: 2.8rem;
    line-height: 0.9;
    margin-bottom: 0;
    text-align: center;
}
.content-wrap .title span.ttl{
    width: 100%;
}
.content-wrap span.icon{
    width: 25.4%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: -3.5rem;
}
.logo{
    width: 70%;
    margin: 0 auto;
}
.content-wrap .content{
    line-height: 1.45rem;
}
/* IMAGE */
.image-col{
    width: 100%;
    transition: 0.5s;
}
.image-col.start{
    width: 0;
    position: relative;
    z-index: -1;
}
.bg{
    min-height: 250px;
}

/* FORM */
.form-col{
    width: 100%;
    background-color: #FFC800;
    color: #344858;
}
.form-col .form-wrap{
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
}
.form-wrap h5{
    color: #344858;
    text-align: center;
}
.form-col  .form-group{
    line-height: 1;
}
.form-col .form-control{
    height: 2.152rem;
    border-radius: 0;
    border: 0;
    outline: 0;
    font-size: 0.8rem;
    color: #BABCBE;
}
.form-col label{
    font-size: 0.68rem;
}
.error {
    color: red;
    display: none;
    position: absolute;
}
.form-col .subm-btn{
    position: relative;
    border-radius: 3rem;
    background-color: #344858;
    border: 0;
    text-align: center;
    color: #FFC800;
    margin: 0 auto;
    padding: 0.8rem 2.5rem;
}
.form-col p{
    line-height: 1.23rem;
}
@media only screen and (max-width: 480px){
    body,
    html{
        font-size: 20px;
    }
}

@media only screen and (max-width: 320px){
    body,
    html{
        font-size: 18px;
    }
}