/*************************************************
               STYLE SHEET
**************************************************/

/*CUSTOM SCROLL BAR*/
*,
html {
    scroll-behavior: smooth;
}
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    scrollbar-color: rgb(210, 210, 210) rgb(46, 54, 69) !important;
    scrollbar-width: thin !important;
    --white: #fff;
    --black: #1e1e1e;
    --blue: rgb(27 41 107);
    --secondary: #202124;
    --gray: #b8bca7;
}
::-webkit-scrollbar {
    height: 12px;
    width: 8px;
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: gray;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}
::-webkit-scrollbar-corner {
    background: #000;
}

/*DEFAULT*/
body {
    margin: 0;
    overflow-x: hidden !important;
    font-family: "Source Sans Pro", sans-serif;
}

a {
    text-decoration: none;
    color: var(--white);
}

a,
button {
    transition: 0.5s;
}

p {
    letter-spacing: 0.06em;
}

fieldset {
    border: 0;
}

a,
button,
input,
textarea,
select {
    outline: none !important;
}

img {
    width: 99%;
}

.title {
    font-family: "Playfair Display", serif;
}



em {
    font-style: normal;
    color: var(--blue);
}

p {
    letter-spacing: 0.06em;
}

.title {
    font-family: "Playfair Display", serif;
    color: rgb(27 41 107);
}

.title_header {
    width: 80%;
    text-align: center;
    margin: auto;
}

.title_header h1 {
    font-size: 2em;
    color: rgb(247 210 25);
}

.title_header h3 {
    font-size: 1.2em;
    font-weight: 400;
    color: rgb(27 41 107);
    font-weight: 600;
}

.btn1 {
    padding: 20px;
    text-align: center;
    display: inline-block;
    width: 200px;
    background-color: #e5c109;
    border-radius: 40px;
    font-weight: 600;
}

.btn1:hover {
    background-color: #c7a70a;
}

.border-shape {
    background: var(--secondary) none repeat scroll 0 0;
    color: #fff;
    display: block;
    height: 3px;
    left: 0;
    margin: 20px auto;
    position: relative;
    right: 0;
    text-align: center;
    top: 0;
    width: 80px;
}

.border-shape::before {
    background: var(--blue) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    left: 80px;
    margin: 0 auto;
    position: absolute;
    text-align: center;
    top: 1px;
    width: 100%;
}

.border-shape::after {
    background: var(--blue) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    margin: 0 auto;
    position: absolute;
    right: 80px;
    text-align: center;
    top: 1px;
    width: 100%;
}

@media (max-width: 820px) {
    .nav-items{
        display: none;
    }
    .btn1,
    .btn2 {
        padding: 10px 15px;
        width: 150px;
    }
    .title_header {
        width: 100%;
    }
    .title_header h1 {
        font-size: 1.5em;
    }

    .title_header h3 {
        font-size: 1em;
    }
}

/*ANIMATION*/
@keyframes arrows {
    0%,
    100% {
        color: black;
        transform: translateY(0);
    }
    50% {
        color: #3ab493;
        transform: translateY(20px);
    }
}

.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/*HEADER*/
.header {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue);
    padding: 1rem 0;
    padding-bottom: 3rem;
}

.header section {
    /* width: 100%; */
    text-align: center;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header section span {
    margin: 0 40px;
}

.header section span a {
    color: var(--white);
    white-space: nowrap;
    font-size: 20px;
}

.header section span a:hover {
    color: #e5c109;
}

@media (max-width: 820px) {
    .nav-items{
        display: none;
    }
    
}

/*TOP NAVIGATION*/
#header {
    position: fixed;
    top: 5rem;
    width: 100%;
    z-index: 99999;
    transition: 0.5s;
}

.topnav {
    overflow: hidden;
    background-color: var(--white);
    width: 70%;
    margin: auto;
    box-shadow: 0px 6px 16px -6px rgba(1, 1, 1, 0.7);
    transition: 0.5s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}
