@import "../../assets/fonts/stolzl/stylesheet.css";
@import 'header.css';
@import 'body.css';
@import 'footer.css';
@import 'newsRoom.css';
@import 'pricing.css';

:root {
    --dark-two: #020202;
    --dark-two-transparent: #02020246;

    --dark-three: #1b1e1d;
    --dark-four: #f6f6f6;
    --main-color: #71757D;
    --main-hover: #212121;
    --light-one: #fff;
    --light-two: #f9fafb;
    --light-three: #f6f7fb;

    --primary-color: #006C98;
    --secondary-color: #15AFD9;
    --dark-color: #091826;
    --light-color: #9CD9E8;
    --accent-color: #FFD513;

    --bright-blue-transparent: rgba(135, 191, 205, 0.77);
    --bright-blue: #87BFCD;

    --fade-blue: #5b899c;

    --grey-button-color: #8D8D8D;
    --grey-button-color-transparent: #8D8D8D42;

    --border-color: #C1DBE2;
}

html {
    background-image: url('/assets/images/website_background.png');
    background-repeat: no-repeat;
    background-size: cover;

}

.powered-by-vagary {
    text-align: center;
    display: block;
    margin-top: 20px;
    color: #fff;
    font-size: 0.8rem;
}
.powered-by-vagary a {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    html {
        background-image: url('/assets/images/website_background.png');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    html {
        background-image: url('/assets/images/website_background.png');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }
}


#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid black;
    padding: 10px 0;
}

.logo {
    width: 100px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.my-menu {
    display: flex;
    align-items: center;
}

.menu-item {
    margin-left: 20px;
}

.menu-item a {
    color: black;
    text-decoration: none;
}

body {
    font-family: Stolzl !important;
}

button {
    font-family: Stolzl !important;
}

/* Genral Styles */


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.holBody {
    width: 100%;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    width: 100%;
}

.container {
    position: relative;
    z-index: 5;
    max-width: 92rem;
    margin: 0 auto;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
}

.text {
    font-size: 1.25rem;
    color: var(--dark-two);
    line-height: 1.6;
}

.column-1 {
    margin-right: 1rem;
}

.column-2 {
    margin-left: 1.5rem;
}

.image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z-index {
    position: relative;
    z-index: 2;
}

.downloadBtn {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    margin-right: 1rem;
    background-color: var(--grey-button-color-transparent);
    color: var(--bright-blue);
    border-radius: 2rem;
    font-size: 1.05rem;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--main-color);
}

.downloadBtn .btn {
    width: 200px;
}

.downloadBtn .btn i {
    margin-right: 0.3rem;
}

.btn:hover {
    background-color: var(--main-color);
}

.btn.small {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
}

/* End Genral Styles */
@media (max-width: 1450px) {
    .part-img {
        width: 200px;
    }

    #header nav {
        padding: 0 !important;
    }

    /*body{*/
    /*    display: none;*/
    /*}*/
    nav .container {
        width: 90%;
    }

    .holBody {
        width: 90% !important;
        /*margin: 0 !important;*/
    }
}

