/*!
Theme Name: Webyant
Theme URI: https://www.webyant.com/
Author: Jayanti Solanki
Author URI: https://www.webyant.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: archidiaries
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/


/*!*  Theme Variables* ----------------------------------------------- */

:root {
    --body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    --body-font-size: 1rem;
    --body-font-weight: 300;
    --body-font-color: #303030;
    --body-line-height: 1.5;
    --heading-font-family: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    --heading-font-color: #1e1666;
    --heading-font-weight: 600;
    --link-font-color: #303030;
    --link-hover-font-color: #313879;
    --white-color: #fff;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

::selection {
    color: var(--white-color);
    background: var(--link-hover-font-color);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
img {
    display: block;
}


/* Sections
========================================================================== */

body {
    margin: 0;
    opacity: 1;
    transition: opacity 0.4s;
}

body.ready {
    opacity: 1;
}

main,
.site-main {
    display: block;
}

.section {
    padding-bottom: 100px;
    padding-top: 100px;
    overflow: hidden;
}

.section--light--bg {
    background-color: #eee;
}

.section--light--pink {
    background-color: #fff6f7;
}

.section__title {
    max-width: 750px;
    margin: 0 auto 48px;
}

.section__title h2 {
    position: relative;
    margin-bottom: 48px;
}

.section__title h2:after {
    content: "";
    position: absolute;
    background-color: #313879;
    width: 50px;
    height: 3px;
    bottom: -24px;
    left: 0;
}

.text-center .section__title h2:after,
.section__title.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section__title :last-child {
    margin-bottom: 0;
}


/* Grouping content  ========================================================================== */

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 0.875rem;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bold;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 0.875rem;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
    object-fit: cover;
}


/* Interactive 	 ========================================================================== */

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}


/* Box sizing --------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}


/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

h1,
.h1 {
    font-size: 48px;
}

h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 22px;
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 16px;
}

h6,
.h6 {
    font-size: 14px;
}

cite {
    font-style: normal;
    font-size: 0.8rem;
}


/* Typography
--------------------------------------------- */

body,
button,
input,
select,
optgroup,
textarea {
    color: var(--body-font-color);
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    font-weight: var(--body-font-weight);
    background-color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--heading-font-family);
    color: var(--heading-font-color);
    font-weight: var(--heading-font-weight);
    margin-bottom: 16px;
    line-height: 1.2;
}

p {
    margin-bottom: 24px;
}

p:last-child {
    margin-bottom: 0;
}

blockquote {
    font-weight: 400;
    font-size: 22px;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--heading-font-color);
}

dfn,
em,
i {
    font-style: italic;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}


/*!*  Typo* ----------------------------------------------- */

