@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Turret+Road:wght@200;300;400;500;700;800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,400&display=swap");



* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

:root {
    --main-color: #9C6137;
    --second-color: #CC9966;
    --text-color: #444444;
    --gradient: linear-gradient(#9C6137, #CC9966);
}

html::-webkit-scrollbar {
    width: 0.5rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5rem;
}

section {
    padding: 50px 100px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #EEEFF1;
    padding: 15px 100px;
}

.logo img {
    width: 50px;
}

.navbar {
    display: flex;
}

.navbar li {
    position: relative;
}

.navbar a {
    font-size: 1rem;
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;
}

.navbar a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #9C6137;
    bottom: -4px;
    left: 0;
    transition: .5s;
    position: absolute;
}

.navbar a:hover::after {
    width: 100%;
}

header .ri-close-line {
    display: none;
}

#menu-icon {
    font-size: 24px;
    cursor: pointer;
    z-index: 110;
    display: none;
}

.header-btn a {
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;
}

.header-btn .sign-in {
    background: #474FA0;
    color: #FFFFFF;
    border-radius: .5rem;
    transition: .5s;
}

.header-btn .sign-in:hover {
    background: #9C6137;
}

/*menu*/
.dropbtn {
    color: black;
    font-weight: bold;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #cbcbcc;
    color: black;

}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #11487e;
    color: rgb(255, 255, 255);

}

@media (max-width: 768px) {
    .logo {

        top: -21px;
        right: 0px;
        font-size: 2.5rem;
    }
}



.text h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
}

.text span {
    color: var(--main-color);
}

.text p {
    margin: 0.5rem 0 1rem;
    font-size: 1rem;
}

/*second section*/
:root {
    --white-100: hsl(206, 5%, 100%);
    --white-200: hsl(206, 5%, 90%);
    --white-300: hsl(206, 5%, 80%);
    --white-400: hsl(206, 5%, 65%);

    --black-100: hsl(210, 20%, 10%);
    --black-200: hsl(210, 20%, 8%);
    --black-300: hsl(210, 20%, 5%);
    --black-400: hsl(210, 20%, 3%);
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Rubik", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black-300);
    background-color: var(--white-100);
}

main {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
    background: none;
}

/* img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}
 */

.section {
    margin-inline: auto;
    padding-block: 5rem;
}

.container {
    max-width: 75rem;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.25rem;
}


/* parallax of our team */
.parallax-container-about {
    display: flex;
    min-height: 30vh;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 50px;
    padding-top: 14%;
    text-align: left;

    /*  this is where the magic happens:  */
    background-attachment: fixed;
    background-image: url(../images/about_us.png);
    /* background-position: center; */
    background-size: cover;
    /* background-color: #022e5a; */
    color: var(--color);
    row-gap: 4rem;
    text-align: right;
}



/*mission */
.heading {
    text-align: center;
}

.quote {
    color: #6b3e26;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.about-img img {
    width: 100%;
}

.about-text span {
    font-weight: 500;
    color: var(--main-color);
    text-transform: uppercase;
}

.about-text p {
    margin: 0.5rem 0 1.4rem;
}

.about-text .btn {
    padding: 10px 20px;
    background: #474FA0;
    color: #FFFFFF;
    border-radius: .5rem;
    transition: .5s;
}

.about-text .btn:hover {
    background: var(--main-color);
}

/*mission*/



/*values*/
.container-values {
    display: flex;
    min-height: 80vh;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;

    /*  this is where the magic happens:  */
    background-attachment: fixed;

    background-image: url(../images/human.jpg);
    background-position: center;
    background-size: cover;
    background-color: #022e5a;
    color: var(--color);
    row-gap: 4rem;

}

#img-black {
    width: 190px;


}

.paragraph-values {
    font-size: 16px;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 3%;
    text-align: center;
    font-weight: dark;
}

/*cards*/




.case-study-gallery {
    margin-top: 50px;
    width: 90%;
    margin: 50px auto;
    max-width: 1100px;
}

.case-study {
    position: relative;
    display: block;
    width: 90%;
    height: 250px;
    margin: 0 auto 2rem;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0px 25px 50px rgba(0, 0, 0, .5);
    overflow: hidden;
    transition: all .4s ease;

    @media screen and (min-width:37.5em) {
        height: 300px;
    }

    @media screen and (min-width:45em) {
        display: inline-block;
        width: 45%;
        margin-left: 25px;
    }
}


