<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --main-color: #0059ff;
    --text-color: #35404e;
    --bg-color: #151515;
    --big-font: 4rem;
    --h2-font: 2.26rem;
    --p-font: 1.25rem;
    --nav-size: 14px;
    --text-color: #0e0e0e;
    --hover: #0059ff;
    --hover2: #0059ff;

    --navbar-color: rgb(251, 253, 253);
}

body {
    background: rgb(250, 250, 250);
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.animation {
    animation: section_appear 1s;
    animation-delay: 800ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes showus {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes section_appear {
    from {
        opacity: 0;
        transform: translateY(10%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

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

header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    padding: 10px 7%;
    display: flex;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
    transition: all 600ms ease;
}

header .logo {
    color: var(--text-color-nav);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 8px;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
    transition: 400ms ease;
}

header .logo:hover {
    color:var(--hover);
}

header .navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    justify-content: flex-end;
}

header .navbar ul li {
    position: relative;
    float: left;
}

.navbar ul .left {
    position: relative;
    margin-right: auto;
}

header .navbar ul li a {
    color: var(--text-color-nav);
    font-size: var(--nav-size);
    padding: 17px;
    display: block;
    border-radius: 2px;
    transition: 400ms ease;
}

header .navbar ul li a:hover {
    color: rgb(64, 64, 64);
}

header .navbar ul li a i {
    color: white;
}

header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 350px;
    border-radius: 15px;
    background: rgb(255,255,255);
    display: none;
    padding: 2.5px 7.5px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    animation: showus 500ms ease-in-out;
}

.nav-dropdown {
    width: 100%;
    height: 75px;
    animation: showus 100ms ease-in-out;
}

.nav-dropdown:after {
    content: '';
    position: absolute;
    top: -15px;
    left: 30px;
    width: 0; 
    height: 0;
    z-index: 4; 
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid rgb(255, 255, 255);
    animation: showus 100ms ease-in-out;
}

.dropdown-child {
    position: relative;
    width: 300px;
    color: rgb(42, 42, 42);
    display: flex;
    padding: 10px 5px;
    margin: 0;
    border-radius: 10px;
    transition: 200ms ease;
}

.dropdown-child:hover {
    background: rgb(244, 242, 242);
}

.dropdown-child .left-drop {
    width: 21%;
    padding: 5px;
    display: flex;
    margin: auto;
}

.dropdown-child .left-drop img {
    position: relative;
    width: 28px;
    height: 28px;
}

.dropdown-child .right-drop {
    width: 79%;
    padding: 0;
    margin: 0;
}

#nav-reduced {
    width: 250px;
}

#nav-reduced .dropdown-child {
    width: 200px;
}

#nav-reduced .dropdown-child .right-drop {
    margin-left: 15px;
}

.dropdown-child .right-drop h1 {
    position: relative;
    font-size: 15px;
    font-weight: 900;
    color:rgb(21, 42, 70);
}

.dropdown-child .right-drop p {
    position: relative;
    font-size: 11px;
}

.dropdown-child:hover .right-drop h1{
    color:rgb(22, 76, 147);
}

/* NAVBAR DROPDOWN 2 */

.nav-dropdown2 {
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px 0 rgba( 34, 68, 123, 0.1 );
    animation: showus 100ms ease-in-out;
}

.nav-dropdown2:after {
    content: '';
    position: absolute;
    top: -15px;
    left: 30px;
    width: 0; 
    height: 0;
    z-index: 4; 
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid rgba(255,255,255,0.95);
    animation: showus 100ms ease-in-out;
}

.dropdown-child2 {
    position: relative;
    width: 100%;
    color: rgb(42, 42, 42);
    justify-content: center;
    display: flex;
    transition: 100ms ease;
}

.dropdown-child2 img {
    position: relative;
    width: 26px;
    height: 26px;
}

.nav-dropdown2 h1 {
    font-size: 16px;
    text-align: left;
    margin-top: 1px;
    margin-left: 7px;
    font-weight: 500;
}

header .navbar ul li ul a:hover {
    opacity: 0.8;
}

.nav-dropdown ul {
    left: 200px;
    top: 0;
}

header .navbar ul li:focus-within &gt; ul,
header .navbar ul li:hover &gt; ul {
    display: initial;
}

.hamburger {
    padding: 10px 10px;
    display: none;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible; 
}
    
.hamburger:hover {
    opacity: 0.7;
}
    
.hamburger.is-active:hover {
    opacity: 0.7; 
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--hover); 
}
  
.hamburger-box {
    width: 25px;
    height: 20px;
    display: inline-block;
    position: relative; 
}
  
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; 
}
    
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 25px;
    height: 2.5px;
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; 
}
    
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; 
}
    
.hamburger-inner::before {
    top: -10px; 
}
    
.hamburger-inner::after {
    bottom: -10px; 
}

.hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}

.hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; 
}
    
.hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}
  
.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.075s; 
}
    
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; 
}
    
.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

#menu-bar {
    display: none;
}

header label {
    cursor: pointer;
    display: none;
}