.text-uppercase {
    text-transform: uppercase !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.font-lg {
    font-size: 1.5rem;
}

.font-md {
    font-size: 1.25rem;
}

.font-sm {
    font-size: 0.875rem;
}

.text-blue {
    color: var(--link-hover-font-color);
}

.text-red {
    color: red;
}

.text-white {
    color: var(--white-color);
}


/*!*  Spacer* ----------------------------------------------- */

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

.mt-12 {
    margin-top: 12px !important;
}

.mt-16 {
    margin-top: 16px !important;
}

.mt-24 {
    margin-top: 24px !important;
}

.mt-32 {
    margin-top: 32px !important;
}

.mt-48 {
    margin-top: 48px !important;
}

.mt-64 {
    margin-top: 64px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-4 {
    margin-bottom: 4px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

.mb-64 {
    margin-bottom: 64px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-48 {
    padding-top: 48px !important;
}

.pt-32 {
    padding-top: 32px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}


/*Grid*/

.row {
    margin-left: -16px;
    margin-right: -16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

[class*="col-"] {
    min-height: 1px;
    padding-left: 16px;
    padding-right: 16px;
}

.col-1 {
    max-width: 8.33333333%;
    flex: 0 0 8.33333333%;
}

.col-2 {
    max-width: 16.66666667%;
    flex: 0 0 16.66666667%;
}

.col-3 {
    max-width: 25%;
    flex: 0 0 25%;
}

.col-4 {
    max-width: 33.33333333%;
    flex: 0 0 33.33333333%;
}

.col-5 {
    max-width: 41.66666667%;
    flex: 0 0 41.66666667%;
}

.col-6 {
    max-width: 50%;
    flex: 0 0 50%;
}

.col-7 {
    max-width: 58.33333333%;
    flex: 0 0 58.33333333%;
}

.col-8 {
    max-width: 66.66666667%;
    flex: 0 0 66.66666667%;
}

.col-9 {
    max-width: 75%;
    flex: 0 0 75%;
}

.col-10 {
    max-width: 83.33333333%;
    flex: 0 0 83.33333333%;
}

.col-11 {
    max-width: 91.66666667%;
    flex: 0 0 91.66666667%;
}

.col-12 {
    max-width: 100%;
    flex: 0 0 100%;
}

.no-guttor {
    margin-right: 0;
    margin-left: 0;
}

.no-guttor>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.row--reverse {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.row--space-between {
    justify-content: space-between;
}

.row--space-center {
    justify-content: center;
}

.row--items-center {
    -ms-align-items: center;
    align-items: center;
}


/* Elements
--------------------------------------------- */

body {
    background: var(--white-color);
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 16px;
}

ul,
ol {
    margin: 0 0 16px 20px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 16px;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}

img {
    height: auto;
    max-width: 100%;
}

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}


/*Main center wrap*/

.wrap,
.wrap-fuild {
    width: 100%;
    padding-left: 32px;
    padding-right: 32px;
}

.wrap *,
.wrap-fuild * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wrap {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.wrap-840 {
    max-width: 840px;
}


/* Links
--------------------------------------------- */

a {
    color: var(--link-font-color);
    text-decoration: none;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    outline: none;
}

a:focus,
a:active {
    color: inherit;
}

a:hover {
    text-decoration: none;
}


/*============= BUTTONS =============*/

input[type="submit"],
.btn {
    padding: 18px 40px;
    line-height: 1;
    font-size: 0.875rem;
    text-align: center;
    font-weight: 600;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    background: linear-gradient(to right, #313879 0%, #1b204f 100%);
    color: var(--white-color);
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type="submit"],
.btn:hover {
    box-shadow: 0px 8px 25px rgb(0 0 0 / 25%);
    transform: translateY(-5px);
}

.btn:focus {
    color: #fff;
}

.btn--white {
    border: 2px solid white;
    padding: 12px 24px;
    background: transparent;
    border-radius: 4px;
}

.btn+.btn {
    margin-left: 16px;
}

.btn--lg {
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px 48px;
}

.btn--sm {
    font-size: 0.875rem;
    padding: 10px 16px;
}

.btn--block {
    display: block;
    width: 100%;
}


/*Bullet List*/

.bullet-circle li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.bullet-circle li:before {
    content: "";
    border: 2px solid #333;
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.bullet-check {
    list-style: none;
    margin-left: 0;
}

.bullet-check li {
    position: relative;
    padding-left: 32px;
}

.bullet-check li+li {
    margin-top: 16px;
}

.bullet-check li:before {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 8px;
    width: 8px;
    height: 16px;
    border: solid #333;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.bullet-check-circle li+li {
    margin-top: 24px;
}

.bullet-check-circle li:before {
    top: 3px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    z-index: 2;
}

.bullet-check-circle li:after {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--link-hover-font-color);
    z-index: 1;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
}

.posts-navigation .nav-links {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: end;
    flex: 1 0 50%;
}


/*Form*/

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-group br {
    display: none;
}

.form-group a {
    color: var(--link-hover-font-color);
    text-decoration: underline;
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px 16px;
    background-color: var(--white-color);
    font-family: var(--body-font-family);
    font-size: 0.875rem;
    color: var(--body-font-color);
    font-weight: normal;
    display: block;
}

.form-control.wpcf7-not-valid {
    border: 1px solid red !important;
}

.form-control:focus {
    border-color: #ccc;
}

label {
    margin-bottom: 5px;
    display: block;
    font-size: 0.875rem;
    color: #252b33;
    font-weight: 600;
}

textarea.form-control {
    height: 100px;
}

.wpcf7-not-valid-tip {
    font-size: 0.875rem;
    margin-top: 4px;
}

select.form-control {
    border-radius: 0;
    height: 40px;
    display: block;
    width: 100%;
    padding: 0 0 0 15px;
    background: url(assets/images/drop-down-arrow.png) no-repeat right 15px center var(--white-color);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: 0.875rem;
    box-sizing: border-box;
}


/* Posts and pages
--------------------------------------------- */

.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}


/* Comments
--------------------------------------------- */

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

.login__message a {
    text-decoration: underline;
    color: var(--link-hover-font-color);
}

.comment-list {
    padding: 0;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dadce0;
}

.comment-list,
.comment-list ol {
    margin-left: 0;
    list-style: none;
}

.comment-list>li+li,
.comment-list ol li {
    border-top: 1px solid #dadce0;
}

.comment-body {
    padding: 12px 0;
    position: relative;
    font-size: 0.875rem;
}

.comment-body .comment-meta {
    padding-left: 48px;
}

.comment-body .comment-meta img {
    position: absolute;
    left: 0;
    top: 21px;
    border-radius: 50%;
}

.comment-body .fn {
    font-weight: 600;
}

.comment-body .says,
.comment-body .edit-link {
    display: none;
}

.comment-body .reply,
.comment-metadata,
.comment-metadata a {
    color: #636466;
    font-size: 0.875rem;
    font-weight: normal;
}

.comment-body .reply,
.comment-body .comment-content {
    margin-left: 48px;
}

.comments-view-click {
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-right: 16px;
}

.comments-view-click::before {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ccc;
}

.comments-view-click.active::before {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ccc;
    border-top: none;
}

.comment-form {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2%;
}

.comment-reply-title {
    margin-bottom: 24px;
}

.must-log-in {
    margin-bottom: 0;
}

.must-log-in a {
    color: var(--link-hover-font-color);
    font-weight: normal;
    text-decoration: underline;
}

.comment-form p {
    margin: 0 2% 8px;
    flex: 0 0 96%;
    max-width: 96%;
}

.comment-form .comment-form-cookies-consent {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
}

.comment-form .comment-form-cookies-consent input {
    margin-right: 8px;
}

.comment-form .comment-form-cookies-consent label {
    display: inline;
}

.comment-form .comment-notes,
.comment-form .logged-in-as,
.comment-form .comment-form-url {
    display: none;
}

.comment-form #comment,
.comment-form #author,
.comment-form #email {
    border: 1px solid #ddd;
    width: 100%;
    padding: 8px 16px;
    outline: none;
}

.comment-form .form-submit,
.comment-form .comment-form-cookies-consent,
.comment-form .comment-form-comment {
    flex: 0 0 96%;
    max-width: 96%;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email {
    flex: 0 0 46%;
    max-width: 46%;
}

.comment-form #comment:focus,
.comment-form #author:focus,
.comment-form #email:focus {
    border-color: var(--heading-font-color);
    outline: none;
}

.comment-form #comment {
    max-width: 100%;
    min-width: 100%;
    height: 80px;
}

.entry-footer>span {
    display: block;
}

.entry-footer,
.entry-meta {}

.entry-footer a {
    color: var(--heading-font-color);
}

.entry-footer a:hover {
    text-decoration: underline;
}


/* Widgets
--------------------------------------------- */

.widget {
    margin: 0 0 16px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget .widget-title {
    margin-bottom: 8px;
}

.widget select {
    max-width: 100%;
}


/* Media
--------------------------------------------- */

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

.entry-content p,
.entry-content p * {
    font-weight: 300 !important;
}

.entry-content b,
.entry-content strong {
    font-weight: bold !important;
}

.entry-content a,
.information__spec a {
    font-weight: 400;
    color: var(--link-hover-font-color);
}


/* Make sure logo link wraps around logo image. */

.custom-logo-link {
    display: inline-block;
}


/* Captions
--------------------------------------------- */

.wp-caption {
    margin-bottom: 16px;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 2px 0 8px;
    font-size: 12px;
    font-style: italic;
    color: #adadad;
    text-align: left;
}

.wp-caption-text {
    text-align: left;
}


/* Accessibility
--------------------------------------------- */


/* Text meant only for screen readers. */

.screen-reader-text,
.form-group-hidden {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}


/* Do not show the outline on the skip link target. */

#primary[tabindex="-1"]:focus {
    outline: 0;
}


/* Alignments
--------------------------------------------- */

.alignleft {
    /*rtl:ignore*/
    float: left;
    /*rtl:ignore*/
    margin-right: 16px;
    margin-bottom: 10px;
}

.alignright {
    /*rtl:ignore*/
    float: right;
    /*rtl:ignore*/
    margin-left: 16px;
    margin-bottom: 10px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 4px auto 10px;
}


/*============= Header =============*/

.site-header {
    padding-top: 24px;
    padding-bottom: 24px;
    animation-duration: 1s;
    transition: 1s;
    width: 100%;
    position: absolute;
    z-index: 9999999;
}

.header__wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: center;
}

.site-header.sticky {
    padding-top: 16px;
    padding-bottom: 16px;
    position: fixed;
    transition: 0.5s;
    box-shadow: 0 5px 40px 0 rgb(0 0 0 / 10%);
    background: rgb(255, 255, 255);
}
.site-logo__dark img,
.site-logo img {
    max-width:200px;
}
.site-header-light .navbar ul li a,
.sticky .navbar ul li a {
    color: var(--heading-font-color);
}

.site-header-light .btn--white,
.sticky .btn--white {
    border-color: var(--heading-font-color);
}

.site-header-light .site-logo,
.sticky .site-logo {
    display: none;
}

.site-logo__dark {
    display: none;
}

.site-header-light .site-logo__dark,
.sticky .site-logo__dark {
    display: block;
}

.nav-on .navbar {
    display: block;
}

.navbar ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
}

.navbar ul li {
    position: relative;
    padding: 8px 0;
}

.navbar ul li+li {
    margin-left: 48px;
}

.navbar ul li a {
    display: block;
    color: var(--white-color);
    font-weight: 400;
    font-size: 18px;
    position: relative;
    transition: 0.3s;
}

.navbar ul .menu-item-has-children a {
    padding-right: 15px;
}

.navbar ul .menu-item-has-children>a::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(315deg) translateX(50%);
    top: 50%;
    right: 0;
    margin-top: -2px;
}

.navbar ul li a:hover {
    transform: translateY(-5px);
}

.site-header-light .navbar ul .menu-item-has-children a::before,
.sticky .navbar ul .menu-item-has-children a::before {
    border-color: var(--heading-font-color);
}

.nav-on .navbar>ul {
    display: block;
}

.navbar .sub-menu {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 2px 1px rgb(0 0 0 / 16%);
    left: 0;
    min-width: 120px;
    display: none;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
    transition: top 0s, opacity 0.3s, -webkit-transform 0.3s;
    transition: top 0s, transform 0.3s, opacity 0.3s;
    transition: top 0s, transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition-delay: 0.3s, 0, 0;
    visibility: hidden;
    z-index: -1000;
    display: block;
}

.navbar li:hover .sub-menu {
    opacity: 1;
    top: 100%;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: top 0s, opacity 0.3s, -webkit-transform 0.3s;
    transition: top 0s, transform 0.3s, opacity 0.3s;
    transition: top 0s, transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition-delay: 0;
    visibility: visible;
    z-index: 10;
}

.navbar .sub-menu li {
    padding: 0;
}

.navbar .sub-menu li+li {
    margin-left: 0;
}

.navbar .sub-menu li a {
    display: block;
    padding: 8px 16px;
    white-space: nowrap;
    color: var(--heading-font-color);
}

.menu-toggle {
    background: none;
    border: none;
    width: 32px;
    height: 18px;
    border-top: 2px solid #fff;
    cursor: pointer;
    z-index: 99;
    position: relative;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    display: none;
    overflow: hidden;
    text-indent: -1000px;
}

.menu-toggle:before,
.menu-toggle:after {
    content: "";
    position: absolute;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: #fff;
}

.sticky .menu-toggle {
    border-top-color: var(--heading-font-color);
}

.sticky .menu-toggle:before,
.sticky .menu-toggle:after {
    background-color: var(--heading-font-color);
}

.menu-toggle:before {
    top: 50%;
    margin-top: -2px;
}

.menu-toggle:after {
    bottom: 0;
}

.nav-on .menu-toggle {
    width: 27px;
    height: 27px;
    border: none;
}

.sub-menu-toggle {
    display: none;
}

.nav-on .menu-toggle .label-close {
    display: block;
}

.nav-on .menu-toggle:hover {
    opacity: 1;
}

.nav-on .menu-toggle:before,
.nav-on .menu-toggle:after {
    position: absolute;
    left: 13px;
    content: " ";
    height: 27px;
    width: 2px;
    background-color: #fff;
}

.nav-on .menu-toggle:before {
    transform: rotate(45deg);
    top: 0;
    margin-top: 0;
}

.nav-on .menu-toggle:after {
    transform: rotate(-45deg);
}


/*============= Footer =============*/

.site-footer {
    background: url(assets/images/footer-bg.png) no-repeat top center;
    background-size: cover;
    padding-top: 120px;
    color: #7b7fab;
    font-size: 16px;
    position: relative;
    z-index: 9;
}

.site-footer a {
    color: #7b7fab;
}

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

.site-footer h4 {
    color: white;
    margin-bottom: 24px;
}

.footer__links {
    margin: 0;
    list-style: none;
}

.footer__links li {
    margin-bottom: 15px;
}

.footer__links li a {
    color: #7b7fab;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
}

.footer__links a:hover {
    transform: translateX(5px);
    color: var(--white-color);
}

.footer__bottom {
    margin-top: 32px;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid grey;
}

.social--links {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
    list-style: none;
    margin: 0;
}

.social--links li+li {
    margin-left: 16px;
}

.social--links a {
    display: block;
}

.social--links svg {
    fill: #7b7fab;
}

.social--links a:hover svg {
    fill: var(--white-color);
}


/*============= Main ============*/


/*......section--banner...*/

.section--banner {
    background: url(assets/images/main-banner-bg.png) no-repeat center bottom;
    background-size: cover;
}

.banner__text h1 {
    color: var(--white-color);
    margin: 24px 0;
}

.banner__text p {
    font-size: 17px;
    line-height: 29px;
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 32px;
}

.banner__img {
    position: relative;
}

.banner__img>img {
    position: relative;
    z-index: 99;
}

.banner__img img {
    margin: 0 auto;
}

.cloud-img {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
    animation-name: example;
    animation-duration: 7s;
    animation-iteration-count: infinite;
}

@keyframes example {
    0% {
        left: 0px;
        top: 10%;
    }
    50% {
        left: -20px;
        top: 5%;
    }
    100% {
        left: 0;
        top: 10%;
    }
}

.circle-img {
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    top: 0;
    animation-name: example2;
    animation-duration: 7s;
    animation-iteration-count: infinite;
}

@keyframes example2 {
    0% {
        right: 0px;
        top: 0;
    }
    50% {
        right: -30px;
        top: 10%;
    }
    100% {
        right: 0px;
        top: 0;
    }
}

.circle-img2 {
    width: 100px;
    height: 100px;
    position: absolute;
    left: -50px;
    bottom: 25%;
    animation-name: example3;
    animation-duration: 7s;
    animation-iteration-count: infinite;
}

@keyframes example3 {
    0% {
        left: -50px;
        bottom: 25%;
    }
    50% {
        left: -100px;
        bottom: 25%;
    }
    100% {
        right: -50px;
        bottom: 25%;
    }
}

.circle-img3 {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
    animation-name: example4;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes example4 {
    0% {
        left: 130px;
        top: 5%;
    }
    50% {
        left: 130px;
        top: 0%;
    }
    100% {
        left: 130px;
        top: 5%;
    }
}


/*......section--media...*/

.section--features {
    margin-top: -100px;
    padding: 24px 0;
    position: relative;
    z-index: 9;
}

.feature__box {
    background: #fff;
    box-shadow: 0px 0px 33px 10px rgb(36 76 109 / 12%);
    height: 100%;
    transition: 0.5s;
}

.feature__box a {
    display: block;
    padding: 32px 24px;
    height: 100%;
}

.feature__box:hover {
    box-shadow: 0px 0px 13px 5px rgb(36 76 109 / 12%);
}

.marketing__solve {
    position: relative;
}

.marketing__solve img {
    margin-left: auto;
}

.solve-photo {
    position: absolute;
    top: 60px;
    left: 0;
}

.solve-photo1 {
    position: absolute;
    bottom: 20px;
    left: 100px;
}


/**-----------section--business--------------**/

.section--business {}

.blog__image {
    position: relative;
}

.blog__image img {
    margin: 0 auto;
}

.rocket {
    position: absolute;
    top: -50px;
    right: 180px;
}


/**-----------section--clients--------------**/

.testimonial__block {
    margin: 16px;
}

.testimonial__text {
    background-color: #fff;
    padding: 24px;
    border-radius: 5px;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 10%);
}

.testimonial__info {
    display: flex;
    align-items: center;
    padding-top: 16px;
}

.testimonial__info .testimonial__img {
    flex: 0 0 60px;
    max-width: 60px;
}

.testimonial__info .testimonial__client {
    padding-left: 16px;
    flex: 0 0 calc(100% - 60px);
    max-width: calc(100% - 60px);
}

.testimonial__info .testimonial__client h5 {
    margin-bottom: 4px;
}

.client__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.client__logo img {
    max-height: 80px;
}

.getintouch {
    margin-bottom: 48px;
    text-align: center;
}

.getintouch h2 {
    font-weight: bold;
    margin-bottom: 32px;
}

.getintouch .btn {
    font-size: 20px;
}


/*..........section Inner Banner..........*/

.section--inner-hero {
    background: url(assets/images/banner-bg.png) no-repeat #332295;
    background-size: cover;
    padding-top: 148px;
    padding-bottom: 48px;
}

.hero__text h1,
.hero__text {
    color: #fff;
}

.hero__text {
    font-size: 18px;
}

.hero__image img {
    margin-left: auto;
}


/*.........section--creativity.........*/

.bullet-arrow {
    list-style: none;
    margin: 0 0 24px;
}

.bullet-arrow li {
    position: relative;
    padding-left: 28px;
}

.bullet-arrow li+li {
    margin-top: 20px;
}

.bullet-arrow li:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 5px;
    left: 0;
    background: url(assets/images/ico-bullet.png) no-repeat;
}


