<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset Code */
body {
    padding: 0;
    margin: 0;
    background: #FFF;
    font-family: 'Poppins', sans-serif;
}

body a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-decoration: none;
}

body a:hover {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

body a:focus,
a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

input[type="button"]:hover,
input[type="submit"]:hover {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: #999;
    font-family: 'Sintony', sans-serif;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

label {
    margin: 0;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none
}
.tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
/* //Reset Code */

html {
    scroll-behavior: smooth;
}


/* bottom-to-top */
a.move-top {
    width: 34px;
    height: 34px;
    background: url(../images/move-top.png) no-repeat 0px 0px;
    display: inline-block;
}

/* //bottom-to-top */
/* header */
/* navigation */
/* CSS Document */
.toggle-2,
.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}


#logo a {
    float: left;
    display: initial;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -1px;
    color: #FC427B;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
    padding: 0;
    font-family: 'Srisakdi', cursive;
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
}

/* Styling the links */
nav a {
    color: #4c4c4c;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}


nav ul li ul li:hover {
    background: #f8f9fa;
}

.menu li .drop-text:hover {
    color: #000;
}

/* Background color change on Hover */

.menu li.active a,
.menu li a:hover {
    color: #FC427B;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    top: 26px;
    background: #333;
    padding: 10px;
    border-radius: 4px;
    z-index: 9;
    /* has to be the same number as the "line-height" of "nav a" */
}

/* Display Dropdowns on Hover */
nav ul li:hover&gt;ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul li a {
    color: #fff;
    padding: 5px 10px;
    display: block;
    font-size: 14px;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */
li&gt;a:only-child:after {
    content: '';
}

a.reqe-button {
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
}

/* Media Queries
--------------------------------------------- */
@media(max-width: 800px) {
    nav a {
        font-size: 14px;
    }
}

@media all and (max-width : 736px) {

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    nav {
        margin: 0;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle+a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 8px 14px;
        font-size: 16px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #fff;
        color: #000;
        border-radius: 4px;
        letter-spacing: 1px;
        cursor: pointer;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        width: 40%;
        padding: 5px;
        font-weight: normal;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .toggle:hover {
        color: #FC427B;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked+ul {
        display: block;
        background: #fff;
        padding: 15px 0;
        text-align: center;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }

    /* 
    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #212121;
    } */

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover&gt;ul,
    nav ul li:hover&gt;ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */

    }

    .menu li.active a,
    .menu li a:hover {
        color: #000;
    }

    nav a {
        color: #000;
        font-size: 15px;
    }

    .menu li.active a,
    .menu li a:hover {
        color: #686de0;
    }
    nav ul ul li a {
        color: #000;
    }
}

@media all and (max-width : 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}

/*-- dropdown --*/
#demo {
    margin: 10px 0 0px 0;
    font-family: 'Lato', sans-serif;
}

#demo .wrapper {
    display: inline-block;
    position: relative;
}

#demo .parent {
    height: 100%;
    width: 100%;
    display: block;
    cursor: pointer;
    line-height: 30px;
    height: 30px;
    color: #fff;
    z-index: 2;
    position: relative;
    -webkit-transition: border-radius .1s linear, background .1s linear, z-index 0s linear;
    -webkit-transition-delay: .8s;
    text-align: center;
    font-family: 'Lato', sans-serif;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
}

#demo .parent:hover,
#demo .content:hover~.parent {
    -webkit-transition-delay: 0s, 0s, 0s;
}

#demo .content:hover~.parent {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 0;
}

#demo .content {
    position: absolute;
    top: 0;
    display: block;
    z-index: 1;
    height: 0;
    width: 150px;
    padding-top: 30px;
    -webkit-transition: height .5s ease;
    -webkit-transition-delay: .4s;
}

#demo .wrapper:active .content {
    height: 150px;
    z-index: 3;
    -webkit-transition-delay: 0s;
}

#demo .content:hover {
    height: 150px;
    z-index: 3;
    -webkit-transition-delay: 0s;
}