.nav-items{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.topnav a {
    color: var(--blue);
    text-decoration: none;
    font-size: 17px;
}
.nav-items a{
    margin-left: 40px;
    text-transform: uppercase;
}
.logo{
    font-weight: 800;
    font-size: 20px;
    text-align: left;
}
.logo span{
    color: #e5c109;
}
#icon {
    float: right;
}

#active {
    display: flex;
}

#active img {
    width: 130px;
}

#active:hover {
    color: #fff;
}

.topnav .icon {
    display: none;
}


@media screen and (max-width: 1120px) {
   

    .topnav a.icon {
        float: right;
        display: block;
    }
    #active {
        display: none;
    }
}

@media screen and (max-width: 1120px) {
    .nav-items .responsive {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
    }
    .topnav {
        justify-content: space-between;
    }
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
    }
    .nav-items .responsive a {
       display: flex;
    }
    .header {
        justify-content: center;
    }
    
}

/*BANNER*/
.banner {
    width: 100%;
    height: 90vh;
    background: linear-gradient(rgba(1, 1, 1, 0.7), rgba(1, 1, 1, 0.7)),
        url("../img/porter5.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.banner:after {
    content: "";
    background-image: url("../img/wave.png");
    background-size: cover;
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
}

.banner section {
    width: 65%;
    text-align: center;
}

.banner section .cursive {
    font-size: 65px;
    margin-bottom: 10px;
}

.banner section h2 {
    font-weight: 200;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.728);
    line-height: 1.6em;
}

.banner .btn1 {
    display: inline-block;
    margin: 2vh 20px;
}

@media (max-width: 820px) {
    .banner section {
        width: 95%;
    }
    .banner section h2 {
        font-size: 1.3em;
    }
    .banner section .cursive {
        font-size: 2.3em;
    }
    .banner .btn1 {
        margin: 2vh 10px;
    }
}

/*SECTION1*/
.section1 {
    display: flex;
    align-items: center;
}

.section1 section {
    padding: 2rem;
    width: 100%;
    font-size: 18px;
    color: rgba(1, 1, 1, 0.7);
    position: relative;
}

.section1 section em {
    position: relative;
}

.section1 section em:before {
    content: "";
    position: absolute;
    left: -3%;
    top: -10%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: linear-gradient(#cebfb6, #ddd);
    z-index: -1;
}

.section1 section .title {
    font-size: 2.5em;
    line-height: 0;
    color: var(--black);
}

.section1 section ol li {
    padding: 15px 0;
    list-style: none;
}

.section1 section ol li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    background-color: #cebfb6;
    border-radius: 50%;
    padding: 8px;
    margin: 0 10px;
    color: var(--secondary);
}

.section1 .dots {
    width: auto;
    position: absolute;
    right: 10%;
    pointer-events: none;
    --delay: 0s;
    animation: arrows 4s var(--delay) infinite ease-in;
}

/*ABOUT MR*/
.about_mr {
    display: flex;
    align-items: center;
}

.about_mr section {
    position: relative;
    width: 100%;
    padding: 4rem;
}

.about_mr section:nth-child(2) {
    padding: 4rem 2rem;
}

.about_mr section img:nth-child(1) {
    border: 5px solid var(--white);
    border-radius: 5px;
}

.about_mr section img:nth-child(2) {
    position: absolute;
    right: 15%;
    bottom: 5%;
    width: 40%;
    border: 5px solid var(--white);
}

.about_mr .title {
    font-size: 3em;
    line-height: 0em;
    color: rgb(27 41 107);
}

.about_mr h3 {
    color: rgb(27 41 107);
    font-size: 22px;
    font-weight: 600;
}

.about_mr p {
    font-size: 18px;
    color: rgba(1, 1, 1, 0.7);
}

.about_mr .btn1 {
    display: block;
}

@media (max-width: 820px) {
    .about_mr {
        display: block;
    }

    .about_mr section {
        padding: 1rem;
    }

    .about_mr section:nth-child(2) {
        padding: 4rem 1rem;
    }

    .about_mr .title {
        font-size: 1.8em;
    }

    .about_mr p {
        font-size: 18px;
    }
}