.case-study__img {
    width: 90%;
    display: block;
    margin-top: 50%;
    transform: translateY(50%);
    margin: 0 auto;
}


.case-study__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 10;

    &:after {
        content: '';
        width: 100%;
        border-radius: 10px;
        height: 100%;
        background-color: #202020;
        opacity: 0;
        position: absolute;
        top: 0;
        z-index: -10;
        left: 0;
        transition: all .3s ease;
    }
}

.case-study__title {
    position: relative;
    top: -200px;
    margin-bottom: 2rem;
    margin-top: 4rem;
    font-size: 2.25rem;
    font-family: 'Oswald';
    font-weight: 100;
    color: white;
    text-align: center;
    letter-spacing: 5px;
    transition: all .3s cubic-bezier(.3, 0, 0, 1.3);
}

.case-study__link {
    position: relative;
    display: block;
    width: 60%;
    top: 200px;
    padding: 10px;
    margin: 0 auto;
    font-family: 'Oswald';
    color: white;
    letter-spacing: 3px;
    text-decoration: none;
    text-align: center;
    border: 2px solid white;
    border-radius: 3px;
    font-size: 1.25em;
    transition: all .3s cubic-bezier(.3, 0, 0, 1.3);

    &:hover {
        background-color: white;
        color: #202020;
    }
}


.case-study:hover {

    .case-study__title {
        top: 0;
    }

    .case-study__link {
        top: 0;
    }

    .case-study__overlay:after {
        opacity: .75;
    }
}

.study1 {
    background-image: url('../images/look_beyond_today.jpg');
}

.study2 {
    background-image: url('../images/customer-cenetric.jpg');
}

.study3 {
    background-image: url('../images/quality-excellence.jpg');
}

.study4 {
    background-image: url('../images/thrive-together.jpg');
}

/*values*/


/*cta section*/
/* Newsletter */