#demo .content ul {
    background: #fff;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#demo .content ul a {
    text-decoration: none;
    padding: 0;
}

#demo .content li:hover {
    background: #f8f9fa;
}

#demo .content li {
    list-style: none;
    text-align: left;
    color: #999;
    font-size: 16px;
    line-height: 30px;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    border-top: 1px solid #eee;
}

#demo .content li:last-of-type {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* //dropdown */
/* //navigation */

/* popup */
.popup-effect {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.popup-effect:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 4px;
    max-width: 430px;
    position: relative;
    margin: 8em auto;
    padding: 3em 2em;
    z-index: 999;
    text-align: center;
}

.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.popup .close:hover {
    color: #686de0;
}

/* //popup */

/* banner */

.csslider&gt;ul&gt;li {
    min-height: 733px;
}

.csslider&gt;ul&gt;li:first-child {
    background: url(../images/2.jpg) no-repeat center;
    background-size: cover;
}

.csslider&gt;ul&gt;li:nth-child(2) {
    background: url(../images/1.jpg) no-repeat top;
    background-size: cover;
}

.csslider&gt;ul&gt;li:last-child {
    background: url(../images/4.jpg) no-repeat center;
    background-size: cover;
}

.bg-theme {
    background: #031f9a;
}

.bg-theme1 {
    background: #0fcef7;
}

.w3ls_banner_txt {
    margin-top: 14.5vw;
    margin-left: auto;
    text-align: right;
    max-width: 560px;
}

h3.w3ls_pvt-title {
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 3.5em;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
}

.w3ls_banner_txt h5 {
    font-weight: 400;
    color: #000;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.button-style {
    padding: 12px 25px;
    border: none;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    background: #FC427B;
}

.button-style:hover,
.button-style-2:hover {
    background: #fff;
    color: #000;
}

/* //banner */

/* banner bottom */
.welcome-left h3 {
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 100;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
}

.welcome-left h4 {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 1px;
    font-family: initial;
    color: #464646;
}

.support-grid h5 {
    letter-spacing: 1px;
        color: #343a40;
}

.icon-effect span {
    font-size: 28px;
    color: #fff;
    border-radius: 50%;
    background: #FC427B;
    padding: 1em;
}

/* //banner bottom */

/* about */
.w3ls-bnrbtm {
    background: url(../images/bg2.jpg) no-repeat top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 600px;
}

h3.agile-title {
    font-weight: 800;
    font-size: 32px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.4;
}

span.w3-line {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: bold;
    letter-spacing: 1px;
}


p.text-botm {
    color: #eee;
}

/* //about */

/* blog */
.posts-top {
    position: relative;
}

.posts-top h3 {
    font-size: 26px;
    color: #fff;
    position: absolute;
    background: #38d2fe;
    padding: 10px 25px;
    bottom: 0;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 600;
}

.posts-top h3 span {
    display: block;
    font-weight: 100;
    font-size: 16px;
}

.posts-w3ls-bottom ul li {
    display: inline-block;
}

.posts-w3ls-bottom h4 {
    font-size: 23px;
    color: #343a40;
}

.posts-w3ls-bottom i {
    color: #ff4f81;
}

.posts-w3ls-bottom a {
    color: #999;
    letter-spacing: 1px;
    font-size: 15px;
}

.posts-w3ls-bottom a:Hover {
    color: #000;
}

/* //blog */
/* services */
.serives-agile {
    background: #FC427B;
}

.services-w3ls-grid h4 {
    letter-spacing: 1px;
    font-weight: 600;
}

.services-w3ls-grid p {
    color: #fdfdfd;
    font-weight: 300;
}

.services-w3ls-grid i {
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    width: 90px;
    height: 90px;
    line-height: 2.6;
}

/* //services */

/* newsletter */
.title.news-titl h3 {
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 32px;
}

.title.news-titl p {
    color: #e0e0e0;
}

