/***
    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;
    /* margin-bottom: 3rem; */
}
/* All delay classes will take half the time to start */
/* :root {
    --animate-delay: 0.3s;
    --animate-duration: 0.8s;
} */
.icon{
    opacity: 0;
}
main{
    background-color: #344858;
}
.text-center{
    text-align: center;
}
.fnt-medium{
    font-weight: 500;
}
/* .full-view-row{
    height: 90vh;
} */
.no-padding,
.no-padding.row>*{
    padding: 0!important;
}
.text-left{
    text-align: left;
}
.text-color{
    color: #344858;
}
.title{
    color: #FFC800;
}

/* CONTENT */
.section-1 .content-col{
    width: 40%;
    background-color: #344858;
    transition: 0.5s;
}
.section-1 .content-col.start{
    width: 40%;
}
.section-1 .content-wrap{
    padding: 0 3vw 0 6vw;
    top: 15%;
    position: relative;
}
.content-wrap .title h1{
    color: #FFC800;
    font-size: 2rem;
    line-height: 0.9;
    display: inline-block;
}
.content-wrap .content{
    line-height: 1.45rem;
}
/* IMAGE */
.image-col{
    width: 60%;
    transition: 0.5s;
    position: relative;
}
.image-col.start{
    width: 0;
    position: relative;
    z-index: -1;
}
.bg{
    min-height: 850px;
    height: 100%;
}
.buterfly{
    width: 21%;
    position: absolute;
    bottom: 0;
    right: 10%;
}

.section-3 .content-col{
    background-color: #000;
    width: 42%;
    transition: 0.5s;
}
.section-3 .image-col{
    width: 58%;
    transition: 0.5s;
    position: relative;
}
.section-3 .content-wrap{
    position: relative;
    top: 15%;
}

/* FORM */
.form-col{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #FFC800;
    color: #344858;
    transition: 0.5s;
    padding: 0 3vw;
}
/* .form-col.start {
    width: 0%;
} */
.form-col .form-wrap{
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0 0;
}
.form-wrap h5{
    color: #344858;
}
.form-col  .form-group{
    line-height: 1;
}
#formcontact .form-group{
    display: inline-block;
    float: right;
    width: 25%;
}
.form-col .form-control{
    height: 2.152rem;
    border-radius: 0;
    width: 90%;
    margin: 0 0 0 2rem;
    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: 0rem;
    background-color: #344858;
    width: 90%;
    border: 0;
    text-align: right;
    color: #FFC800;
    margin: 0 auto;
    padding: 0.5rem 2.5rem;
    text-align: center;
}
.form-col p{
    line-height: 1.23rem;
}
@media screen and (max-width: 1680px) {
    html,
    body {
        font-size: 24px;
    }
}
@media only screen and (max-width:1440px),
screen and (min-device-width: 1366px) and (max-device-width: 1440px) and (orientation: landscape) {
	html, body {
		font-size: 23px;
	}
}
@media only screen and (max-width: 1024px),
screen and (max-device-width: 1024px) and (min-device-width: 992px) and (orientation: landscape) {
	html, body {
		font-size: 22px;
	}
}