.newsletter {
    background: linear-gradient(to top right, #6b3e26, #fdf5c9);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
}

.newsletter .box {
    margin-top: 1rem;
    background: #FFFFFF;
    border-radius: .5rem;
    padding: 4px 8px;
    width: 350px;
    display: flex;
    justify-content: space-between;
}

.newsletter .box input {
    border: none;
    outline: none;
}

.newsletter .box .btn {
    background: #474FA0;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: .5rem;
}

.copyright {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright span {
    font-family: 'Turret Road';
}


/*headings*/
.headings {
    font-size: 30px;
    background: #121FCF;
    background: linear-gradient(to right, #121FCF 0%, #CF1512 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-weight: 600;
    letter-spacing: 3px;
    font-family: 'Copperplate';

}

.center {
    padding-left: 5%;
    padding-right: 5%;
}

.background-img {
    background-image: url('../images/background-img.png');
}





/*footer*/
ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    background: #ffffff;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #000000;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #000000;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #000000;
    line-height: 28px;
}

.footer-social-icon span {
    color: #000000;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    padding-left: 0px;

}

.footer-social-icon a {
    color: #000000;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}



.footer-widget-heading h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #000000;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #ffffff;
}

.footer-widget ul li a {
    color: #000000;
    text-transform: capitalize;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #f3ebe8;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

#example1 {
    padding: 25px;
    background: linear-gradient(to top right, #fdf5c9, #6b3e26);
    background-repeat: no-repeat;
    background-size: auto;

}

/*footer*/


/* Responsive */

@media(max-width: 1375px) {
    .text {
        display: none;
    }
}

@media(max-width: 991px) {
    header {
        padding: 18px 40px;
    }

    section {
        padding: 50px 40px;
    }
}

@media(max-width: 881px) {
    .home {
        background-position: center;
    }

    .form-container .form {
        bottom: 0.2rem;
        left: 40px;
    }

    .text {
        display: initial;
    }
}

@media(max-width: 795px) {
    header {
        padding: 11px 40px;
    }

    #menu-icon {
        display: initial;
    }

    .sign-up {
        display: none;
    }

    .text h1 {
        font-size: 2.5rem;
        width: 320px;
    }

    .text p {
        font-size: .8rem;
        width: 320px;
    }

    .home {
        grid-template-columns: 1fr;
    }

    .form-container form {
        position: unset;
    }

    header .navbar {
        position: absolute;
        top: -500px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        background: #FFFFFF;
        box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
        transition: .2s ease;
        text-align: left;
    }

    .navbar.active {
        top: 100%;
    }

    .navbar a {
        padding: 1rem;
        border-left: 2px solid var(--main-color);
        margin: 1rem;
        display: block;
        transition: .3s ease;
    }

    .navbar a:hover {
        color: #FFFFFF;
        background: var(--main-color);
        border: none;
    }

    .navbar a::after {
        display: none;
    }

    .heading span {
        font-size: .9rem;
        font-weight: 600;
    }

    .heading h1 {
        font-size: 1.3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-img {
        padding: 1rem;
        order: 1;
    }

    .about-text {
        order: 2;
    }
}

@media(max-width: 568px) {
    .home {
        background-position: left;
    }

    .text h1 {
        width: 300px;
    }

    .text p {
        width: 300px;
    }

    .form-container {
        padding-top: 2rem;
    }

    .about-text p {
        font-size: 14px;
    }

    .copyright {
        flex-direction: column;
    }

    .newsletter .box {
        width: 284px;
    }
}

@media(max-width: 460px) {
    header {
        padding: 6px 14px;
    }

    .logo img {
        width: 30px;
    }

    section {
        padding: 50px 6px;
    }

    .header-btn .sign-in {
        padding: 7px 10px;
        font-size: 14px;
        font-weight: 400;
    }

    .text h1 {
        font-size: 2rem;
    }

    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(254px, auto));
    }
}









hr {
    border: none;
    height: 20px;
    width: 90%;
    height: 50px;
    margin-top: 0;
    border-bottom: 1px solid #1f1209;
    box-shadow: 0 20px 20px -20px #333;
    margin: -50px auto 10px;
}



/*our team*/

@import url(https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);

.social-links-modal li {
    display: inline-block;
    width: 50px;
    height: 53px;
    margin-right: 18px;
    margin-bottom: 18px;
}

.social-links-modal li a {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: solid 1px #6b3e26;
    position: relative;
    width: 46px;
    height: 46px;
    display: block;
    text-align: center;
}

.social-links-modal li a:hover {
    background: #6b3e26;
}

.social-links-modal li a:hover i {
    color: #fff;
}

.social-links-modal i {
    font-size: 18px;
    font-weight: normal;
}

.social-links-modal li a i {
    float: left;
    margin: 16px 0 0 18px;
}

.transition {
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 300ms linear;
    transition: all 500ms linear;
}

.social-links-modal {
    padding: 50px 0 0 0;
    width: 221px;
}

.social-links-modal li a span {
    width: 120px;
    height: auto;
    line-height: 20px;
    padding: 10px;
    left: 50%;
    margin-left: -62px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    background: #6b3e26;
    text-indent: 0px;
    position: absolute;
    bottom: 63px;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    -webkit-transform: translate(-35px) rotate(-25deg) scale(.5);
    -moz-transform: translate(-35px) rotate(-25deg) scale(.5);
    -o-transform: translate(-35px) rotate(-25deg) scale(.5);
    -ms-transform: translate(-35px) rotate(-25deg) scale(.5);
    transform: translate(-35px) rotate(-25deg) scale(.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.social-links-modal li a span:after {
    top: 100%;
    left: 50%;
    /* border: solid rgba(0, 0, 0, 0); */
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    margin-top: 0;
    pointer-events: none;
}

.social-links-modal li a span:after {
    border-top-color: #6b3e26;
    border-width: 7px;
    margin-left: -5px;
}

.social-links-modal li a:hover span {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0px) rotate(0deg) scale(1);
    -moz-transform: translate(0px) rotate(0deg) scale(1);
    -o-transform: translate(0px) rotate(0deg) scale(1);
    -ms-transform: translate(0px) rotate(0deg) scale(1);
    transform: translate(0px) rotate(0deg) scale(1);
}


/*
    Auther: Abdelrhman Said
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus,
*:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}



.wrapper {
    display: inline-flex;
    list-style: none;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #1DA1F2;
    color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #E4405F;
    color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
    background: #333333;
    color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #CD201F;
    color: #ffffff;
}

/* paragraph */
#paragraph {
    padding-left: 7%;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-right: 6%;
    text-align: center;
    font-size: 20px;
}



.column {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 25px;
}

@media screen and (max-width: 650px) {
    .column {
        width: 100%;
        display: block;
    }
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.container {
    padding: 0 16px;
}

.container::after,
.row::after {
    content: "";
    clear: both;
    display: table;
}

.title {
    color: grey;
}

.button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.button:hover {
    background-color: #555;
}

/*our team*/