/*.............section--business............*/

.verticals-card {
    margin-bottom: 24px;
}

.business-titles {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.business-titles img {
    margin-right: 24px;
}

.business-titles h4 {
    margin-bottom: 0;
}

.feature__card {
    padding: 45px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 10%);
    transition: 0.5s;
    border-radius: 5px;
}

.feature__card img {
    margin: 0 auto 24px;
}

.feature__card:hover {
    transform: translate3d(0, -10px, 0);
}


/*.........section Seo.........*/

.seo__timeline-item {
    position: relative;
    padding-top: 60px;
}

.timeline-item-line::after {
    position: absolute;
    content: "";
    background-color: #cacdd4;
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item-dot::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 75px;
    left: 50%;
    border-radius: 50%;
    background-color: #fff;
    border: 5px solid #cacdd4;
    transform: translateX(-50%);
}

.timeline__card {
    padding-left: 85px;
    padding-right: 85px;
}


/*............Section FAQ.........*/

.accordian__block {
    background-color: #f6fafc;
    margin-bottom: 20px;
}

.accordian__block h3 {
    position: relative;
    margin-bottom: 0;
    padding: 24px 32px;
    cursor: pointer;
}

.accordian__block h3::after,
.accordian__block h3::before {
    content: "";
    position: absolute;
    background-color: #1e1666;
    top: 36px;
    transform: translateY(-50%);
}