@media (max-width: 850px) {
    .image img {
        margin-top: 1rem;
    }

    .grid-2 {
        grid-template-columns: 1fr !important;
    }

    nav {
        width: 100%;
    }

    .holBody {
        width: 80%;
    }

    nav .container {
        width: 80%;
    }

    .column-1 {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .column-2,
    .column-3 {
        margin: 0;
    }

    .body10,
    .body8 {
        margin: 0 0 1rem 0;
    }

    .body1 {
        margin-bottom: 1rem;
    }

    .hamburger-menu {
        display: flex;
    }



    header .column-1 {
        max-width: 550px;
        margin: 0 auto;
    }

    .my-menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        background-color: var(--bright-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: translateX(100%);
        transition: 0.5s;
    }

    #header .my-menu {
        border: 10px #006C98 !important;
    }

    .my-menu ul {
        flex-direction: column;
    }

    .my-menu a {
        color: var(--light-one);
    }

    .body3 {
        margin-bottom: 1rem;
    }

    .body3 .container.grid-2,
    .body2 .container.grid-2 {
        margin-bottom: 0;
    }



    .grid-item {
        width: 50%;
    }

    .gallery-image {
        height: 210px;
        max-width: 270px;
    }

    .background-bg {
        height: 340px;
    }

    .skill-bar {
        width: 100%;
    }

    .about .column-1:before {
        font-size: 5rem;
    }

    .about .points {
        top: 60%;
        left: 59%;
    }



    .records .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-nav {
        bottom: 3rem;
    }

    .contact-box {
        grid-template-columns: 1fr;
        padding: 3.2rem 2.7rem;
    }

    .contact-info {
        padding-right: 0;
        padding-bottom: 0.5rem;
    }

    .contact-form {
        padding-left: 0;
        padding-top: 0.5rem;
    }

    .information-wrap {
        margin-top: 0.7rem;
    }

    .information:not(:last-child) {
        margin-bottom: 0.8rem;
    }

    .contact-input.textarea {
        min-height: 220px;
    }

    .contact:before {
        height: 25%;
    }

    .contact:after {
        height: 75%;
        top: 25%;
    }

    .footer-about {
        grid-column: 1 / 3;
    }

    .grid-4-col {
        margin: 1rem 0;
        padding: 0;
    }

    .social-media a {
        margin: 0.4rem 1.4rem 0.4rem 0;
    }

    .back-btn-wrap {
        display: flex;
        align-items: center;
    }

    .bottom-footer {
        flex-direction: column;
        margin-top: 2rem;
        padding-right: 2rem;
        display: inline;
    }

    .followme-wrap {
        margin-top: 1rem;
    }

    .infoFrom {
        margin-top: 1rem;
        padding: 0 1.5rem;
        box-shadow: none;
    }

    .phones {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        justify-content: center;
    }

    .image_overlay {
        position: static;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        transform: inherit;
        border-radius: none;
        backdrop-filter: none;
        display: flex;
        opacity: 1;
    }

    .image_description {
        padding: 0;
        text-align: left;
        margin: 1rem 0;
    }

    .cards {
        display: flex;
        flex-wrap: wrap;
    }

    .cvForm {
        flex-direction: column;
    }

    .cvForm input {
        margin-bottom: 1rem;
    }

    .body7 {
        display: flex;
        flex-direction: column;
    }

    .attention {
        margin: 2rem 0 3rem 0;
    }

    .logoPart2 img {
        width: 250px;
    }

    .mediaHeader h4 {
        font-size: 1.5rem;
    }

    .mediaHeader h3 {
        font-size: 1.75rem;
    }

    .part-img {
        width: 150px;
    }

    .footer .container {
        width: 80%;
    }

    .footer .grid-4 {
        grid-template-columns: 3fr;
    }



    .dropdown-content {
        max-height: 120px;
    }

    .body9 {
        max-width: 100vw;
        padding: 1.5rem 12.3%;
    }

    .body9 h3,
    .body10 h3 {
        font-size: 1.2rem;
    }

    .body9 p,
    .body10 p {
        font-size: 0.8rem;
    }

    .body10 a {
        font-size: 0.8rem;
    }

    .readMoreBtn a {
        padding: 0.4rem 1rem;
    }

    .body2 {
        max-width: 100vw;
        padding: 0 12.3%;
    }

    .gridLV {
        grid-template-columns: 1.5fr 2.5fr;
    }

    .column {
        padding: 1rem 0;
    }

    .container2 .column-2 {
        padding-left: 1rem;
    }

    .downloadBtn {
        margin-top: 1rem;
        justify-content: space-around;
    }

    .downloadBtn .btn {
        width: 130px;
        margin-right: 0.3rem;
    }

    .downloadBtn a {
        font-size: 0.7rem;
        width: 130px;
    }

    .downloadBtn a i {
        font-size: 1.2rem;
    }
}