/* items */
.items img {
    width: 45%;
}
.items h3 {
    background-color: rgb(216 220 239);
    padding: 20px;
}
.items {
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.items section {
    width: 100%;
    padding: 4rem;
}
.items .title {
    font-size: 3em;
    line-height: 0em;
    color: rgb(247 210 25);
}

.items h3,
.items h2 {
    color: rgb(27 41 107);
    font-size: 22px;
    font-weight: 600;
}
.item {
    display: flex;
    align-items: center;
}

@media (max-width: 820px) {
    .items {
        display: block;
    }

    .items section {
        padding: 1rem;
    }

    .items section:nth-child(2) {
        padding: 4rem 1rem;
    }

    .items .title {
        font-size: 1.8em;
    }

    .items p {
        font-size: 18px;
    }
    .items {
        margin-top: 166px;
    }
}

/*SECTION2*/
.section2 {
    padding: 3rem;
    margin: 100px 0;
}

.section2 .cards section {
    display: flex;
    align-items: center;
}

.section2 .cards section .card {
    margin: 10px;
    background-color: var(--white);
    border-radius: 10px;
    width: 25%;
    padding: 30px;
    box-shadow: 0 0 20px 0 #ddddddba;
    position: relative;
    height: 350px;
    flex: 1;
}

.section2 .cards section .card h3 {
    font-weight: 600;
    color: rgb(27 41 107);
    margin-top: 40px;
}

.section2 .cards section .card p {
    color: rgb(27 41 107);
}

.section2 .cards section .card .mark {
    padding: 5px;
    background-color: rgb(133, 10, 10);
    border-radius: 50%;
    float: right;
    color: white;
    width: 35px;
    height: auto;
    text-align: center;
    top: 20px;
    position: absolute;
    right: 25px;
}

/*SECTION2*/
.section22 {
    padding: 3rem;
    background: linear-gradient(
        rgb(116 116 116 / 70%),
        rgb(68 68 68 / 70%)
    ),
    url(../img/porter5.jpg);
    background-size: cover;
    background-position: center;
}

.section22 .cards section {
    display: flex;
    align-items: center;
}

.section22 .cards section .card {
    margin: 10px;
    background-color: var(--white);
    border-radius: 30px;
    width: 100%;
    padding: 2rem;

    position: relative;
}

.section22 .cards section .card h3 {
    font-weight: 600;
    color: rgb(27 41 107);
}

.section22 .cards section .card p {
    color: #1b296bc2;
}

.section22 .cards section .card .mark {
    padding: 5px;
    background-color:rgb(247 210 25);
    border-radius: 50%;
    float: right;
    color: white;
    width: 35px;
    height: 35px;
    text-align: center;
    font-weight: 700;
}

@media (max-width: 820px) {
    .section22 {
        padding: 1rem;
    }
    .section22 .cards section {
        display: block;
    }
    .section22 .cards section .card {
        margin: 10px 0;
    }
}
/* price */

.price {
    margin: 0 0 100px;
    background: linear-gradient(rgb(26 26 26 / 80%), rgba(48, 48, 48, 0.7)),
        url(../img/main22.jpg);
    background-size: cover;
    background-position: center;
}
.price .title_header h1 {
    color: rgb(133 10 10);
}
.section2 .cards section .price-card h3 {
    font-weight: 600;
    color: var(--white);
    margin-top: 0px;
}
.section2 .cards section .price-card p {
    color: #ffffffde;
}

.section2 .cards section .price-card {
    width: 25%;
    padding: 20px;
    position: relative;
    height: 460px;
    border: 1px solid #ffffff57;
    margin: 0px;
    background-color: transparent;
    border-radius: 0px;

    box-shadow: none;
}
/*SECTION3*/
.section3 {
    width: 100%;
    height: 110vh;
    background-image: url("../img/main20.jpeg");
    background-repeat: no-repeat;
    background-size: 80% 100%;
    background-position: left;
    display: flex;
    align-items: center;
    justify-content: right;
    position: relative;
}

.section3 section {
    width: 60%;
    position: absolute;
    right: 5%;
    padding: 2rem;
    background-color: var(--secondary);
    color: var(--white);
}

.tech .title {
    color: var(--white);
}
.tech .tech-title {
    color: #850a0a;
    font-size: 30px;
}
.section3 p {
    color: #ffffff99;
}
.section3 section .card {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.section3 section .card span {
    padding: 0 1rem;
}

@media (max-width: 820px) {
    .section3 {
        display: block;
        background-image: none;
    }
    .section3 section {
        width: 100%;
        position: static;
        padding: 1rem;
    }
}
@media (max-width: 820px) {
    .section2 {
        padding: 1rem;
    }
    .section2 .cards section {
        display: block;
    }
    .section2 .cards section .card {
        margin: 10px 0;
        width: 100%;
        padding: 20px;
        height: auto;
    }
    .item {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .items h3,
    .items h2 {
        padding: 20px;
    }
    .items img {
        width: 90%;
    }
    .section2 .cards section .price-card {
        width: 100%;
        height: auto;
    }
    .section3 {
        height: auto;
    }
}
/*SECTION4*/
.section4 {
    align-items: top;
    padding: 3rem;
}

.section4 .title_header {
    padding: 3rem;
    width: 60%;
}

.section4 section {
    width: 100%;
}

.section4 .cards {
    width: calc(100% - 2em);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 1em;
    grid-template-areas: "a a b c" "a a d d";
    width: 100%;
}

.section4 .card {
    width: 100%;
    position: relative;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}
.section4 .card:last-child {
    margin-bottom: 0;
}
.section4 .card:before {
    height: 0;
    content: "";
    display: block;
    padding-bottom: 47.36%;
}
.section4 .card.content:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    content: "";
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
}
.section4 .card:nth-child(1) {
    grid-area: a;
}
.section4 .card:nth-child(2) {
    grid-area: b;
}
.section4 .card:nth-child(3) {
    grid-area: c;
}
.section4 .card:nth-child(4) {
    grid-area: d;
}
.section4 .card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section4 .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section4 .card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.section4 .card-label {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    background: #089f8a;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.7em;
    color: white;
    padding: 0.5em;
}
.section4 .card-title {
    position: absolute;
    left: 1em;
    bottom: 1em;
    color: #d6dbeb;
    z-index: 5;
    font-size: 0.8em;
}
.section4 .card.form {
    position: relative;
}
.section4 .card.form:before {
    background: linear-gradient(
        60deg,
        #f79533,
        #f37055,
        #ef4e7b,
        #a166ab,
        #5073b8,
        #1098ad,
        #07b39b,
        #6fba82
    );
}
.section4 .card.form:after {
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    width: calc(100% - 1em);
    height: calc(100% - 1em);
    content: "";
    background: #252833;
}
.section4 .card.form .form-title {
    position: absolute;
    top: 3rem;
    left: 3rem;
    font-size: 7vw;
    font-weight: 900;
    z-index: 5;
    text-transform: uppercase;
    background: linear-gradient(
        60deg,
        #f79533,
        #f37055,
        #ef4e7b,
        #a166ab,
        #5073b8,
        #1098ad,
        #07b39b,
        #6fba82
    );
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.section4 .card.form .form-title:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    content: "More";
    opacity: 0.5;
    filter: blur(10px);
    transition: all 0.25s ease;
    z-index: 2;
    background: linear-gradient(
        60deg,
        #f79533,
        #f37055,
        #ef4e7b,
        #a166ab,
        #5073b8,
        #1098ad,
        #07b39b,
        #6fba82
    );
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    transform: translateX(-50%) translateY(-50%);
}
.section4 .card:nth-child(2) .card-label {
    background: #ef4e7b;
}
.section4 .card:nth-child(3) .card-label {
    background: #1098ad;
}
.section4 .card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
}
.section4 .card:hover .form-title:before {
    filter: blur(3px);
    opacity: 0.7;
}

@media (max-width: 820px) {
    .section4 {
        padding: 1rem;
    }
    .section4 .title_header {
        padding: 1rem;
        width: 100%;
    }
    .section4 .cards {
        width: calc(100% - 2em);
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-gap: 1em 0em;
        grid-template-areas: "a" "a" "b" "c" "d";
        width: 100%;
    }
}

/*CONTACT FORM*/
.contact {
    padding: 3rem;
    background-color: #f3f7f6;
    background-size: cover;
    display: flex;
    position: relative;
}

.contact section {
    width: 100%;
    margin: auto;
    position: relative;
}

.contact section form {
    width: 80%;
    background-color: var(--white);
    padding: 2rem 1rem;
    box-shadow: 0 0 20px 0 #dddddd8c;
    border-radius: 30px;
}

.contact section input {
    width: 100%;
    padding: 1rem;
    background-color: #f3f7f6;
    border: 0;
}

.contact section textarea {
    width: 100%;
    padding: 1rem;
    resize: none;
    background-color: #f3f7f6;
    border: 0;
}

.contact section button {
    margin: auto;
    border: 0;
    display: block;
    color: var(--white);
}

.contact_info ul {
    display: flex;
    align-items: center;
    margin: auto;
}
.contact_info {
    display: flex;
    align-items: center;
}
.contact_info ul li {
    padding: 1rem;
    list-style: none;
    /* line-height: 1.8em; */
    font-size: 24px;
    font-weight: 700;
    color: #1b296b;
}

.contact_info ul li .fa {
    color: #f7d219;
    padding: 15px;
    background-color: var(--white);
    border-radius: 10px;
    font-size: 35px;
    box-shadow: 0 0 20px 0 #dddddd8c;
    width: 60px;
    text-align: Center;
}

@media (max-width: 820px) {
    .contact {
        display: block;
        padding: 1rem;
    }
    .contact section form {
        width: 100%;
    }
    .contact_info ul {
        width: 100%;
    }
    .contact_info {
        flex-wrap: wrap;
    }
}

/*FOOTER*/
footer {
    width: 100%;
    background: linear-gradient(rgba(1, 1, 1, 0.8), rgba(1, 1, 1, 0.8)),
        url("../img/main1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: local;
    color: var(--white);
    padding: 3rem 0;
}

footer a {
    color: var(--white);
}

footer a:hover {
    color: var(--primary);
}

footer .top_section {
    padding: 1rem;
    display: flex;
    align-items: center;
}

footer .top_section section {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .top_section section span {
    padding: 1rem;
}

footer .top_section section span .fa {
    font-size: 2em;
    color: var(--primary);
}

footer .middle_section {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .middle_section span {
    display: block;
    padding: 1rem 0;
    text-align: center;
}

footer .middle_section span a {
    margin: 0 20px;
}

footer .middle_section span a .fa {
    font-size: 1.5em;
}

footer .bottom_section {
    text-align: center;
    font-size: 13px;
    padding: 1rem 0;
}

@media (max-width: 820px) {
    footer {
        background-attachment: local;
    }

    footer .middle_section {
        display: block;
    }
    footer .middle_section span a {
        white-space: nowrap;
        margin: 10px;
        display: inline-block;
    }
}

/*ADDITIONAL*/
#roll_back {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--blue);
    border-radius: 5px;
    border: 2px solid var(--white);
    padding: 5px 10px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    box-shadow: 0px 6px 16px -6px rgba(1, 1, 1, 0.5);
    color: var(--white);
    font-weight: 900;
}

.credits {
    background-color: #1e1e1e;
    position: fixed;
    bottom: 2rem;
    right: 0;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    z-index: 9999;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0px 6px 16px -6px rgba(1, 1, 1, 0.5);
}

.credits a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 200;
}
@media (max-width:450px){
    .nav-items{
        display: none;
    }
   
    .nav-items.responsive{
        flex-direction: column;   
    }
    .responsive{
        flex-direction: column;
        align-items: flex-end;
        display: flex;
        position: absolute;
        right: 21px;
        background: white;
        top: 90%;
        
        padding: 30px 20px 0;
    }
    .nav-items .responsive {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
    }
    .topnav {
        justify-content: space-between;
        width: 90%;
    }
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
    }
    .nav-items .responsive {
        display: flex;
    }
    .nav-items a {
        margin-bottom: 16px;
        font-size: 18px;
    margin-left: 10px;
    }
    .header section {
        width: 100%;
        text-align: center;
        padding: 0rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .header section span {
        margin: 0 0px 5px 0px;
    }
}