.accordian__block h3::after {
    height: 2px;
    width: 15px;
    right: 30px;
}

.accordian__block h3::before {
    height: 15px;
    width: 2px;
    right: 36px;
}

.accordian__block .active::before,
.accordian__block .accordian__content {
    display: none;
}

.accordian__block .accordian__content {
    padding: 0 32px 24px;
}

.accordian__block .accordian__content p:last-child {
    margin-bottom: 0;
}


/*Services*/

.card__icon {
    padding: 32px;
}

.card__icon:hover {
    background-color: #fff;
    box-shadow: 9px 17px 30px 0px rgb(0 0 0 / 10%);
    transition: 0.6s;
}

.card__icon img {
    margin: 0 0 24px;
}

.text-center .card__icon img {
    margin-left: auto;
    margin-right: auto;
}

.strategy__info {
    display: flex;
    align-items: center;
}

.strategy__info h4 {
    padding-left: 15px;
    margin-bottom: 0;
}

.service__card {
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 24px 24px 24px 80px;
    position: relative;
}

.service__card h4 {
    margin-bottom: 0;
}

.service__card.bg1 {
    background-image: url(assets/images/web-development-frontend.png);
}

.service__card.bg2 {
    background-image: url(assets/images/web-development-backend.png);
}

.service__card.bg3 {
    background-image: url(assets/images/application-integration.png);
}