.newsletter_right_w3agile {
    background: url(../images/bg3.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}

.n-right-w3ls input[type="text"],
.n-right-w3ls input[type="email"] {
    padding: 15px;
    border: none;
    letter-spacing: 1px;
    font-size: 15px;
}

.n-right-w3ls input[type="submit"] {
    background: #38d2fe;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 15px;
}

/* //newsletter */

/*-- contact --*/
.address-grid,
.address-info {
    background-color: #fff;
    padding: 40px;
    -webkit-box-shadow: 0px 2px 13px -1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 13px -1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 13px -1px rgba(0, 0, 0, 0.15);
}

.address-info.address-mdl {
    margin: 2em 0;
}

.address h4 {
    font-size: 23px;
    color: #38d2fe;
    letter-spacing: 1px;
    font-weight: 600;
}

.address input[type="text"],
.address input[type="email"],
.address textarea {
    color: #000;
    background: none;
    outline: none;
    font-size: 15px;
    padding: 11px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    border: none;
    border-bottom: solid 1px #828282;
    -webkit-appearance: none;
    border-radius: 0px;
}

.address textarea {
    min-height: 11.7em;
    -webkit-appearance: none;
    resize: none;
}

.address input[type="submit"] {
    border: none;
    outline: none;
    color: #fff;
    padding: 12px 0;
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 1.7em;
    width: 100%;
    -webkit-appearance: none;
    background: #FC427B;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.address p a {
    color: #999;
}

.address p a:hover {
    color: #000;
}

/* map */
.map iframe {
    width: 100%;
    border: none;
    outline: none;
    min-height: 400px;
    display: block;
}

/* //map */
/*-- //contact --*/
/* footer */
footer {
    background: #212020;
}

.footer-title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.contact-info p a,
.contact-info p,
ul.links li a {
    color: #ababab;
    font-size: 14px;
}

.contact-info p span {
    display: block;
}

.footer-style-w3lsp a {
    color: #ababab;
}

.contact-info h4 {
    font-size: 16px;
    letter-spacing: 1px;
}

/* quick links */
ul.links li a {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

ul.links li a:hover,
.footer-style-w3lsp a:hover {
    color: #fff;
}

/* //quick links */

/* copyright */
.copy-right {
    letter-spacing: 2px;
    font-size: 15px;
}

.copy-right a {
    color: #FC427B;
}

.copy-right a:hover {
    color: #fff;
}

.copy-right-top {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* copyright */
/* //footer */

/* responsive */

@media(max-width: 1680px) {}

@media(max-width: 1600px) {}

@media(max-width: 1440px) {}

@media(max-width: 1366px) {
    .w3ls-bnrbtm {
        min-height: 560px;
    }
}

@media(max-width: 1280px) {
    .w3ls-bnrbtm {
        min-height: 530px;
    }
}

@media(max-width: 1080px) {
    .csslider&gt;ul&gt;li {
        min-height: 600px;
    }
    h3.w3ls_pvt-title {
        font-size: 3em;
    }
    .w3ls_banner_txt h5 {
        font-size: 20px;
    }
    .services-w3ls-grid p {
        font-size: 14px;
    }
    .welcome-left h3 {
        font-size: 35px;
    }
    .welcome-left h4 {
        font-size: 18px;
    }
    .w3ls-bnrbtm {
        min-height: 500px;
    }
    .map iframe {
        min-height: 350px;
    }
    .address textarea {
        min-height: 13.5em;
    }
    .w3ls-bnrbtm {
        min-height: 420px;
    }
}

@media(max-width: 1050px) {
    h3.agile-title {
        font-size: 30px;
    }
}

@media(max-width: 1024px) {
    .posts-w3ls-bottom h4 {
        font-size: 21px;
    }
    .posts-w3ls-bottom a {
        font-size: 14px;
    }
    
}

@media(max-width: 991px) {
    #logo a {
        font-size: 36px;
    }
    nav a {
        font-size: 14px;
    }
    h3.w3ls_pvt-title {
        font-size: 2.8em;
    }
    .welcome-left h3 {
        font-size: 38px;
    }
    .welcome-left h4 {
        font-size: 20px;
    }
    .services-w3ls-grid i {
        font-size: 29px;
        width: 80px;
        height: 80px;
    }
    .services-w3ls-grid p {
        font-size: 13px;
    }
    .w3ls-bnrbtm {
        min-height: 350px;
    }
    .n-right-w3ls input[type="text"], .n-right-w3ls input[type="email"] {
        padding: 13px;
    }
    .n-right-w3ls input[type="submit"] {
        font-size: 13px;
    }
    .address textarea {
        min-height: 12em;
    }
}

@media(max-width: 900px) {
    .csslider&gt;ul&gt;li {
        min-height: 530px;
    }
}

@media(max-width: 800px) {
    h3.w3ls_pvt-title {
        font-size: 2.5em;
    }
    .w3ls_banner_txt h5 {
        font-size: 19px;
    }
    .csslider&gt;ul&gt;li {
        min-height: 500px;
    }
}

@media(max-width: 768px) {}

@media(max-width: 736px) {
    .welcome-left h3 {
        font-size: 34px;
    }
    .map iframe {
        min-height: 300px;
    }
    .address input[type="text"], .address input[type="email"], .address textarea {
        font-size: 14px;
    }
    .address h4 {
        font-size: 20px;
    }
}

@media(max-width: 667px) {
    .csslider&gt;ul&gt;li {
        min-height: 450px;
    }
    ul.links li a {
        font-size: 14px;
    }
}

@media(max-width: 640px) {}

@media(max-width: 600px) {
    .copy-right {
        font-size: 14px;
    }
}

@media(max-width: 568px) {
    h3.w3ls_pvt-title {
        font-size: 2.3em;
    }
    .w3ls_banner_txt h5 {
        font-size: 18px;
    }
    .csslider&gt;ul&gt;li {
        min-height: 400px;
    }
}

@media(max-width: 480px) {
    h3.w3ls_pvt-title {
        font-size: 2em;
    }
    .button-style {
        padding: 12px 20px;
        font-size: 13px;
    }
    .w3ls_banner_txt {
        margin-top: 18vw;
    }
    .csslider&gt;ul&gt;li:nth-child(2), .csslider&gt;ul&gt;li:nth-child(1), .csslider&gt;ul&gt;li:nth-child(3) {
        background-position: left;
    }
    span.w3-line {
        font-size: 22px;
    }
    h3.agile-title {
        font-size: 25px;
    }
    p {
        font-size: 14px;
    }
    .w3ls-bnrbtm {
        min-height: 300px;
    }
}

@media(max-width: 440px) {
    .csslider&gt;ul&gt;li {
        min-height: 380px;
    }
    .welcome-left h3 {
        font-size: 28px;
    }
    .welcome-left h4 {
        font-size: 18px;
    }
    .icon-effect span {
        font-size: 25px;
    }
    .popup {
        margin: 5em 1em;
    }
    .copy-right {
        letter-spacing: 1px;
    }
}

@media(max-width: 414px) {
    h3.w3ls_pvt-title {
        font-size: 1.8em;
    }
    .w3ls_banner_txt h5 {
        font-size: 16px;
    }
    p {
        font-size: 14px;
    }
    .address textarea {
        min-height: 10em;
    }
}

@media(max-width: 384px) {
    .title.news-titl h3 {
        font-size: 28px;
    }
    .title.news-titl p {
        font-size: 12px;
    }
}

@media(max-width: 375px) {
    #logo a {
        font-size: 32px;
    }
    .toggle {
        font-size: 15px;
    }
    .csslider&gt;ul&gt;li {
        min-height: 340px;
    }
    .title h3 {
        font-size: 24px;
    }
}

@media(max-width: 320px) {
    .w3ls_banner_txt h5 {
        font-size: 14px;
    }
    .menu .toggle {
        width: 56%;
    }
    p {
        font-size: 13px;
    }
    .welcome-left h3 {
        font-size: 24px;
    }
    .welcome-left h4 {
        font-size: 16px;
    }
    h3.agile-title {
        font-size: 22px;
    }
}

/* //responsive */</pre></body></html>