@media (max-width: 1510px) {
    @media (min-width: 1451px) {
        #header nav {
            padding: 0 40px !important;
        }

        .holBody {
            padding: 0 40px !important;
            margin: 0 !important;
        }

    }




}

@media (max-width: 500px) {


    .grid-2 {
        grid-template-columns: 1fr !important;
    }

    .column-1 {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .downloadBtn .btn {
        width: 100px;
    }



    .header-title1 {
        font-size: 1.5rem;
    }

    .header-title2 {
        font-size: 1.2rem;
    }



    header .column-1 {
        max-width: 550px;
        margin: 0 auto;
    }

    .my-menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        background-color: var(--bright-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: translateX(100%);
        transition: 0.5s;
    }

    .my-menu ul {
        flex-direction: column;
    }

    .my-menu a {
        color: var(--light-one);
    }

    .grid-item {
        width: 50%;
    }

    .gallery-image {
        height: 210px;
        max-width: 270px;
    }

    .background-bg {
        height: 340px;
    }

    .skill-bar {
        width: 100%;
    }

    .about .column-1:before {
        font-size: 5rem;
    }

    .about .points {
        top: 60%;
        left: 59%;
    }

    .records .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-nav {
        bottom: 3rem;
    }

    .contact-box {
        grid-template-columns: 1fr;
        padding: 3.2rem 2.7rem;
    }

    .contact-info {
        padding-right: 0;
        padding-bottom: 0.5rem;
    }

    .contact-form {
        padding-left: 0;
        padding-top: 0.5rem;
    }

    .information-wrap {
        margin-top: 0.7rem;
    }

    .information:not(:last-child) {
        margin-bottom: 0.8rem;
    }

    .contact-input.textarea {
        min-height: 220px;
    }

    .contact:before {
        height: 25%;
    }

    .contact:after {
        height: 75%;
        top: 25%;
    }

    .footer-about {
        grid-column: 1 / 3;
    }

    .grid-4-col {
        margin: 1rem 0;
        padding: 0;
    }

    .social-media a {
        margin: 0.4rem 1.4rem 0.4rem 0;
    }

    .back-btn-wrap {
        display: flex;
        align-items: center;
    }

    .followme-wrap {
        margin-top: 1rem;
    }

    .infoFrom {
        box-shadow: none;
    }

    .image_overlay {
        position: static;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        border-radius: none;
        backdrop-filter: none;
        display: flex;
        opacity: 1;
    }

    .image_description {
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .image_tilte {
        font-size: 1rem;
    }

    .infoFrom {
        width: 19rem;
        padding: 0;
    }

    .textInput,
    .selectInput {
        width: 18.5rem;
        font-size: small;
    }

    .doubleInput input,
    .doubleInput select {
        width: 9.15rem;
        font-size: small;
    }

    .phoneInputCode {
        width: 6.15rem;
        font-size: small;
    }

    .phoneInputNumber {
        width: 12.15rem;
        font-size: small;
    }

    .cards,
    .parts {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .text {
        font-size: 0.8rem;
    }

    .text1 {
        font-size: 0.6rem;
    }

    .body5 p {
        margin-bottom: 0.3rem;
    }

    .body8 h3 {
        font-size: 1.2rem;
    }

    .container2 {
        display: flex;
        flex-direction: column;
    }

    .container2 .column-2 {
        padding-left: 0;
    }

    .downloadBtn {
        margin-top: 1rem;
        justify-content: center;
    }
}

@media (max-width: 290px) {


    .part {
        flex-direction: row !important;
    }

    .followme-wrap {
        margin: 0.8rem 0.8rem 0.8rem 0;
    }

    .infoFrom {
        width: fit-content;
        padding: 0;
    }

    .textInput,
    .selectInput {
        width: 14rem;
        font-size: small;
    }

    .doubleInput input,
    .doubleInput select {
        width: 6.9rem;
        font-size: small;
    }

    .phoneInputCode {
        width: 2.9rem;
        font-size: small;
    }

    .phoneInputNumber {
        width: 10.9rem;
        font-size: small;
    }

    .bottom-footer {
        padding: 0;
    }
}