.service__card.bg4 {
    background-image: url(assets/images/custom-business.png);
}

.service__card.bg1:before {
    background-color: #7ac1ea;
}

.service__card.bg2:before {
    background-color: #d8939a;
}

.service__card.bg3:before {
    background-color: #9198db;
}

.service__card.bg4:before {
    background-color: #edc878;
}

.service__counter {
    list-style-type: none;
    counter-reset: css-counter 0;
}

.service__counter .service__card {
    counter-increment: css-counter 1;
}

.service__counter .service__card:before {
    content: counter(css-counter);
    position: absolute;
    left: 24px;
    top: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-weight: bold;
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
}


/*Contact Page*/


/*.........section--contactform.......*/

.contact__info {
    list-style: none;
    margin: 0;
}

.contact__info li+li {
    margin-top: 32px;
}

.contact__info li {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
}

.contact__info li img {
    margin-right: 32px;
    max-width: 55px;
    flex: 0 0 55px;
}

.contact__info li p {
    max-width: calc(100% - 87px);
    flex: 0 0 calc(100% - 87px);
}

.contact__form {
    box-shadow: 0px 7px 24px 0px rgb(0 0 0 / 12%);
    padding: 32px;
    border-radius: 10px;
    background-color: var(--white-color);
    max-width: 800px;
    margin: 0 auto;
}

