@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Poppins:wght@400;600&display=swap');

:root {
    --sm_font_size: 0.8em;
    --normal_font_size: 1em;
    --md_font_size: 1.2em;
    --lg_font_size: 2em;
    --xl_font_size: 2.5em;
    --xxl_font_size: 3em;

    --tight_section_padding: 150px 10vw;
    --wide_section_padding: 100px 5vw;
    --footer_padding: 50px 10vw 30px;

    --mobile_tight_section_padding: 50px 7vw;
    --mobile_wide_section_padding: 50px 2vw;
    --mobile_footer_padding: 40px 7vw 20px;

    --enelo_color_slateblue: #7671D5;
    --enelo_color_violet: #9F00D0;
    --enelo_color_fuchsia: #DF07E2;
    --enelo_gradient: linear-gradient(45deg, #7671D5, #9F00D0, #DF07E2);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
}

h1, h2, h3, h4 {
    display: block;
    font-family: montserrat;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(1.25rem, 2vw, 1.75em);
    width: 100%;
    margin: 1rem 0 0.4rem 0;
}

b, i, a, em, small, strong, sup {
    font-size: inherit;
}

p.small {
    max-width: 70ch;
    margin: 1.3em 0;
    line-height: 1.5;
    font-size: 0.625em;
}

p.normal {
    max-width: 70ch;
    margin: 1.3em 0;
    line-height: 1.5;
    font-size: 1.125em;
}

p.large {
    max-width: 70ch;
    margin: 1.3em 0;
    line-height: 1.5;
    font-size: 1.25em;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    text-decoration: underline;
    color: var(--enelo_color_violet);
}

button {
    position: relative;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 26px;
    margin: 10px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    height: 60px;
    background-color: transparent;
    border: 5px solid #fff;
    border-radius: 25px;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button:hover {
    text-decoration: underline;
    box-shadow: 0px 13px 20px #00000030;
    background-color: #eeeeee;
    color: var(--enelo_color_violet)
}

button a {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20px;
    text-decoration: none;
}

button[type=submit] {
    padding: 0 30px;
}

input, textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 26px;
    margin: 1em 0;
    padding: 5px 28px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    font-family: inherit;
    border: 1px solid #eeeeee;
    height: 60px;
    background-color: #ffffff;
    border-radius: 4px;
}

input:first-child {
    margin: 0 0 1em 0;
}

input[type=file] {
    background: #46464680;
    border: 0px solid black;
    padding: 1em;
    height: max-content;
    width: clamp(200px, 100%, 500px);
    color: white;
    font-weight: bold;
}

input[type=file] > button {
    background: white;
    border: 1px solid black;
}

input[type=file]::file-selector-button {
    padding: 0.5em 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    background: white;
    color: black;
    cursor: pointer;
}

fieldset {
    border-radius: 10px;
    border: 1px solid #505050;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 30px 0;
    backdrop-filter: blur(30px);
}

textarea {
    min-height: 15ch;
}

.rule {
    width: 200px;
    height: 10px;
    border-radius: 5px;
    margin: 0 auto;
    background: var(--enelo_gradient);
}

img {
    object-fit: contain;
}

.backdrop, .menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.backdrop {
    display: block;
    background: var(--enelo_gradient);
    z-index: -1;
}

.backdrop iframe {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 120%;
    height: 120%;
}


/* ---------- ---------- ----------
---------- MOBILE MENU ----------
---------- ---------- ----------*/

.menu {
    pointer-events: none;
    opacity: 0;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(10px, 5vw, 15px);
    width: 100%;
    height: 100%;
    z-index: 990;
    background: #fffffff0;
    color: rgb(0, 0, 0);
    transition: 0.3s all ease-in-out;
    backdrop-filter: blur(5px);
}

.menu > .menu-links {
    width: 100%;
}

.menu > .menu-links > ul {
    text-decoration: none;
    list-style-type: none;
    margin: 20px 0 0 0;
    padding: 0;
}

.menu > .menu-links > ul > li {
    line-height: 2.5;
    font-size: 1.2em;
    text-align: center;
    padding: 0 120px;
    padding: 0;
    border-bottom: 2px solid #905ff1;
}

.menu > .menu-links > ul > li:hover {
    background: #905ff1;
    color: white !important;
}

.menu > .menu-links > ul > li > a {
    font-size: 1.2em;
    color: black;
}


/* ---------- ---------- ----------
---------- HEADER NAVIGATION ----------
---------- ---------- ----------*/

header {
    display: grid;
    grid-template-columns: 200px 1fr;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 0 10vw;
    width: 100%;
    height: 85px;
    background: #fff;
    z-index: 1000;
    transition: 0.3s all ease-in-out;
    box-shadow: 0 2px 15px #00000033;
    backdrop-filter: blur(5px);
}

header .logo {
    align-self: center;
    justify-self: left;
}

.header_logo_img {
    width: 180px;
}

header .links {
    align-self: center;
    justify-self: right;
}

header .links ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header .links ul li {
    display: inline-block;
    margin: 5px 10px;
    font-weight: 400;
    color:var(--enelo_color_slateblue);
}

.link_btn {
    color: white !important;
    padding: 5px 10px;
    background: var(--enelo_gradient);
    border-radius: 10px;
}

.link_btn:hover {
    color: white !important;
}

.link_btn a {
    color: white !important;
}

header .menu-btn {
    display: none;
    align-self: center;
    justify-self: right;
    margin-right: 0px;
    background: transparent;
    width: 30px;
    height: 30px;
    background-image: url("../img/open.svg");
    transition: 0.3s all ease-in-out;
}

header .menu-btn.open {
    background: transparent;
    background-image: url("../img/close.svg");
    transition: 0.3s all ease-in-out;
}

.scrollUp {
    top: 0px;
    background: #ffffff;
}

.scrollDown {
    top: -100px;
    background: #ffffff;
}


/* ---------- ---------- ----------
---------- MAIN CONTENT ----------
---------- ---------- ----------*/

.main {
    position: relative;
    margin: 0;
}

section {
    padding: var(--tight_section_padding);
}


/* ---------- ---------- ----------
---------- HERO SECTION ----------
---------- ---------- ----------*/

.hero {
    display: flex;
    align-items: center;
    justify-items: center;
    padding: 65px 10vw 150px;
    min-height: 100vh;
    height: fit-content;
    color: #fff;
    background-color: #0000006b;
}

.hero_item {
    display: grid;
    grid-gap: 50px;
    grid-template-columns: 5fr 3fr;
    background: #ffffff00;
}

.hero_description_heading {
    color: inherit;
    font-size: clamp(1.2rem, 7.5vw, 3rem);
}

.hero_description_body {
    font-size: clamp(1.5em, 2vw, 2em);
    color: inherit;
}

.hero_image {
    height: 300px;
    object-fit: contain;
}

.hero_description_area {
    align-items: start;
}

.hero_image_area {
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
}

.hero .owl-carousel.hero-carousel .owl-nav {
    display: none;
}

.hero .owl-carousel.hero-carousel .owl-dots {
    display: none;
}


/* ---------- ---------- ----------
---------- ABOUT SECTION ----------
---------- ---------- ----------*/

.about {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 50px;
    padding: 150px 10vw;
}

.about_description_heading {
    color: #fff;
    font-size: 56px;
}

.about_description_body {
    font-size: 1.5rem;
    color: #fff;
}

.about_description_button {
    margin: 2rem 0;
}

.about_image {
    width: clamp(200px, 400px, 500px);
    object-fit: contain;
}


/* ---------- ---------- ----------
---------- SERVICES SECTION ----------
---------- ---------- ----------*/

.services {
    padding: var(--tight_section_padding);
    background-color: transparent;
    background-color: #f6f6f6;
    /*background-image: url('../img/services_bg_curve.svg');*/
    background-repeat: no-repeat;
    background-size: 100%;
}

.services_heading {
    font-size: 3rem;
    text-align: center;
}

.services_cards_area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    grid-gap: 4em;
    align-content: left;
    margin: 50px 0;
}