.arrow {
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-bottom: 3px;
    margin-left: 10px;
}

/* --------------------- SECTION: HOME ------------------------ */

.contact-form {
    position: relative;
    min-height: 100vh;
    background-color: rgb(250, 250, 250);
    padding: 3.5% 10%;
    text-align: center;
}

.contact-form h1 {
    font-weight: 300;
    font-size: 48px;
    color:rgb(2, 128, 255);
    font-family: 'Montserrat', sans-serif;
}

.contact-form p {
    color: rgb(134, 134, 134);
    font-size: 18px;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-form form {
    margin-top: 2rem;
    padding: 0 10%;
}

@media(max-width: 767px) {
    .contact-form h1 {
        font-size: 38px;
        margin-top: 1rem;
    }
    
    .contact-form form {
        padding: 0 0;
    }

    .contact-form p {
        font-size: 16px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin: auto;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
    transition: all 0.2s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    height: 180px;
    resize: none;
}

input[type=submit] {
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px 20px;
    background: #228bfc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 400ms ease;
}

input[type=submit]:hover {
    background: #419dff;
    transform: scale(1.02);
    cursor: pointer;
}

/* ---------------- SWITCH BUTTON ---------------- */

.switch {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 34px;
    margin-top: 2rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch-blue input:checked + .slider {
  background-color: #319af7;
}
  
.hidden {
    display: none;
}

@media(max-width: 991px) {
    header {
        padding: 20px;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0; 
        background: white;
        border-top: 1px solid rgba(0,0,0,0.1);
        display: none;
    }

    header .navbar ul li {
        width: 100%;
    }

    header .navbar ul li a {
        color:rgb(0, 0, 0);
    }

    header .navbar ul li ul {
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li {
        background: #eee;
    }

    header .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }

    header label {
        display: initial;
    }

    .hamburger {
        display: inline-block;
    }

    #menu-bar:checked ~ .navbar {
        display: initial;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
}

/* ---------------- CTA -------------- */

.cta {
    background: #024dda;
    width: 66.6%;
    margin: 100px auto;
    padding: 70px 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    background-image: url(../assets/arch/sections/cta/gr.png);
    background-size: cover;
    box-shadow: rgba( 0, 0, 0, 0.4 ) 0px 3px 5px;
}

.cta-text h2 {
    color: white;
    font-weight: 0;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.cta-text p {
    color: white;
}

.cta-btn {
    background: white;
    color: var(--main-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: .4s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

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

footer {
    position: relative;
    height: auto;
    padding: 50px 100px;
    background: #0a0a0a;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .contain {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

footer .contain .sec {
    margin-right: 30px;
}

footer .contain .sec.aboutus {
    width:  40%;
}

footer .contain h2 {
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

footer .contain h2:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0072ff;
}

footer p {
    color: #999;
}

.sci {
    margin-top: 20px;
    display: flex;
}

.sci li {
    list-style: none;
}

.sci li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
}

.sci li a:hover {
    background: #0072ff;
}

.sci li a .fab {
    color: #fff;
    font-size: 20px;
}

.quickLinks {
    position: relative;
    width: 25%;
}

.quickLinks ul li {
    list-style: none;
}

.quickLinks ul li a {
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.quickLinks ul li a:hover {
    color: #fff;
}

.contact {
    width: calc(35% - 60px);
    margin-right: 0 !important;
}

.contact .info {
    position: relative;
}

.contact .info li {
    display: flex;
    margin-bottom: 16px;
}

.contact .info li span:nth-child(1) {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.contact .info li span {
    color: #999;
}

.contact .info li a {
    color: #999;
    text-decoration: none;
}

.contact .info li a:hover {
    color: #fff;
}

.copyright {
    width: 100%;
    margin-left: auto;
    text-align: center;
}

.copyright img {
    width: 38px;
    border-radius: 20px;
    margin-top: 3rem;
    margin-bottom: -1rem;
    -o-user-drag: none; 
    -moz-user-drag: none; 
    -khtml-user-drag: none;
    -webkit-user-drag: none;
    transition: 500ms ease;
}

.copyright img:hover {
    transform: scale(1.03);
}

.copyright p {
    color: rgb(206, 206, 206);
    margin-top: -4rem;
    font-weight: 600;
}

@media screen and (max-width: 1500px) {
    .cta {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 60px 25px;
    }

    .cta-text h2 {
        margin-bottom: 10px;
    }

    .cta-text p {
        margin-bottom: 30px;
    }
}


@media screen and (max-width: 768px) {
    footer {
        padding: 40px;
    }

    footer .contain {
        flex-direction: column;
    }

    footer .contain .sec {
        margin-right: 0;
        margin-bottom: 40px;
    }

    footer .contain .sec.aboutus,
    .quickLinks,
    .contact 
    {
        width: 100%;
    }

    .copyrightText {
        padding: 8px 40px;
    }
}

@media(max-width: 440px) {
    .cta { margin-top: 4rem; }
    .cta-btn { padding: 12px 10px; }
}</pre></body></html>