.google-map {
    margin-bottom: -110px;
}


/* Case Studies --------------------------------------------- */

.casestudy__block {
    background-color: #fff;
    box-shadow: 0 0 30px rgb(0 0 0 / 12%);
    border-radius: 5px;
    overflow: hidden;
    transition: 0.5s;
    height: 100%;
}

.casestudy__block:hover {
    transform: translateY(-6px);
}

.casestudy__block .casestudy__img {
    overflow: hidden;
}

.casestudy__block img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: 0.9s;
    height: 260px;
    width: 100%;
}

.casestudy__block img:hover {
    transform: scale(1.1);
}

.casestudy__info {
    padding: 24px;
}

.casestudy__info span {
    display: block;
    margin-bottom: 4px;
}


/*Resposnive Tab*/

.r-tabs .r-tabs-nav {
    margin: 0;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 5px 20px rgb(0 0 0 / 20%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    list-style: none;
}

.r-tabs .r-tabs-tab {
    list-style: none;
    flex: 0 0 25%;
    max-width: 25%;
}

.r-tabs .r-tabs-tab+.r-tabs-tab {
    border-left: 1px solid #e5e5e5;
}

.r-tabs .r-tabs-tab .r-tabs-anchor {
    padding: 24px 32px;
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    color: var(--heading-font-color);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.r-tabs .r-tabs-state-active .r-tabs-anchor {
    border-color: var(--link-hover-font-color);
}

.r-tabs .r-tabs-panel {
    padding: 24px 0;
    display: none;
}

.r-tabs .r-tabs-accordion-title {
    display: none;
}

.r-tabs .r-tabs-panel.r-tabs-state-active {
    display: block;
}


/* Accordion responsive breakpoint */

@media only screen and (max-width: 768px) {
    .r-tabs .r-tabs-nav {
        display: none;
    }
    .r-tabs .r-tabs-accordion-title {
        display: block;
    }
}


/*SEO Page*/

.step__row {
    background: url(assets/images/seo-curve-line.png) no-repeat center center;
}

.step__block {
    background: url(assets/images/polygon-banner.png) no-repeat center center;
    min-height: 267px;
    padding: 70px 32px 0;
}

.step__block img {
    margin: 0 auto 16px;
}


/*............section--contect.......*/

.section--quote {
    background: url(assets/images/seo-traffic-banner.jpg) no-repeat;
    background-size: cover;
}

.contect__text h2 {
    color: #fff;
}

.get__quote--form {
    background-color: #fff;
    padding: 48px 24px;
    border-radius: 8px;
}


/*.......section--plans..........*/

.plans__card {
    text-align: center;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 8%);
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}

.plan-tag {
    position: absolute;
    background: linear-gradient(to right, #fa897d 0%, #fe5f88 100%);
    top: 12px;
    right: -40px;
    text-transform: uppercase;
    color: #fff;
    padding: 3px 50px 4px 70px;
    transform: rotate(30deg);
    font-weight: 700;
    box-shadow: 0 0 19px rgb(0 0 0 / 15%);
}

.plans__card img {
    margin: 0 auto 16px;
}

.plans__card ul {
    list-style: none;
    margin: 0;
}

.plans__card ul li {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.plans__card ul li:last-child {
    border-bottom: 0;
}

.plans__card .price strong {
    font-size: 55px;
    color: #1e1666;
    font-weight: 500;
}

.img-icon-list {
    list-style: none;
    margin-left: 0;
}

.img-icon-list li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.img-icon-list li+li {
    margin-top: 16px;
}

.img-icon-list li img {
    flex: 0 0 28px;
    max-width: 28px;
    margin-right: 12px;
}

.img-icon-list li p {
    flex: 0 0 calc(100% - 40px);
    max-width: calc(100% - 40px);
}


/*Web Design*/

.section--design {
    background: url(assets/images/webdesign-banner-bg.png) no-repeat 0 240px;
    background-size: cover;
}

.design__card {
    padding: 40px;
    transition: 0.5s;
    background: #fff;
}

.design__card:hover {
    transform: translateY(-20px);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 8%);
    border-radius: 8px;
}

.design__card img {
    margin: 0 auto;
    margin-bottom: 17px;
}

.design__card h5 {
    color: #1E1666;
}

.design__card a {
    color: #313879;
    font-weight: 600;
}

.portfolio__card {
    position: relative;
}

.portfolio__card img {
    width: 100%;
}

.portfolio__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.6s;
}

.portfolio__text a {
    font-size: 22px;
    font-weight: 600;
}

.portfolio__card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #bccddd;
    opacity: 0;
    transition: 0.5s;
}

.portfolio__card:hover::before,
.portfolio__card:hover .portfolio__text {
    opacity: 1;
}

.portfolio__card:nth-child(2)::before {
    background-color: #f9ff47;
}

.portfolio2 .portfolio__card:nth-child(1)::before {
    background-color: #8b4ec3;
}

.portfolio2 .portfolio__card:nth-child(2)::before {
    background-color: #f385c4;
}

.portfolio2 .portfolio__card:nth-child(3)::before {
    background-color: #7ae1aa;
}

.portfolio3 .portfolio__card:nth-child(1)::before {
    background-color: #f7c30f;
}

.portfolio3 .portfolio__card:nth-child(2)::before {
    background-color: #41b3b4;
}


/*Blog*/

.blog__card .post-meta {
    font-size: 12px;
}


/*Social Media*/

.media__block {
    display: flex;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 12%);
    padding: 24px 32px;
    border-radius: 10px;
}

.media__block .media__img {
    flex: 0 0 40px;
    max-width: 40px;
}

.media__block .media__text {
    padding-left: 24px;
}

.feature__block {
    display: flex;
    align-items: center;
}

.feature__block .feature__image {
    flex: 0 0 165px;
    max-width: 165px;
    margin-right: 24px;
}


/*==============section--enterprise===*/

.info-link {
    color: #fe5f88;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

.section--assessing {
    overflow: visible;
    margin-top: 100px;
}

.footfalls__photo {
    margin-top: -270px;
    margin-bottom: 64px;
}

.section--assessing {
    background: url(assets/images/marketingsis-banner.jpg) no-repeat;
    background-size: cover;
}

.section--assessing h2 {
    max-width: 800px;
    margin: 0 auto 64px;
}

.analysis__info h2 {
    position: relative;
    text-align: right;
    padding-right: 32px;
}

.analysis__info h2::before {
    content: "";
    position: absolute;
    background-color: #313879;
    width: 3px;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.section--career,
.section--blog {
    font-size: 20px;
}

.image__center img,
.post-thumbnail img {
    display: block;
    margin: 0 auto;
}

.job-list .job__card+.job__card {
    margin-top: 48px;
}

.job__card {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: space-between;
}

.job__card .job-content h3 {
    margin-bottom: 8px;
}

.job__card .btn {
    flex: 0 0 160px;
    max-width: 160px
}


/*............................
............Responsive........
.............................*/

@media (max-width:1023px) {
    .wrap,
    .wrap-fuild {
        padding-left: 16px;
        padding-right: 16px;
    }
    .col-md-6 {
        max-width: 50%;
        flex: 0 0 50%;
    }
    .col-md-4 {
        max-width: 33.33%;
        flex: 0 0 33.33%;
    }
    .col-md-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .mt-md-32 {
        margin-top: 32px !important;
    }
    .mb-md-32 {
        margin-bottom: 32px !important;
    }
    .rocket {
        right: 70px;
        width: 170px;
    }
    .section--inner-hero {
        padding-top: 100PX !important;
    }
    .section--creativity .row .col-6 img {
        margin: 0 auto;
    }
    .plans__card {
        padding: 40px 20px;
    }
    .design__card {
        padding: 20px;
    }
    .section--assessing {
        padding-top: 150px !important;
    }
    .responsive--tabs .r-tabs-accordion-title .r-tabs-anchor {
        display: block;
        font-size: 18px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 8px;
        background-color: #fff;
        box-shadow: 0 5px 20px rgb(0 0 0 / 20%);
        border-radius: 8px;
        padding: 8px 16px;
    }
    .r-tabs .r-tabs-panel {
        padding: 32px 0;
    }
    .section--blog .blog__text {
        padding: 0;
    }
    .navbar ul li+li {
        margin-left: 38px;
    }
    .site-footer {
        padding-top: 64px;
    }
    .card__icon {
        padding: 16px;
    }
}

@media (max-width:767px) {
    h1,
    .h1 {
        font-size: 38px;
    }
    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .section--banner {
        padding-top: 72px;
    }
    .col-sm-4 {
        max-width: 33.333333333333336%;
        flex: 0 0 33.333333333333336%;
    }
    .col-sm-6 {
        max-width: 50%;
        flex: 0 0 50%;
    }
    .col-sm-8 {
        max-width: 66.66666666666667%;
        flex: 0 0 66.66666666666667%;
    }
    .col-sm-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .mb-sm-32 {
        margin-bottom: 32px !important;
    }
    .mb-sm-20 {
        margin-bottom: 20px;
    }
    .mb-sm-30 {
        margin-bottom: 30px;
    }
    .text-sm-center {
        text-align: center !important;
    }
    body.nav-on {
        overflow: hidden;
    }
    .site-logo {
        position: relative;
        z-index: 99;
    }
    .nav-on .site-header-light .site-logo__dark,
    .nav-on .sticky .site-logo__dark {
        display: none;
    }
    .nav-on .site-header-light .site-logo,
    .nav-on .sticky .site-logo {
        display: block;
    }
    .menu-toggle {
        display: block;
    }
    .navbar>ul {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        background-color: var(--link-hover-font-color);
        width: calc(100% - 60px);
        max-width: 100%;
        z-index: 10;
        height: 100vh;
        overflow-y: auto;
        padding-top: 80px;
        margin-right: 60px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    body.nav-on .navbar ul {
        left: 0;
    }
    .navbar:after {
        content: "";
        position: absolute;
        background-color: rgba(0, 0, 0, 0.5);
        width: 60px;
        height: 100vh;
        right: -60px;
        top: 0;
        z-index: 10;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
        display: none;
    }
    body.nav-on .navbar:after {
        right: 0;
        display: block;
    }
    .navbar ul li+li {
        margin-left: 0;
    }
    .navbar ul li {
        padding: 12px 24px;
    }
    .navbar ul li a:hover {
        transform: translateY(0);
    }
    .navbar .sub-menu {
        margin-top: 8px;
        position: static;
        display: none;
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        transition: top 0s, opacity 0.3s, -webkit-transform 0.3s;
        transition: top 0s, transform 0.3s, opacity 0.3s;
        transition: top 0s, transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
        transition-delay: 0;
        visibility: visible;
        z-index: 10;
        background: var(--heading-font-color);
        ;
    }
    .navbar .sub-menu.show {
        display: block;
    }
    .navbar .sub-menu li a {
        color: var(--white-color);
        white-space: normal;
    }
    .site-header-light .navbar ul li a,
    .sticky .navbar ul li a {
        color: var(--white-color);
    }
    .site-header-light .navbar ul .menu-item-has-children a::before,
    .sticky .navbar ul .menu-item-has-children a::before {
        border-color: var(--white-color);
    }
    .block-md-center {
        margin: 0 auto;
        margin-top: 15px;
    }
    .rocket {
        right: initial !important;
        width: 135px !important;
        left: 50%;
        margin-left: -65px !important;
    }
    .business__card {
        position: relative;
        z-index: 9;
    }
    .solve-photo1 {
        width: 121px !important;
        left: 0;
    }
    .rocket-point,
    .rocket-point1,
    .rocket-point2,
    .rocket-point3 {
        width: 38px !important;
    }
    .timeline__card {
        padding: 0 40px;
    }
    .section--creativity .row .col-6 img {
        width: 300px;
    }
    .align-md-center {
        -ms-align-items: center;
        align-items: center;
    }
    .section--sector .card__icon {
        padding: 15px;
    }
    .img-icon-list li img {
        margin-left: 0 !important;
    }
    .section--design .design__card {
        padding: 10px;
    }
    .section--development .card__icon {
        padding: 10px;
    }
    .cloud-img,
    .circle-img,
    .circle-img2,
    .circle-img3 {
        opacity: 0.2;
    }
    .card__icon {
        text-align: center;
    }
    .card__icon img {
        margin-left: auto;
        margin-right: auto;
    }
    .analysis__info h2 {
        text-align: center;
        padding: 0 0 32px;
    }
    .analysis__info h2::before {
        width: 100px;
        height: 3px;
        top: calc(100% - 8px);
        transform: translateY(0);
        transform: translateX(50%);
        right: 50%;
    }
}

@media (max-width:577px) {
    h1,
    .h1 {
        font-size: 32px;
    }
    h2,
    .h2 {
        font-size: 24px;
    }
    h3,
    .h3 {
        font-size: 20px;
    }
    h4,
    .h4 {
        font-size: 18px;
    }
    .col-xs-6 {
        max-width: 50%;
        flex: 0 0 50%;
    }
    .col-xs-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .mb-xs-20 {
        margin-bottom: 20px;
    }
    .mb-xs-32 {
        margin-bottom: 32px !important;
    }
    .section--features .rwo .col-3 .feature__box {
        padding: 15px;
    }
    .section--business {
        overflow: hidden;
    }
    .footer__bottom {
        display: block;
    }
    .business__card {
        position: relative;
        z-index: 99;
    }
    .rocket {
        right: 140px !important;
    }
    .feature__card {
        padding: 24px;
    }
    .timeline__card {
        padding: 0 25px;
    }
    .site-footer {
        text-align: center;
    }
    .footer__bottom .social--links {
        justify-content: center;
    }
    .footer__about img {
        margin-left: auto;
        margin-right: auto;
    }
    .comment-form .comment-form-author,
    .comment-form .comment-form-email {
        flex: 0 0 96%;
        max-width: 96%;
    }
}

@media (max-width:479px) {
    .col-xxs-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .mb-xxs-20 {
        margin-bottom: 20px;
    }
    .banner__text p {
        font-size: 16px;
    }
    .rocket {
        right: 75px !important;
    }
    .timeline__card {
        padding: 0;
    }
    .accordian__block h3 {
        font-size: 16px;
    }
    .media__block,
    .feature__block {
        display: block;
        text-align: center;
    }
    .media__block .media__img,
    .feature__block .feature__image {
        margin: 0 auto 24px;
    }
    .media__block .media__text {
        padding-left: 0;
    }
    .service__card {
        width: 315px;
    }
    .contact__form {
        padding: 30px;
    }
}

@media (max-width:359px) {
    .col-xxs-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .mb-xxs-20 {
        margin-bottom: 20px;
    }
    .mb-xxs-65 {
        margin-bottom: 65px !important;
    }
    .section--features {
        margin-top: 0 !important;
    }
    .seo__timeline-item {
        padding-top: 20px;
    }
    .timeline-item-dot::after,
    .timeline-item-line::after {
        display: none;
    }
    .service__card {
        width: 270px;
    }
    .contact__form {
        padding: 20px;
    }
}