.services_card {
    margin: 0;
    padding: 0;
    text-align: left;
    background: linear-gradient(180deg, #ffffff, #f9f9f9);
    border-bottom: 5px solid #8836ff;
    box-shadow: 0 30px 50px -40px #9436ff;
    border-radius: 10px;
    height: fit-content;
}

.services_card:hover {
    box-shadow: 0 50px 50px -40px silver;
    background: #fff;
    /* margin-bottom: -600px; */
    z-index: 100;
}

.services_card_img_wrap {
    width: 100%;
    text-align: center;
    padding-top: 80px;
}

.services_card_img {
    height: clamp(100px, 120px, 120px);
}

.services_card_info {
    margin: 10px 0;
    padding: clamp(15px, 5vw, 30px);
    color: #2b2b2b;
    height: 230px;
    overflow: hidden;
    font-size: 1em;
    transition: 0.3s height ease-in-out;
}

.services_card_info::after {
    content:"";
    display: none;
    width: 100px;
    height: 100px;
    background: red;
}

.services_card_info_heading {
    display: block;
    font-weight: 700;
    margin: 1.5em 0;
}

.services_card_info_body {
    font-weight: 400;
    line-height: 1.5;
}

.services_card_info_body > ul {
    margin: 0;
    padding-left: 20px;
}

.services_card_info_body > ul > li {
    font-size: 18px;
    text-align: left;
    line-height: 1.5;
}

.services_card > .view {
    padding: 25px 50px;
}

.services_card > .view > button {
    margin: 0 auto;
    padding: 0;
    background: linear-gradient(180deg, #f3f3f3, #fff);
    color: #8836ff;
    box-shadow: 0px -6px 10px rgba(255, 255, 255, 1), 0px 4px 15px rgba(0, 0, 0, 0.15);
}


/* ---------- ---------- ----------
---------- SINGLE SERVICES PAGES ----------
---------- ---------- ----------*/

.single_service {
    padding: 150px 10vw 50px;
    background-color: #fff;
    background-image: url('../img/rings_interlaced.svg');
    background-position: center;
    background-size: calc(120px + 10vw);
    background-attachment: fixed;
}

.single_service__title {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.single_service__icon {
    object-fit: contain;
}

.single_service__heading {
    font-size: clamp(1.25rem, 5vw, 3em);
}

.single_service__description {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.single_service__img {
    width: 300px;
    object-fit: contain;
    align-self: flex-start;
}

.single_service__body {
    display: block;
    min-width: 300px;
    max-width: 800px;
}

.single_service__body--text {
    font-size: 1.2rem;
}

.single_service__body--text:first-child {
    margin-top: 0;
}

.single_service__additional_services {
    background-color: #f6f6f6;
}

/* ---------- ---------- ----------
---------- TECHNOLOGY SECTION ----------
---------- ---------- ----------*/

.tech {
    padding: 100px 15vw;
    background-color: #fff;
    background-image: url('../img/rings_interlaced.svg');
    background-position: center;
    background-size: calc(120px + 10vw);
    background-attachment: fixed;
    color: #000000;
    text-align: center;
}

.tech_heading {
    font-size: clamp(1.25rem, 5vw, 3rem);
    text-align: center;
    color: #000000;
}

.tech_subheading {
    margin: 40px 0 30px 0;
}

.tech > .cloud-carousel > .item {
    padding: 20px;
}

.tech_cloud_figure {
    text-align: center;
}

.tech_cloud_figure img {
    width: 90px;
    object-fit: contain;
}

.tech_caption {
    margin: 5px 0;
    font-weight: 700;
    text-transform: uppercase;
}

.tech_cloud_description {
    display: none;
    width: 250px;
    margin: 0 auto;
}

.tech > .frameworks {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-items: center;
}

.tech > .frameworks > div > figure {
    text-align: center;
}

.tech > .frameworks > div > figure > img {
    margin: 0 auto;
    width: auto;
    height: 90px;
    object-fit: contain;
    display: block;
    text-align: center;
}

.owl-carousel.cloud-carousel .item img {
    height: 90px;
    width: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.owl-carousel.tech-carousel .item img, 
.owl-carousel.frameworks-carousel .item img {
    height: 95px;
    object-fit: contain;
}

.tech .owl-carousel.hero-carousel .owl-nav {
    display: none;
}
  
.tech .owl-carousel.hero-carousel .owl-dots {
    display: none;
}

.owl-carousel.tech-carousel .item,
.owl-carousel.frameworks-carousel .item  {
    display: -ms-grid;
    display: grid;
    grid-template-rows: 2fr 2fr;
    justify-items: center;
    background: #ffffff00;
}

.owl-carousel.tech-carousel .item h4, 
.owl-carousel.frameworks-carousel .item h4  {
    color: #2b2b2b;
    font-size: 1.4em;
}

.owl-carousel.tech-carousel .item img,
.owl-carousel.frameworks-carousel .item img {
    width: 95px;
}

.owl-carousel.tech-carousel .owl-nav,
.owl-carousel.frameworks-carousel .owl-nav {
    display: none;
}

.owl-carousel.tech-carousel .owl-dots,
.owl-carousel.frameworks-carousel .owl-dots,
.owl-carousel.cloud-carousel .owl-dots {
  display: none;
}

.owl-carousel.tech-carousel .owl-nav,
.owl-carousel.frameworks-carousel .owl-nav,
.owl-carousel.cloud-carousel .owl-nav {
    display: none;
}

.owl-nav {
    display: none;
}

/* ---------- ---------- ----------
---------- JOIN SECTION ----------
---------- ---------- ----------*/

.join {
    padding: var(--wide_section_padding);
    color: white;
    background-color: #31313100;
}

.join h2, .join h3, .join h4 {
    text-align: center;
}

.join_heading {
    font-size: clamp(1.2rem, 3rem, 3rem);
}

.join_subheading {
    font-size: clamp(1.2rem, 2rem, 2rem);
}

.join_subheading_cta {
    font-size: clamp(1.2rem, 1.5rem, 1.5rem);
}

.join_jobs_area {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 20px;
    margin-top: 50px;
}

.join_jobs {
  background: transparent;
  padding: 50px 30px;
  border: 3px solid #fff;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  backdrop-filter: blur(30px);
}

.join_jobs:hover {
  background: #fff;
  color: var(--enelo_color_violet);
  box-shadow: 0 10px 20px #00000030;
}

.join_jobs > .fas {
  font-size: 2em;
  color: inherit;
}

.join_jobs_heading {
    color: white;
}

.join_jobs > ul {
  margin: 0 0 1em 0;
  padding: 0;
  list-style-type: none;
  color: inherit;
}

.join_jobs > ul > li {
  line-height: 2em;
  cursor: pointer;
  font-weight: bold;
  color: inherit;
}

.join_jobs > ul > li:hover {
  text-decoration: underline;
  color: inherit;
}

.job_form {
  margin: 0 auto;
  text-align: center;
}

.job_form fieldset {
  border: 3px solid #fff;
  margin: 0 auto;
  backdrop-filter: blur(30px);
}

/* ---------- ---------- ----------
---------- CONTACTS SECTION ----------
---------- ---------- ----------*/

.contacts {
  padding: var(--tight_section_padding);
  background-color: #0000001a;
  color: white;
}

.contacts h2 {
  text-align: left;
  font-size: clamp(1.2em, 5vw, 3em);
}

.contacts .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6fr 4fr;
      grid-template-columns: 6fr 4fr;
  grid-gap: 50px;
}

.contacts .container form {
  padding: 50px 0 0 0;
}


/* ---------- ---------- ----------
---------- FOOTER ----------
---------- ---------- ----------*/

footer {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  padding: var(--footer_padding);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  background-image: url('../img/rings_interlaced.svg');
  background-position: center;
  background-size: calc(120px + 10vw);
  background-attachment: fixed;
}

footer > .footer-links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

footer > .footer-links > figure img {
  width: 200px;
}

footer > .footer-links > .main {
  padding: 0 30px;
}

footer > .footer-links > .main ul {
  list-style-type: none;
  font-weight: 600;
}

footer > .footer-links > .main ul li {
  margin-top: 10px;
}

footer > .footer-links > .additional {
  padding: 0 30px;
}

footer > .footer-links > .additional ul {
  list-style-type: none;
  font-weight: 600;
}

footer > .footer-links > .additional ul li {
  margin-top: 10px;
}

footer > .footer-notes {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto, minmax(300px, 1fr));
  padding: 50px 0;
}

footer p {
  display: block;
  width: 100%;
  margin: 0;
  text-align: center;
}


/* ---------- ---------- ----------
---------- MEDIA QUERIES ----------
---------- ---------- ----------*/

@media screen and (max-width: 1024px) {
    header {
        padding: 0 10vw;
        height: 50px;
    }
    header .logo {
        height: 28px;
    }
    header .logo img {
        width: 100px;
    }
    header .links {
        display: none;
    }
    header .menu-btn {
        display: block;
    }

    .hero > .owl-carousel.hero-carousel {
        margin-top: 100px;
    }
    .hero > .owl-carousel.hero-carousel .item {
        display: -ms-grid;
        display: grid;
        grid-template-columns: 1fr;
        background: #ffffff00;
    }
    .hero > .owl-carousel.hero-carousel .item img {
        width: 80%;
        max-width: 300px;
    }
    .hero > .owl-carousel.hero-carousel .item > div:nth-child(1) {
        grid-row-start: 2;
    }
    .hero > .owl-carousel.hero-carousel .owl-nav {
        display: none;
    }
    .hero > .owl-carousel.hero-carousel .owl-dots {
        display: none;
    }

    .about {
        grid-template-columns: 4fr;
    }
    .about > div:nth-child(2) img {
        width: 220px;
    }

    .services_cards_area {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}



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

  .about {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 50px 10vw;
  }

  .services_cards_area {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .contacts {
    color: white;
  }

  .contacts .container {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }

  .contacts .container form {
    padding: 50px 0 0 0;
  }

  footer > .footer-links {
    align-items: center;
    text-align: center;
  }

  footer ul {
    margin: 0;
    padding: 0;
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */