@import url( 'theme/css/fonts/caslongrad/stylesheet.css' );

/*
Max content widths
*/

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
    max-width: 100%;
    height: auto
}


/*
Navbar as top bar
*/

.navbar-topbar {
    border-radius: 0;
}


/*
Header logo
If you require a Site title and a logo, an example of how to do this is provided below (use your own logo):

#site-title a {
  display: inline-block;
	padding-left 60px;
  background: url('../../img/logo.png') 0 0 no-repeat;
}
*/


/*
Main content
*/

#content article {
    margin-bottom: 40px
}

#content header {
    margin: 20px 0
}

#content section {
    margin-bottom: 20px
}

#content footer {
    padding-bottom: 20px
}


/*
Sidebar
*/

.sidebar {
    margin-top: 20px
}

.sidebar section {
    margin-bottom: 40px
}

.sidebar ul,
.sidebar ol {
    list-style-type: none;
    padding: 0
}

.sidebar li {
    margin: 10px 0
}


/*
Hide form placeholders on focus
*/

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}


/* FF 4-18 */

input:focus::-moz-placeholder {
    color: transparent;
}


/* FF 19+ */

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}


/* FF 4-18 */

textarea:focus::-moz-placeholder {
    color: transparent;
}


/* FF 19+ */


/*
Comments
*/

#respond {
    margin-top: 40px
}

ol.commentlist {
    counter-reset: li;
    /* Initiate a counter */
    padding: 0
}

ol.commentlist ul {
    padding: 0
}

ol.commentlist>li {
    position: relative;
    margin: 0 0 20px 0;
    list-style: none/* Disable the normal item numbering */
}

ol.commentlist>li:before {
    content: "Thread " counter(li);
    /* Use the counter as content */
    counter-increment: li;
    /* Increment the counter by 1 */
    position: absolute;
    top: 0;
    right: 0;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-bottom-left-radius: 4px;
    padding: 5px 20px 5px 10px;
    color: #999
}

ol.commentlist li ol,
ol.commentlist li ul {
    list-style-type: none;
    margin: 0
}

.commentlist li li {
    background: #f9f9f9;
}

.commentlist li li li {
    background: #fff
}

.commentlist li li li li {
    background: #f9f9f9
}

.commentlist li li li li li li {
    background: #fff
}

.commentlist li {
    padding: 20px
}

.commentlist ul li {
    margin-top: 20px;
    margin-bottom: 0
}

.reply p {
    margin: 0
}


/*
Site footer
*/

.site-footer {
    padding: 40px 0
}

.site-footer ul,
.site-footer ol {
    list-style-type: none;
    padding: 0
}

.site-footer li {
    margin: 10px 0
}


.site-sub-footer p {
    text-align: center
}

.site-footer p {
    text-align: center
}


/* Set Default Width */

@media (min-width: 1200px) {
    .container {
        width: 100%;
        max-width: 1270px;
    }
}

body,
html {
    font-family: 'Barlow', sans-serif;
}

html,
body {
    padding: 0;
    margin: 0;
}

p {
    color: #000000;
    font-size: 16px;
    font-family: 'Barlow', sans-serif;
}

a {
    outline: none;
    text-decoration: none;
    color: #45B5AA;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

a:hover {
    color: #000000;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    font-family: 'Barlow', sans-serif;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #000000;
    font-size: 16px;
}

.clear {
    clear: both;
}

.post-format h3 {
    color: #000000;
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 12px 0;
    font-weight: 400;
}

.post-format h4 {
    color: #000000;
    font-size: 17px;
    line-height: 28px;
    margin: 0 0 12px 0;
    font-weight: 400;
}

.post-format h5 {
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 12px 0;
    font-weight: 400;
}

.post-format h6 {
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 12px 0;
    font-weight: 400;
}

.post-format ul,
.post-format ol {
    margin: 10px 0 20px 0;
    line-height: 38px;
}

.post-format ol {
    padding: 0 0 0 20px;
    list-style: none;
}

.post-format ul li {
    padding-left: 38px;
    margin-bottom: 12px;
}

.post-format ol li {
    padding-left: 20px;
    margin-bottom: 12px;
}

.post-format ul li:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #009448;
    border-radius: 100%;
    margin-right: 22px;
    position: relative;
    top: 16px;
    margin-left: -35px;
    float: left;
}

.post-format ol.start {
    counter-reset: mycounter;
}

.post-format ol.start li:before,
.post-format ol li:before {
    content: counter(mycounter) ". ";
    counter-increment: mycounter;
    margin: 0 0 0 -45px;
    width: 45px;
    display: inline-block;
}

.post-format p {
    line-height: 32px;
    margin: 0 0 12px 0;
}

.post-format a {
    font-weight: 600;
}

.post-format a:hover {
    color: #495965;
}

.post-format img.alignnone,
.post-format img.aligncenter {
    margin: 20px 0 30px 0;
    width: 100%;
}

.post-format img.alignleft,
.post-format img.alignright {
    margin: 20px 0 30px 0;
    width: 100%;
}

.single .post-format img.alignleft {
    float: left;
    max-width: 700px;
    margin: 20px 40px 40px 0;
}

.single .post-format img.alignright {
    float: right;
    max-width: 700px;
    margin: 20px 0 40px 40px;
}

.single .post-format img.alignnone,
.single .post-format img.aligncenter {
    max-width: 814px;
    margin: 30px auto 40px auto;
    display: block;
}

.font-icon-before:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
}

.font-icon-after:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
}


/* C4 Custom login */

body.login {
    background-position: center;
    background-color: #000000;
}

.login h1 a {
    background-image: url('/wp-content/themes/c4-concepts/theme/images/c4-wordpress-logo.png');
    background-size: 140px !important;
    height: 140px;
    width: 140px;
}

.login .button-primary {
    background-color: #2ba7e7 !important;
    border: none;
    text-shadow: none;
    width: 100px;
}

.login .button-primary:hover {
    background-color: #2ba7e7 !important;
}

.login .button-primary:active {
    background-color: #2ba7e7 !important;
}

.login #backtoblog a,
.login #nav a {
    color: #fff;
}

.login #backtoblog a:hover,
.login #nav a:hover {
    color: #2ba7e7;
}

.login form {
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
}


/* Theme V2 CSS */

/*!
 * b4st v3.0 | Unicence
 * http://simonpadbury.github.io/Codebase/
 */

.author-bio,
.comments-wrap {
    margin: 36px auto;
    max-width: 720px;
    padding-left: 16px;
    padding-right: 16px
}

.site-header-image {
    display: block;
    margin: auto
}

.alignleft {
    float: left
}

.alignright {
    float: right
}

.aligncenter {
    clear: both;
    display: block
}

.author-bio .avatar {
    border: 1px solid #dee2e6;
    border-radius: 50%
}

.wp-block-cover-text p {
    padding: 1.5em 16px
}

@media screen and (min-width:768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0
    }
}

ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 16px
}

@media screen and (min-width:768px) {
    .entry-content,
    .entry-header {
        font-size: calc(1rem + 0.375*(100vw - 768px)/432);
        font-weight: 300;
        line-height: inherit
    }
    .entry-header h1 {
        font-size: calc(2.5rem + 0.9375*(100vw - 768px)/432)
    }
}

@media screen and (min-width:1200px) {
    .entry-content,
    .entry-header {
        font-size: 1.375rem
    }
    .entry-header h1 {
        font-size: 3.4375rem
    }
}

.more-link {
    display: block
}

.wp-block-code {
    padding: .5em 1em;
    margin: 0 0 1.5rem
}

.entry-content ol,
.entry-content ul:not(.blocks-gallery-grid) {
    margin: 0 auto 1.5em;
    max-width: 720px;
    list-style-position: outside
}

.entry-content li {
    margin-left: 2.5em
}

.entry-content ol ol,
.entry-content ol ul,
.entry-content ul ol,
.entry-content ul ul {
    margin: 0 auto
}

.entry-content ol ol li,
.entry-content ol ul li,
.entry-content ul ol li,
.entry-content ul ul li {
    margin-left: 0
}

.wp-block-quote {
    margin-left: 16px;
    margin-right: 16px;
    padding: 0
}

.wp-block-quote>* {
    margin-left: 1rem
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
    margin: 36px auto;
    padding: 0
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
    font-size: 13px;
    font-size: .8125rem
}

@media screen and (min-width:768px) {
    .wp-block-quote {
        margin: 48px auto
    }
}

.wp-block-pullquote>p:first-child {
    margin-top: 0
}

.wp-block-pullquote.alignright {
    margin-left: 2rem
}

.wp-block-pullquote.alignleft {
    margin-right: 2rem
}

.entry-content {
    margin: 48px auto;
    max-width: 720px;
    padding-left: 16px;
    padding-right: 16px
}

.entry-content>.alignwide,
.wp-block-gallery.alignwide,
.wp-block-image.alignwide {
    width: 100vw;
    max-width: 1100px;
    margin: 1.5em 0 1.5em 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.entry-content>.alignwide>img {
    width: 1100px
}

.entry-content>.alignfull,
.wp-block-gallery.alignfull,
.wp-block-image.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin: 1.5em 0 1.5em 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.entry-content>.alignfull>img {
    width: 100vw
}

@media screen and (min-width:768px) {
    .entry-content>* {
        padding-left: 0;
        padding-right: 0
    }
}

.wp-block-columns {
    padding-right: 1rem;
    padding-left: 1rem
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0
}

.wp-block-group>.wp-block-group__inner-container>* {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.wp-block-group>.wp-block-group__inner-container>.alignwide {
    width: 100vw;
    max-width: 1100px;
    margin: 1.5em 0 1.5em 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.wp-block-group>.wp-block-group__inner-container>.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin: 1.5em 0 1.5em 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.wp-block-group.has-background>.wp-block-group__inner-container>:first-child {
    margin-top: 0
}

.wp-block-group.has-background>.wp-block-group__inner-container>.alignfull {
    width: calc(100% + 60px);
    max-width: calc(100% + 60px);
    position: relative;
    left: -30px
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail,
img {
    max-width: 100%;
    height: auto
}

.wp-block-image img {
    display: block
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%
}

.wp-block-image.alignfull img {
    width: 100vw
}

.wp-block-image .alignleft figcaption,
.wp-block-image .alignleft img,
.wp-block-image .alignright figcaption,
.wp-block-image .alignright img {
    max-width: 100%;
    width: 100%
}

.wp-block-gallery.alignfull,
.wp-block-image .alignfull {
    width: 100vw
}

.wp-block-gallery.alignleft,
.wp-block-gallery.alignright,
.wp-block-image .alignleft,
.wp-block-image .alignright {
    max-width: 344px
}

.wp-block-gallery.alignright,
.wp-block-image .alignright {
    margin-left: 2rem
}

.wp-block-gallery.alignleft,
.wp-block-image .alignleft {
    margin-right: 2rem
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.wp-block-video video {
    max-width: 720px
}

.wp-block-table {
    overflow-x: auto;
    margin: 1.5rem0
}

.wp-block-table table {
    border-collapse: collapse
}

.wp-block-table td,
.wp-block-table th {
    padding: .5em
}

#comments,
#reply-title {
    margin-top: 1.5rem;
    margin-bottom: 1rem
}

.commentlist,
.commentlist ul {
    padding-left: 0
}

.commentlist li {
    padding: 1rem
}

.comment-meta {
    margin-bottom: 1rem
}

.comment>.children {
    margin-top: 1rem;
    margin-right: -.625rem;
    margin-bottom: -1.625rem
}

body {
    display: -webkit-box;
    display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column
}

main {
    -webkit-box-flex: 1;
    flex: 1 0 auto
}

#site-footer {
    background-color: #f3f4f5
}


/* Header Start */

.header-main-container .logo svg {
    width: 100%;
    max-width: 186px;
    height: auto;
    cursor: pointer;
}

.header-social-main-container {
    position: relative;
}

.header-social-main-container ul {
    position: absolute;
    right: 0;
    top: 60px;
}

.header-social-main-container ul li {
    margin:0 0 14px 0;
}

.header-social-main-container ul li a:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 brands";
    font-weight: 300;
    color: #fff;
    font-size: 20px;
    letter-spacing: normal;
    position: relative;
    z-index: 1;
}

.header-social-main-container ul li a {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    position: relative;
}

.header-social-main-container ul li.linkedin a:before {
    font-size: 32px;
    line-height: 34px;
    content: "\f08c";
}

.header-social-main-container ul li.facebook a:before {
    font-size: 32px;
    line-height: 34px;
    content: "\f082";
}

.header-social-main-container ul li.instagram a:before {
    content: "\e055";
    font-size: 32px;
    line-height: 34px;
}

.header-social-main-container ul li a::after {
    position: absolute !important;
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    right: 5px;
    top: 5px;
    background-color: #fff;
    visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 1\9;
    visibility: visible\9;
    display: none\9;
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.header-social-main-container ul li a:hover:before {
    opacity: 0.8;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;    
}

.header-menu-container #menu-main-menu-inner-page,
.header-menu-container #menu-main-menu {
    display: block;
    margin: 18px 0 0 85px;
    position: relative;
    float: left;
    width: 100%;
}

.header-menu-container #menu-main-menu-inner-page > li,
.header-menu-container #menu-main-menu > li {
    display: inline-block;
    position: relative;
    width: 23%;
}

.scroll-points#our-work {
    margin: -40px 0 0 0;
    padding: 40px 0 0 0;
}

.scroll-points#our-services {
    margin: -130px 0 0 0;
    padding: 130px 0 0 0;
}

.scroll-points#our-clients {
    margin: -130px 0 0 0;
    padding: 130px 0 0 0;
}

.scroll-points#contact-us {
    margin: -50px 0 0 0;
    padding: 50px 0 0 0;
}

.header-menu-container #menu-main-menu-inner-page > li:last-child,
.header-menu-container #menu-main-menu > li:last-child {
    margin-right: 32px;
}

.header-menu-container #menu-main-menu-inner-page>li>a,
.header-menu-container #menu-main-menu>li>a {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 15px;
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 22px;
}

.header-menu-container #menu-main-menu-inner-page>li>a:hover,
.header-main-container.scroll .header-menu-container #menu-main-menu-inner-page>li>a.active,
.header-menu-container #menu-main-menu>li>a:hover,
.header-main-container.scroll .header-menu-container #menu-main-menu>li>a.active {
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    letter-spacing: 6px;
}

.header-menu-container #menu-main-menu-inner-page>li>.dropdown-menu,
.header-menu-container #menu-main-menu>li>.dropdown-menu {
    display: inherit;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: 200ms ease;
    -moz-transition: 200ms ease;
    -o-transition: 200ms ease;
    transition: 200ms ease;
    position: absolute;
    border-radius: 0;
    border: none;
}

.header-menu-container #menu-main-menu-inner-page .dropdown-item,
.header-menu-container #menu-main-menu .dropdown-item {
    color: #222;
}

.header-menu-container #menu-main-menu-inner-page .dropdown-item:focus,
.header-menu-container #menu-main-menu-inner-page .dropdown-item:hover,
.header-menu-container #menu-main-menu .dropdown-item:focus,
.header-menu-container #menu-main-menu .dropdown-item:hover {
    color: #222;
    background-color: #fff;
}

.header-menu-container #menu-main-menu-inner-page>li.dropdown:hover>ul,
.header-menu-container #menu-main-menu>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: 200ms ease;
    -moz-transition: 200ms ease;
    -o-transition: 200ms ease;
    transition: 200ms ease;
}

.header-main-container {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 0 20px 0;
    z-index: 100;
    position: absolute;
}

.header-main-container.scroll .header-social-main-container {
    opacity: 0;
    height: 0;
}

.header-main-container.scroll-up {
    top: -140px;
}

.header-main-container.scroll {
    background: #fff;
    padding: 14px 0 14px 0;
    top: 0;
    position: fixed;
}

.header-main-container.scroll .header-menu-container #menu-main-menu-inner-page>li>a,
.header-main-container.scroll .header-menu-container #menu-main-menu>li>a {
    color: #000;
}

.header-main-container .logo svg.default {
    position: absolute;
}

.header-main-container .logo svg.reverse {
    position: relative;
    opacity: 0;
}

.header-main-container.scroll .logo svg.default {
    opacity: 0;
    max-width: 150px;
}

.header-main-container.scroll .logo svg.reverse {
    opacity: 1;
    max-width: 150px;
}

.header-main-container.scroll .header-menu-container #menu-main-menu-inner-page,
.header-main-container.scroll .header-menu-container #menu-main-menu {
    margin: 14px 0 0 85px;
}

.header-main-container.scroll .header-social-main-container,
.header-main-container .header-social-main-container,
.header-main-container.scroll .header-menu-container #menu-main-menu-inner-page>li>a,
.header-main-container .header-menu-container #menu-main-menu-inner-page>li>a,
.header-main-container.scroll .header-menu-container #menu-main-menu>li>a,
.header-main-container .header-menu-container #menu-main-menu>li>a,
.header-main-container.scroll .logo svg.default,
.header-main-container .logo svg.default,
.header-main-container.scroll .logo svg.reverse,
.header-main-container .logo svg.reverse,
.header-main-container.scroll,
.header-main-container.scroll-up,
.header-main-container,
.header-main-container.scroll .header-menu-container #menu-main-menu-inner-page,
.header-main-container .header-menu-container #menu-main-menu-inner-page,
.header-main-container.scroll .header-menu-container #menu-main-menu,
.header-main-container .header-menu-container #menu-main-menu {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

body {
    background: #000;
}

/* Mobile Menu */

.mobile-header {
    position: absolute;
    right: 15px;
    top: 22px;
}

.mobile-header .phone,
.mobile-header .mobile-menu-button {
    display: inline-block;
}

.mobile-header .phone a {
    font-size: 0;
    margin: 0 14px 0 0;
    display: block;
    border-right: 1px solid #fff;
    position: relative;
    top: -6px;
}

.mobile-header .phone a:before {
    content: '\f095';
    margin: 0 14px 0 0;
    font-weight: 900;
    top: -1px;
    font-size: 22px;
    color: #fff;
    position: relative;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
}

#nav-icon {
    width: 30px;
    height: 25px;
    position: relative;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #ffffff;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    left: 6px;
}

#nav-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 6px;
}

.header-mobile-menu-container {
	--color-text: #fbd54a;
	--color-bg: #333;
	--color-link: #4d4f5f;
	--color-link-hover: #bfb5b5;
	--color-info: #fff;
	--color-main-bg: #24262d;
	--path-fill-1: #00a1e4;
	--path-fill-2: #45b5aa;
	--path-fill-3: #000000;
	--color-title: #fff;
	--font-family-title: 'Arapey', serif;
	--font-size-title: 5vmax;
	--font-weight-title: 400;
	--color-menu: #000000;
	--color-menu-hover: #fff;
	--font-family-menu: 'Arapey', serif;
	--font-size-menu: 4vmax;
	--font-weight-menu: 400;
	--button-bg: #fff;
	--button-line: #222;
    position: relative;
  z-index: 99999;
}

/* Fade effect */

/* Top Navigation Style */
.codrops-links {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 1em 0 0;
	text-align: center;
	white-space: nowrap;
}

.codrops-icon {
	display: inline-block;
	margin: 0.15em;
	padding: 0.25em;
}

.global-menu {
	width: 100vw;
	height: 90vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 100;
}

.global-menu__item {
    color: #fff;
    font-family: var(--font-family-menu);
    font-size: var(--font-size-menu);
    font-weight: var(--font-weight-menu);
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    display: block;
    margin: 0.25em 0;
    transition: transform 0.3s, opacity 0.3s;
    transition-timing-function: ease-in;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 30px;
}

.global-menu__item:hover,
.global-menu__item:focus {
    color: #fff;
}

.global-menu__item--menu-c4 {
	transition: transform 0.1s, opacity 0.1s;
	transform: translateY(100%);
	transition-timing-function: ease-out;
}

.global-menu__item.is-opened {
	opacity: 1;
	transform: translateY(0) rotate(0);
	pointer-events: auto;
	transition-timing-function: ease;
}

.global-menu__item:nth-of-type(1) {
	transition-delay: 0s;
}

.global-menu__item.is-opened:nth-of-type(1) {
	transition-delay: 0.85s;
}

.global-menu__item:nth-of-type(2) {
	transition-delay: 0.05s;
}

.global-menu__item.is-opened:nth-of-type(2) {
	transition-delay: 0.8s;
}

.global-menu__item:nth-of-type(3) {
	transition-delay: 0.1s;
}

.global-menu__item.is-opened:nth-of-type(3) {
	transition-delay: 0.75s;
}

.global-menu__item:nth-of-type(4) {
	transition-delay: 0.15s;
}

.global-menu__item.is-opened:nth-of-type(4) {
	transition-delay: 0.7s;
}

/* demo 3 */
.global-menu__item--menu-c4.is-opened {
	transition-duration: 0.3s;
}

.global-menu__item--menu-c4:nth-of-type(1) {
	transition-delay: 0s;
}

.global-menu__item--menu-c4.is-opened:nth-of-type(1) {
	transition-delay: 0.65s;
}

.global-menu__item--menu-c4:nth-of-type(2) {
	transition-delay: 0s;
}

.global-menu__item--menu-c4.is-opened:nth-of-type(2) {
	transition-delay: 0.7s;
}

.global-menu__item--menu-c4:nth-of-type(3) {
	transition-delay: 0s;
}

.global-menu__item--menu-c4.is-opened:nth-of-type(3) {
	transition-delay: 0.75s;
}

.global-menu__item--menu-c4:nth-of-type(4) {
	transition-delay: 0s;
}

.global-menu__item--menu-c4.is-opened:nth-of-type(4) {
	transition-delay: 0.8s;
}

.shape-overlays {
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
}

.shape-overlays.is-opened {
	pointer-events: auto;
}

.shape-overlays__path:nth-of-type(1) {
	fill: var(--path-fill-1);
}

.shape-overlays__path:nth-of-type(2) {
	fill: var(--path-fill-2);
}

.shape-overlays__path:nth-of-type(3) {
	fill: var(--path-fill-3);
}

.shape-overlays__path:nth-of-type(4) {
	fill: var(--path-fill-4);
}

@-webkit-keyframes intervalHamburgerBorder {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	80% {
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@keyframes intervalHamburgerBorder {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	80% {
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
}

.hamburger {
	width: 64px;
	height: 64px;
	display: block;
	position: relative;
	cursor: pointer;
	position: absolute;
    top: 26px;
    right: 14px;
	z-index: 110;
	border-radius: 50%;
	background-color: var(--button-bg);
	pointer-events: auto;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.hamburger::after {
	width: 64px;
	height: 64px;
	box-sizing: border-box;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	border: 4px solid var(--button-circle);
	border-radius: 50%;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-name: intervalHamburgerBorder;
	animation-name: intervalHamburgerBorder;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.hamburger__line {
	width: 28px;
	height: 2px;
	overflow: hidden;
	position: absolute;
	z-index: 10;
}

.hamburger__line-in {
	width: 84px;
	height: 2px;
	position: absolute;
	top: 0;
	left: 0;
}

.hamburger__line-in::before,
.hamburger__line-in::after {
	width: 28px;
	height: 2px;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	background-color: var(--button-line);
}

.hamburger__line-in::before {
	left: -56px;
}

.hamburger__line-in::after {
	left: 0;
}

.hamburger__line--01,
.hamburger__line--02,
.hamburger__line--03,
.hamburger__line--cross01,
.hamburger__line--cross02 {
	left: 18px;
}

.hamburger__line--01 {
	top: 24.6px;
}

.hamburger__line--02,
.hamburger__line--cross01,
.hamburger__line--cross02 {
	top: 31px;
}

.hamburger__line--03 {
	top: 37.4px;
}

.hamburger__line--cross01 {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.hamburger__line--cross02 {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger__line {
	-webkit-transition-duration: 0.6s;
	transition-duration: 0.6s;
	-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger__line-in {
	-webkit-transition-duration: 0.6s;
	transition-duration: 0.6s;
	-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger__line-in::before,
.hamburger__line-in::after {
	-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}

.hamburger__line-in--cross01,
.hamburger__line-in--cross02 {
	-webkit-transform: translateX(-33.3%);
	transform: translateX(-33.3%);
}

.hamburger__line-in--01 {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.hamburger__line-in--02 {
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.hamburger__line-in--02::before,
.hamburger__line-in--02::after {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

.hamburger__line-in--03 {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.hamburger__line-in--03::before,
.hamburger__line-in--03::after {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.hamburger__line-in--cross01 {
	-webkit-transition-delay: 0.0s;
	transition-delay: 0.0s;
}

.hamburger__line-in--cross02 {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

.hamburger__line-in--cross02::before,
.hamburger__line-in--cross02::after {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.hamburger.is-opened-navi .hamburger__line-in--01,
.hamburger.is-opened-navi .hamburger__line-in--02,
.hamburger.is-opened-navi .hamburger__line-in--03 {
	-webkit-transform: translateX(33.3%);
	transform: translateX(33.3%);
}

.hamburger.is-opened-navi .hamburger__line-in--cross01,
.hamburger.is-opened-navi .hamburger__line-in--cross02 {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.hamburger.is-opened-navi .hamburger__line-in--01 {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.hamburger.is-opened-navi .hamburger__line-in--02 {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

.hamburger.is-opened-navi .hamburger__line-in--03 {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.hamburger.is-opened-navi .hamburger__line-in--cross01 {
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.hamburger.is-opened-navi .hamburger__line-in--cross02 {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.hamburger:hover .hamburger__line-in::before,
.hamburger:hover .hamburger__line-in::after {
	-webkit-transform: translateX(200%);
	transform: translateX(200%);
}

.hamburger:hover .hamburger__line-in--01::before,
.hamburger:hover .hamburger__line-in--01::after,
.hamburger:hover .hamburger__line-in--02::before,
.hamburger:hover .hamburger__line-in--02::after,
.hamburger:hover .hamburger__line-in--03::before,
.hamburger:hover .hamburger__line-in--03::after {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
}

.hamburger:hover .hamburger__line-in--cross01::before,
.hamburger:hover .hamburger__line-in--cross01::after,
.hamburger:hover .hamburger__line-in--cross02::before,
.hamburger:hover .hamburger__line-in--cross02::after {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.hamburger.is-opened-navi:hover .hamburger__line-in--cross01::before,
.hamburger.is-opened-navi:hover .hamburger__line-in--cross01::after,
.hamburger.is-opened-navi:hover .hamburger__line-in--cross02::before,
.hamburger.is-opened-navi:hover .hamburger__line-in--cross02::after {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
}

.hamburger.is-opened-navi:hover .hamburger__line-in--01::before,
.hamburger.is-opened-navi:hover .hamburger__line-in--01::after,
.hamburger.is-opened-navi:hover .hamburger__line-in--02::before,
.hamburger.is-opened-navi:hover .hamburger__line-in--02::after,
.hamburger.is-opened-navi:hover .hamburger__line-in--03::before,
.hamburger.is-opened-navi:hover .hamburger__line-in--03::after {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

@media screen and (min-width: 55em) {
	.icon--keyboard {
		position: absolute;
		right: 0.55em;
		bottom: -30%;
		display: block;
		width: 54px;
		height: 46px;
		fill: var(--color-link);
	}
	.demos {
		display: flex;
		padding-right: 80px;
		justify-self: end;
	}
	.demo {
		display: block;
		width: 17px;
		height: 17px;
		margin: 0 4px;
		border-radius: 50%;
		background: var(--color-link);
	}
	a.demo--current {
		background: var(--color-link-hover);
	}
	.demo span {
		position: absolute;
		line-height: 1;
		right: 100%;
		display: none;
		margin: 0 1em 0 0;
	}
	.demo--current span {
		display: block;
	}
}

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

	.hamburger {
		position: fixed;
		transform: scale(0.75);
	}
	.codrops-header {
		flex-direction: column;
		align-items: center;
	}
	.codrops-header__title {
		font-weight: bold;
		padding-bottom: 0.25em;
		text-align: center;
	}
	.codrops-links {
		margin: 0;
	}
	
}

.header-mobile-menu-container .contact ul {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.2px;
}

/* Header End */


/* Banner Start */

.home-banner-main-container {
    height: 920px;
    background-color: #000000;
    margin: 140px 0 0 0;
    position: relative;
    overflow: hidden;
}

.home-banner-graphics {
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    width: 1200px;
    height: 790px;
    float: right;
    position: absolute;
    right: 10px;
    top: 105px;
    display: none;
}

.home-banner-graphics-main-container .image-container {
    opacity: 0;
}

.home-banner-graphics-main-container .image-container.active {
    opacity: 1;
}

.home-banner-graphics-main-container .image-container.active,
.home-banner-graphics-main-container .image-container {
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.home-banner-graphics-main-container img {
    width: 1200px;
}

.home-banner-container .content {
    padding: 0 0 0 20px;
    margin: 196px 0 0 0;
    width: 100%;
    max-width: 670px;
    position: relative;
    z-index: 1;
}

.home-banner-container .content p {
    margin: 0 0 20px 48px;
}

.home-banner-container .content h1 {
    line-height: 120px;
}

.main-title p {
    color: #fff;
    font-size: 18px;
    letter-spacing: 10.8px;
    text-transform: uppercase;
    text-shadow: 1px 1px 50px #00000029;
    font-weight: 500;
    margin:0 0 0 0;
    line-height: 28px;
}

.main-title h1,
.main-title h2 {
    letter-spacing: 3.6px;
    color: #fff;
    text-shadow: 1px 1px 50px #00000029;
    text-align: center;
    font-family: 'caslongradregular';
}

.main-title h1 span, .main-title h2 span {
    opacity: 0;
}

.main-title h1 {
    font-size: 120px;
}

.main-title h2 {
    font-size: 90px;
}

/* Banner End */


/* Home About Start */

.home-about-main-container {
    background: #000;
    padding: 38px 0 60px 0;
}

.home-about-main-container .container {
    max-width: 1190px;
}

.home-about-main-container .left-panel .content {
    padding: 0 0 0 65px;
}

.home-about-main-container .left-panel .content h2 {
    font-size: 48px;
    line-height: 64px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 38px 0;
}

a.primary-button:after {
    content: "\f30b";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    color: #fff;
    font-size: 20px;
    margin: 0 0 0 20px;
    float: right;
    position: relative;
    top: 1px;
}

a.primary-button {
    background: #45B5AA;
    border-radius: 80px;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0.54px;
    color: #fff;
    padding: 18px 52px;
    display: table;
    font-weight: 500;
}

.home-about-main-container .right-panel .content {
    padding: 0 0 0 6px;
}

.home-about-main-container .right-panel .content p {
    font-size: 25px;
    color: #fff;
    line-height: 50px;
}

.wave-one-main-container svg,
.wave-two-main-container svg,
.wave-three-main-container svg,
.wave-four-main-container svg {
    position: absolute;
}

.wave-one-main-container {
    height: 210px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.wave-four-main-container {
    height: 210px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.wave-two-main-container,
.wave-three-main-container {
    height: 210px;
    background: #E8F8FF;
    position: relative;
    overflow: hidden;
}

/* Home About End */


/* Latest Work Start */

.latest-works-main-container > .title {
    text-align:center;
    margin:0 0 75px 0;
}

.latest-works-main-container .main-title p,
.latest-works-main-container .main-title h2 {
    color:#000;
}

.latest-works-main-container .main-title p {
    font-weight: 700;
}

.latest-works-main-container {
    background: #fff;
    padding: 90px 0 50px 0;
    position: relative;
    overflow: hidden;
}

.latest-works-main-container .owl-item.active.center {
    position: relative;
    z-index: 1;
}

.latest-works-main-container .owl-item.active.center:after {
    content: "";
    background: rgba(255,255,255,0.85);
    width: 5000px;
    height: 100%;
    position: absolute;
    right: -5024px;
    top: 0;
    z-index: 11;
}

.latest-works-main-container .owl-item.active.center:before {
    content: "";
    background: rgba(255,255,255,0.85);
    width: 5000px;
    height: 100%;
    position: absolute;
    left: -5024px;
    top: 0;
    z-index: 11;
}

.latest-works-main-container .owl-item .title {
    opacity: 0;
    margin: 40px 0 0 0;
}

.latest-works-main-container .owl-item .title p {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.latest-works-main-container .owl-item.active.center .title {
    opacity: 1;
}

.latest-works-main-container .owl-nav,
.latest-works-main-container .owl-dots {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.latest-works-main-container .content .latest-works {
    padding: 0 0 29px 0;
}

.latest-works-main-container .owl-nav {
    margin: -44px auto 0 auto !important;
    z-index: 100;
}

.latest-works-main-container .owl-dots {
    text-align: right !important;
    padding: 0 121px 0 0;
    z-index: 99;
}

.latest-work-filter .owl-nav,
.latest-work-filter .owl-stage-outer {
    display: none !important;
}

.latest-work-filter .owl-dots {
    counter-reset: questionNumber;
    padding: 0;
}

.latest-work-filter .owl-dot {
    counter-increment: questionNumber;
    opacity: 0;
    position: absolute;
    right: 305px;
    top: -49px;
}

.latest-work-filter .owl-dot span {
    display: none !important;
}

.latest-work-filter .owl-dot.active {
    opacity: 1;
}

.latest-work-filter .owl-dot:before {
    content: counters(questionNumber, ".", decimal-leading-zero);
    font-size: 18px;
    color: #000000;
    letter-spacing: 0.54px;
    font-weight: 700;
}

.latest-work-filter .indicator-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.latest-work-filter .end-slide-number-indicator {
    position: absolute;
    right: 92px;
    font-size: 18px;
    color: #000000;
    letter-spacing: 0.54px;
    font-weight: 700;
    top: -49px;
}

.latest-works-main-container .owl-dots:after {
    content: "";
    background: #fff;
    width: 5000px;
    height: 40px;
    position: absolute;
    right: -5000px;
    top: 0;
    z-index: -1;
    margin: 0 50% 0 0;
}

.latest-works-main-container .owl-nav button {
    display: inline-block !important;
    width: 64px;
    height: 64px;
}

.latest-works-main-container .owl-nav button:hover,
.latest-works-main-container .owl-nav button:focus {
    background-color: #fff !important;
    outline: none;
}

.latest-works-main-container .owl-nav button span {
    font-size: 0;
}

.latest-works-main-container .owl-nav .owl-next {
    float: right;
    margin: -14px 0 0 0 !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: 1;
    border-radius: 50% !important;
    position: relative;
}

.latest-works-main-container .owl-nav .owl-next::before {
    content: "";
    border: 2px solid black;
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-42deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.latest-works-main-container .owl-nav .owl-next span::before {
    font-size: 22px;
    content: "\f178";
    color: #000;
    font-weight: 300;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
    line-height: 66px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.latest-works-main-container .owl-nav .owl-next:hover span::before {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.latest-works-main-container .owl-nav .owl-next::after {
    position: absolute !important;
    content: "";
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    right: 7px;
    top: 7px;
    background-color: #000;
    visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 1\9;
    visibility: visible\9;
    display: none\9;
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.latest-works-main-container .owl-nav .owl-next:hover:after {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  display: block\9;
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.latest-works-main-container .owl-nav .owl-prev {
    display: none !important;
}

.latest-works-main-container .owl-nav:hover .owl-prev,
.latest-works-main-container .owl-nav:hover .owl-next,
.latest-works-main-container .owl-nav .owl-next,
.latest-works-main-container .owl-nav .owl-prev {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.latest-works-main-container .owl-dots button {
    pointer-events: none;
}

.latest-works-main-container .owl-dots button span {
    outline: none;
    background: #D9D9D9 !important;
    margin: 0 !important;
    height: 1px !important;
    width: 14px !important;
    pointer-events: none;
}

.latest-works-main-container .owl-dots button.active span {
    background: #45b5aa !important;
    width: 20px !important;
    height: 2px !important;
}

.graphics-one-main-container {
    background: #fff;
    position: relative;
    z-index: 1;
}

.graphics-one-main-container .graphics-container {
    position: relative;
}

.graphics-one-main-container .graphic-one {
    width: 100%;
    max-width: 80px;
    position: absolute;
    right: 218px;
    top: 60px;
}

.graphics-one-main-container .graphic-two {
    position: absolute;
    right: 40px;
    width: 100%;
    max-width: 123px;
    top: 158px;
}

.hidden-graphic {
    opacity: 0;
}

/* Latest Work End */


/* Services Start */

.services-main-container {
    background: #EBF8FE;
    padding: 122px 0 40px 0;
    background-image: linear-gradient(#e8f8ff, #ffffff);
}

.services-main-container .intro {
    position: relative;
}

.services-main-container .graphic-one {
    width: 100%;
    max-width: 232px;
    position: absolute;
    left: 0;
    top: 20px;
}

.services-main-container .graphic-two {
    width: 100%;
    max-width: 78px;
    position: absolute;
    right: 222px;
    bottom: -19px;
}

.services-main-container .title p {
    font-weight: 700;
}

.services-main-container .title p,
.services-main-container .title h2 {
    text-align: center;
    color: #000000;
}

.services-main-container .intro p {
    color: #000000;
}

.services-main-container .intro .content {
    width: 100%;
    max-width: 514px;
    margin: 0 auto;
    font-weight: 500;
    padding: 40px 0 0 0;
}

.services-main-container .intro .content p {
    font-size: 25px;
    line-height: 50px;
}

.services-main-container .content-container {
    width: 100%;
    max-width: 1000px;
    margin: 70px auto 0 auto;
}

.services-main-container .content-container ul li {
	width: 33.33333%;
    float: left;
    padding: 0 20px;
    text-align: center;
	margin: 0 0 20px 0;
}

.services-main-container .content-container ul li div.column-container {
    cursor: text;
}

.services-main-container .content-container ul li div.column-container a {
    cursor: default;
}

.services-main-container .content-container ul li div > a {
    display: block;
	position: relative;
}

.services-main-container .content-container ul li h3 {
    font-size: 18px;
    line-height: 25px;
    margin: 0 0 8px 0;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    font-weight: 700;
}

.services-main-container .content-container ul li h3 a {
	color: #212A3D;
	pointer-events: none;
}

.services-main-container .content-container ul li p {
	font-size: 16px;
    line-height: 28px;
}

.services-main-container .content-container ul li i {
    font-style: normal;
    height: 120px;
    display: block;
    text-align: center;
    margin: 0 auto 8px auto;
}

.services-main-container .content-container ul li .column-container:hover div > a img {
	opacity: 1;
}

.services-main-container .content-container ul li .column-container:hover div > a i {
	opacity: 0;
}

.services-main-container .content-container ul li i.conceptual-branding-icon {
    background-image: url(/wp-content/themes/c4-concepts/theme/images/conceptual-branding.gif);
    background-size: 150px auto;
    background-repeat: no-repeat;
    background-position: center 0;
    position: relative;
    top: 0;
}

.services-main-container .content-container ul li img.conceptual-branding-icon {
    height: 120px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
	opacity: 0;
}

.services-main-container .content-container ul li.animate-scrolling img {
	opacity: 1 !important;
}

.services-main-container .content-container ul li.animate-scrolling i {
	opacity: 0;
}

.services-main-container .content-container ul li i.graphic-design-icon {
    background-image: url(/wp-content/themes/c4-concepts/theme/images/graphic-design.gif);
    background-size: 150px auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: center 0;
}

.services-main-container .content-container ul li img.graphic-design-icon {
	height: 120px;
    position: absolute;
    top: 0px;
    left: -1px;
    right: 0px;
    margin: 0 auto;
	opacity: 0;
}

.services-main-container .content-container ul li i.web-app-design-icon {
    background-image: url(/wp-content/themes/c4-concepts/theme/images/web-and-app.gif);
    background-size: 150px auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: center 0;
}

.services-main-container .content-container ul li img.web-app-design-icon {
    height: 120px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
}

.services-main-container .content-container ul li i.marketing-seo-icon {
    background-image: url(/wp-content/themes/c4-concepts/theme/images/marketing-seo.gif);
    background-size: 150px auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: center 0;
}

.services-main-container .content-container ul li img.marketing-seo-icon {
	height: 120px;
    position: absolute;
    top: 0px;
    left: -1px;
    right: 0;
    margin: 0 auto;
    opacity: 0;
}

.services-main-container .content-container ul li i.creative-illustration-icon {
    background-image: url(/wp-content/themes/c4-concepts/theme/images/creative-illustration.gif);
    background-size: 150px auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: center 0;
}

.services-main-container .content-container ul li img.creative-illustration-icon {
    height: 120px;
    position: absolute;
    top: 0px;
    left: 1px;
    right: 0;
    margin: 0 auto;
	opacity: 0;
}

.services-main-container .content-container ul li i.print-solutions-icon {
    background-image: url(/wp-content/themes/c4-concepts/theme/images/print-solutions.gif);
    background-size: 150px auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: center 0;
}

.services-main-container .content-container ul li img.print-solutions-icon {
    height: 120px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
}

.clear {
	clear: both;
}

.services-main-container .content-container .default-button {
    text-align: center;
    margin: 34px auto;
}

/* Services End */


/* CTA One Start */

.cta-one-main-container {
    background: #fff;
    padding: 40px 0 100px 0;
}

.cta-one-main-container .container {
    max-width: 1000px;
}

.cta-one-main-container .left-panel .content {
    padding: 112px 40px 0 0;
}

.cta-one-main-container .left-panel .content p {
    font-size: 25px;
    line-height: 50px;
    font-weight: 500;
}

.cta-one-main-container .left-panel .content a {
    margin: 32px 0 0 0;
}

.cta-one-main-container .right-panel .content img  {
    width: 100%;
    max-width: 397px;
    margin: 0 0 0 24px;  
}

.cta-one-main-container .graphics-container {
    position: relative;
}

.cta-one-main-container .graphics-container .graphic-one {
     width: 100%;
    max-width: 246px;
    position: absolute;
    top: -40px;
    left: -86px;
}

/* CTA One End */


/* Testimonials Start */

.testimonials-main-container {
    background: #fff;
    padding:126px 0 30px 0;
}

.testimonials-main-container .main-title p {
    text-align: center;
    font-weight: 700;
    color: #000;
}

.testimonials-main-container .main-title h2 {
    color:#000;
}

.testimonials-container {
    margin: 60px 0 0 0;
}

.testimonials-container .left-panel,
.testimonials-container .right-panel {
    width: 50%;
    float: left;
}

.testimonials-container .left-panel {
    position: relative;
    z-index: 1;
}

.testimonials-container .left-panel .image-container {
    height: 624px;
    width: 605px;
    background-size: cover;
    background-position: center;
    margin: 0 0 0 0;
    position: relative;
}

.testimonials-container .left-panel .image-container img {
    width: 370px;
    height: 370px;
    border-radius: 50%;
    box-shadow: 6px 6px 12px #00000029;
    margin: 76px auto 0 auto;
    display: block;
}

.testimonials-list-image-container ul li {
    width: 420px;
    padding: 0 25px;
}

.testimonials-list-image-container {
    float: right;
    width: 420px;
    pointer-events: none;
}

.hidden.manual-validation p {
    color: #dc3232;
    font-size: 12px;
    font-weight: 300;
    margin: -40px 0 0 0;
    display: block;
}

.testimonials-list-image-container .owl-nav,
.testimonials-list-image-container .owl-dots {
    display: none !important;
}

.testimonials-container .right-panel .content {
    border-radius: 40px;
    background: #E8F8FF;
    box-shadow: 0px 3px 6px #00000029;
    padding: 94px 150px 70px 228px;
    width: 765px;
    margin: 14px 0 0 -200px;
}

.testimonials-container .right-panel {
    position: relative
;}

.testimonials-container .right-panel .content ul {
    width: 100%;
    max-width: 380px;
}

.testimonials-container .right-panel .content ul.testimonials-list .owl-stage-outer {
    pointer-events: none;
}

.testimonials-container .right-panel .content ul li p {
    font-size: 25px;
    line-height: 50px;
    font-weight: 500;
    margin: 0 0 25px 0;
}

.testimonials-container .right-panel .content ul .image-container img {
    width: 370px;
    height: 370px;
    border-radius: 50%;
    box-shadow: 6px 6px 12px #00000029;
    float: right;
    margin: 76px 25px 0 0;
    position: absolute;
    top: 0;
    left: -42px;
}

.testimonials-container .right-panel .content ul li span {
    font-size: 15px;
    display: block;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.testimonials-container .right-panel .content ul li .author {
    margin: 78px 0 0 0;
}

.testimonials-container .right-panel .content ul li span:before {
    content: "";
    display: inline-block;
    width: 64px;
    height: 50px;
    background-image: url(/wp-content/uploads/2021/03/c4-quotemarks.png);
    background-size: cover;
    vertical-align: middle;
    margin: 0 30px 0 0;
    position: relative;
    top: -10px;
}

.testimonials-container .right-panel .graphic-two {
    position: absolute;
    right: 140px;
    width: 100%;
    max-width: 108px;
    top: -5px;
}

.testimonials-list .owl-item.active.center {
    position: relative;
    z-index: 1;
}

.testimonials-list .owl-item.active.center:after {
    content: "";
    background: rgba(255,255,255,0.85);
    width: 5000px;
    height: 100%;
    position: absolute;
    right: -5024px;
    top: 0;
    z-index: 11;
}

.testimonials-list .owl-item.active.center:before {
    content: "";
    background: rgba(255,255,255,0.85);
    width: 5000px;
    height: 100%;
    position: absolute;
    left: -5024px;
    top: 0;
    z-index: 11;
}

.testimonials-list .owl-item .title {
    opacity: 0;
    margin: 40px 0 0 0;
}

.testimonials-list .owl-item .title p {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.testimonials-list .owl-item.active.center .title {
    opacity: 1;
}

.testimonials-list .owl-nav,
.testimonials-list .owl-dots {
    margin: 0 auto;
    position: relative;
}

.testimonials-list .owl-nav {
    margin: 34px -98px 0 0 !important;
    z-index: 100;
}

.testimonials-list .owl-dots {
    text-align: right !important;
    padding: 0 25px 0 0;
    z-index: 99;
    margin: 0px 0 0 0;
}

.testimonials-list .owl-nav button {
    display: inline-block !important;
    width: 64px;
    height: 64px;
}

.testimonials-list .owl-nav button:hover,
.testimonials-list .owl-nav button:focus {
    background-color: transparent !important;
    outline: none;
}

.testimonials-list .owl-nav button span {
    font-size: 0;
}

.testimonials-indicator-main-container {
    position: absolute;
    right: 120px;
    margin: 28px 0 0 0;
}

.testimonials-indicator-main-container .latest-work-filter .owl-dot {
    right: 252px;
    pointer-events: none;
    cursor: text;
}

.testimonials-list .owl-nav .owl-next {
    float: right;
    margin: -14px 0 0 0 !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: 1;
    border-radius: 50% !important;
    position: relative;
}

.testimonials-list .owl-nav .owl-next::before {
    content: "";
    border: 2px solid black;
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-42deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.testimonials-list .owl-nav .owl-next span::before {
    font-size: 22px;
    content: "\f178";
    color: #000;
    font-weight: 300;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
    line-height: 66px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonials-list .owl-nav .owl-next:hover span::before {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.testimonials-list .owl-nav .owl-next::after {
    position: absolute !important;
    content: "";
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    right: 7px;
    top: 7px;
    background-color: #000;
    visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 1\9;
    visibility: visible\9;
    display: none\9;
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.testimonials-list .owl-nav .owl-next:hover:after {
    visibility: visible;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    display: block\9;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.testimonials-list .owl-nav .owl-prev {
    display: none !important;
}

.testimonials-list .owl-nav:hover .owl-prev,
.testimonials-list .owl-nav:hover .owl-next,
.testimonials-list .owl-nav .owl-next,
.testimonials-list .owl-nav .owl-prev {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.testimonials-list .owl-dots button {
    pointer-events: none;
}

.testimonials-list .owl-dots button span {
    outline: none;
    background: #D9D9D9 !important;
    margin: 0 !important;
    height: 1px !important;
    width: 14px !important;
    pointer-events: none;
}

.testimonials-list .owl-dots button.active span {
    background: #45b5aa !important;
    width: 20px !important;
    height: 2px !important;
}

/* Testimonials End */


/* Clients Partner Start */

.clients-logo-main-container .content-container ul {
	margin: 0 -15px;
}

.clients-logo-main-container .content-container ul li {
	width: 16.66666%;
    float: left;
    padding: 0 15px;
	margin: 0 0 40px 0;
}

.clients-logo-main-container .content-container ul li img {
	width: 100%;
    height: auto;
    filter: grayscale(100%);
}

.clients-logo-main-container {
    padding:0 0 340px 0;
	background: #fff;
}

.clients-logo-main-container .content-container {
	width: 100%;
    margin: 0 auto;
	padding: 20px 0 0 0;
}

/* Clients Partner End */


/* Contact Start */

.contact-main-container {
    background: #e8f8ff;
}

.contact-main-container .contact-container img {
    width: 100%;
    max-width: 676px;
    margin: -450px auto 0 auto;
    display: block;
    position: relative;
}

.contact-main-container .contact-container .title p {
    color: #000;
    text-align: center;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.contact-main-container .contact-container .title h2 {
    color: #000;
}

.contact-main-container .contact-container .title {
    margin: 108px 0 60px 0;
}


/* Form Start */

.contact-form-container .cf-col-two {
    float: left;
    width: 50%;
    padding: 0 16px 20px 0;
}

.contact-form-container .cf-col-one {
    padding: 0 15px 12px 0;
    float: left;
    width: 100%;
	position: relative;
	margin: 0 0 28px 0;
}

.contact-form-container .cf-col-one.surname {
    margin-top: -60px;
}

.contact-form-container .cf-col-one.show-more-container {
    margin: 0 0 0 0;    
}

.contact-form-container .cf-col-one .submit-button {
	position: relative;
    width: 100%;
    max-width: 260px;
    margin: auto;
}

.contact-form-container fieldset {
	text-align: center;
}

.cf7mls_next.action-button, .cf7mls_back.action-button {
    position: relative;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0.56px;
    background: #F48A3A;
    background: linear-gradient(to right, #377CA8 50%, #F48A3A 50%);
    padding: 18px 174px 18px 30px;
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 6px 0 6px;
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .2s ease-out;
    outline: none;
    border: none;
}

.cf7mls_next.action-button:hover, .cf7mls_back.action-button:hover {
	color: #fff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 0;
    background-position: left bottom;
}

.cf7mls_next.action-button:after {
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    content: "\f178" !important;
    color: #fff;
    font-weight: 900;
    margin: 0 0 0 28px;
    position: absolute;
    right: 25px;
    top: 18px;
    width: 18px !important;
}

.wpcf7 form.init .wpcf7-response-output {
    display: none;
    padding: 10px 20px;
    border-width: 1px;
    text-align: left;
}

button.cf7mls_btn:not(.disabled):before {
    border: 4px solid #212A3D;
    border-radius: 50%;
    border-top: 4px solid #fff;
    width: 32px;
    height: 32px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
    background-image: none;
    background: transparent;
    position: absolute;
    top: 18px;
    margin: 0 auto;
    right: -48px;
    display: block;
    /* left: 0; */
    z-index: 3;
    content: "";
}

.contact-form-container > .cf7mls_back.action-button {
	display: none;
}

.contact-form-container .cf-col-one.hidden {
	display: none;
}

.contact-form-container .cf-col-one .form-control {
	border-radius: 0;
}

.contact-form-container .cf-col-one .wpcf7-textarea {
    height: 180px;
}

.contact-form-container .cf-col-one .wpcf7-textarea:focus,
.contact-form-container .cf-col-one .wpcf7-textarea:active {
	border:1px solid #707070;
}

.contact-form-container .cf-col-one .wpcf7-submit {
    background: #45B5AA;
    border-radius: 80px;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0.54px;
    color: #fff;
    padding: 18px 52px;
    display: table;
    cursor: pointer;
    margin: 30px auto 40px auto;
    position: relative;
    text-transform: uppercase;
    width: 100%;
    max-width: 260px;
    border: 0;
    font-weight: 500;
}

.contact-form-container .cf-col-one .wpcf7-submit.active {
    color: #f48a3a !important;
}

.contact-form-container .cf-col-one .wpcf7-submit:hover {
	color: #fff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 0;
	background-position: left bottom;
}

.contact-form-container .cf-col-one .wpcf7-submit:active,
.contact-form-container .cf-col-one .wpcf7-submit:focus{
    outline: none;
    box-shadow: none !important;
	color: #fff;
    background-color: #377CA8;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border:0;
}

.contact-form-container form div span input[type="text"],
.contact-form-container form div span input[type="email"] {
    border-bottom: 1px solid #707070;
    border-top: none;
    border-left: none;
    border-right: none;
    color: #000;
    font-size: 18px;
    padding: 12px 0 4px 0;
    background-color: transparent;
    border-radius: 0;
    width: 100%;
    height: auto;
    font-weight: 500;
}

.contact-form-container form div span input[type="text"]:-internal-autofill-selected,
.contact-form-container form div span input[type="email"]:-internal-autofill-selected,
.contact-form-container form div span input[type="text"]:-webkit-autofill,
.contact-form-container form div span input[type="email"]:-webkit-autofill{
    background-color: #f3f7f9 !important;
}

.contact-form-container form .show-more .cont {
    width: 172px;
}

.contact-form-container form .show-more .cont > p {
    display: inline-block;
    margin: 0;
    color: #fff;
}

.contact-form-container form .more-fields-container {
	display: none;
}

.contact-form-container form .show-more p {
	display: none;
}

.contact-form-container form .show-more,
.main-button {
    background: #45B5AA;
    border-radius: 80px;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0.54px;
    color: #fff;
    padding: 18px 44px;
    display: table;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.contact-form-container form .show-more {
    cursor: pointer;
    margin: 30px auto 40px auto;
}

.contact-form-container form .show-more:hover,
.main-button:hover {
    padding: 18px 67px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.main-button p {
    display: inline-block;
    margin: 0;
    color: #fff;
    font-size: 16px !important;
    line-height: inherit !important;
}

.main-button .cont {
    width: 172px;
}

#button-arrow {
    display: inline-block;
    margin: 0 0 0 0;
    position: relative;
    right: 0;
    top: 7px;
    float: right;
}

#button-arrow .line-arrow {
    width: 20px;
    height: 3px;
    background: #fff;
    display: inline-block;
    float: left;
    position: relative;
    top: 8px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    left: 0;
}

#button-arrow .main-arrow {
    width: 0px;
    height: 0px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fff;
    display: inline-block;
    float: left;
    position: relative;
    top: 4px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    left: 0;
}

.contact-form-container form .show-more:hover #button-arrow .main-arrow,
.main-button:hover #button-arrow .main-arrow {
    left: 18px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.contact-form-container form .show-more:hover #button-arrow .line-arrow,
.main-button:hover #button-arrow .line-arrow {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 38px;
    left: 18px;
}

.contact-form-container form div span textarea {
    border: 1px solid #707070;
    color: #212A3D;
    font-size: 18px;
    padding: 32px 16px 20px 16px;
    margin: -10px 0 0 0;
    background-color: transparent;
    border-radius: 0;
    width: 100%;
    height: auto;
    font-weight: 500;
}

.contact-form-container form div span textarea:focus {
    background: transparent;
    border-bottom: 1px solid #377CA8;
}

.contact-form-container form div span input[type="text"]:focus,
.contact-form-container form div span input[type="email"]:focus,
.contact-form-container form div span textarea:focus,
.contact-form-container form div span input[type="text"]:active,
.contact-form-container form div span input[type="email"]:active,
.contact-form-container form div span textarea:active,
.contact-form-container div span select:focus,
.contact-form-container div span select:active{
	outline: none;
	box-shadow: none;
}

span.wpcf7-not-valid-tip {
	font-size: 12px;
    font-weight: 300;
}

.contact-main-container div.wpcf7 .ajax-loader {	
    background: #377CA8;
    width: 260px;
    height: 70px;
    margin: 0 auto;
    position: absolute;
    left: 0px;
    right: 0;
    top: 0px;
    z-index: 2;
    border-radius: 80px;
    opacity: 1;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #377ca8;
    border-width: 1px;
    padding: 14px 20px;
    color: #000;
    margin: 10px 0 22px 0;
}
	
div.wpcf7 .ajax-loader:before {
    border: 4px solid #ffffff;
    border-radius: 50%;
    border-top: 4px solid #377ca8;
    width: 32px;
    height: 32px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
    background-image: none;
    background: transparent;
    position: absolute;
    top: 18px;
    margin: 0 auto;
    right: 0;
    display: block;
    left: 0;
    z-index: 3;
    content: "";
    transform-origin: unset !Important;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing,
div.wpcf7-response-output{
    font-size: 14px;
    color: #212A3D;
    border: none;
    padding: 14px 16px;
    margin: -14px 0 0 0;
    text-align: center;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing{
    border: none;
}

/* GF spinner */
.gform_ajax_spinner {
	border: 4px solid #ffffff;
    border-radius: 50%;
    border-top: 4px solid #212A3D;
    width: 32px;
    height: 32px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
    background-image: none !important;
    background: transparent !important;
    position: relative;
    top: 0px;
    right: 50px;	
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.FlowupLabels .fl_label {
    top: 51px;
    left: 0;
    position: absolute;
    z-index: 3;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}
 
.FlowupLabels .fl_wrap.focused .fl_label,
.FlowupLabels .fl_wrap.populated .fl_label {
	top: 40px !important;
    font-size: 16px;
}

.fl_wrap {
	position:relative;
}

/* Theme Style */

.contact-main-container .wpcf7-mail-sent-ok {
	display: none !important;
}

.contact-main-container .contact-form-container > div {
    width: 100%;
    max-width: 622px;
    margin: 0 auto;
    position: relative;
    left: 9px;
}

.contact-form-container .cf-col-one em {
    font-style: normal;
    font-size: 25px;
    line-height: 36px;
    font-weight: 500;
    text-align: center;
    display: block;
    margin: 0 0 15px 0;
    color: #000;
}

.contact-form-container .cf-col-one .left-panel,
.contact-form-container .cf-col-one .right-panel {
	width: 50%;
	float: left;
}

.contact-form-container .cf-col-one .left-panel {
	padding-right: 8px;
}

.contact-form-container .cf-col-one .right-panel {
	padding-left: 8px;
}

.contact-form-container .cf-col-one .left-panel .fl_label,
.contact-form-container .cf-col-one .right-panel .fl_label {
	top:-1px !important;
}

.contact-form-container .cf-col-one .left-panel.focused .fl_label,
.contact-form-container .cf-col-one .right-panel.populated .fl_label,
.contact-form-container .cf-col-one .right-panel.focused .fl_label,
.contact-form-container .cf-col-one .left-panel.populated .fl_label{
    top: -11px !important;
}

.contact-form-container .cf-col-one .right-panel .fl_label {
	left:8px;
}

.contact-form-container .cf-col-one.textarea .fl_label {
	left:16px;
}

/*
.contact-form-container form .more-fields-container .textarea.focused label,
.contact-form-container form .more-fields-container .textarea.populated label{
    opacity: 0;
}
*/

.contact-form-container .cf-col-one span.arrow {
	display: none;
}

.contact-form-container .cf-col-one span.arrow:before {
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    content: "\f178";
    color: #fff;
    font-weight: 900;
    position: absolute;
    top: 25px;
    margin: 0 0 0 28px;
    right: 182px;
}

.contact-form-container .cf-col-one span.arrow.active:before {
	color: #f48a3a;
}

.cf-checkbox-container label,
.cf-checkbox-container-one label {
    cursor: pointer;
    position: absolute;
    width: 32px;
    height: 32px;
    top: 0;
    left: 0;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 50%;
}

.cf-checkbox-container label:after,
.cf-checkbox-container-one label:after {
	content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #e2e2e2;
    top: 8px;
    left: 8px;
    border-top: none;
    border-right: none;
    transform: none;
    border-radius: 50%;
}

.cf-checkbox-container p label:hover::after,
.cf-checkbox-container-one p label:hover::after {
	opacity: 0.5;
}

.cf-checkbox-container input[type=checkbox]:checked + p label:after,
.cf-checkbox-container-one input[type=checkbox]:checked + p label:after {
    opacity: 1;
    content: '';
    width: 14px;
    height: 14px;
    background: #000;
    border-top: none;
    border-right: none;
    transform: none;
    border: none;
    border-radius: 50%;
}

#cf-checkbox-true,
#cf-checkbox-true-one {
	font-size:0;
}

#cf-checkbox,
#cf-checkbox-one {
    margin-left: 10px;
    margin: -15px 0 0 10px;
    display: block;
}

.cf-checkbox-container p,
.cf-checkbox-container-one p {
	margin: -20px 0 8px 42px !important;
}

.contact-form-container div form .cf-col-one.radio-buttons > div > p {
    color: #9d9fa2;
    font-size: 13px;
    font-weight: 300;
}

.contact-form-container #wpcf7-f492-o1 form .cf-col-one.radio-buttons > div > p {
    margin: 5px 0 0 0;
}

.cf-checkbox-container-one{
    margin: 0 0 0 0;
    position: relative;
}

.cf-checkbox-container-one label {
    top: -10px;
}

.cf-checkbox-container-one p {
    color: #000;
    font-size: 16px !important;
    font-weight: 400 !important;
}

/* Form End */

.contact-main-container .bottom-text {
	font-size: 16px;
    color: #212A3D;
    line-height: 34px;
    font-weight: 300;
    margin: -32px 0 0 0;
    display: block;
    float: left;
    width: 100%;
    text-align: center;
	display: none;
}

/* Contact End */


/* Footer Start */

.footer-main-container {
    padding: 188px 0 35px 0;
}

.footer-main-container .newsletter {
    width: 100%;
    max-width: 606px;
    margin: 0 auto;
    position: relative;
    padding: 0 0 0 0;
}

.footer-main-container .newsletter h2 {
    text-align: center;
    color: #fff;
    font-size: 32px;
    line-height: 36px;
    margin: 0 0 44px 0;
    font-weight: 400;
}

.footer-main-container .newsletter form input[type="text"] {
    font-size: 18px;
    border-radius: 0;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #aeaeae;
    color: #fff;
    font-weight: 300;
    height: auto;
    padding: 2px 0 18px 0;
	box-shadow: none;
}

.footer-main-container .newsletter form input[type="text"]::-webkit-input-placeholder {
	color: #8E939E;
	font-weight: 400;
}

.footer-main-container .newsletter form input[type="text"]:-ms-input-placeholder {
	color: #8E939E;
	font-weight: 400;
}

.footer-main-container .newsletter form input[type="text"]::placeholder {
	color: #8E939E;
	font-weight: 400;
}

.footer-main-container .newsletter form input[type="text"]:focus,
.footer-main-container .newsletter form input[type="text"]:active {
	outline: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #aeaeae;	
}

.footer-main-container .newsletter form span.arrow {
	display: inline-block;
	float: right;
	margin: -47px 0 0 0;
	position: absolute;
    right: 0;
    top: 5px;
	display: none;
}

.footer-main-container .newsletter form span.arrow:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    content: "\f178";
    color: #fff;
    font-weight: 900;
    margin: 0 0 0 28px;
    right: 0;
    top: 0;
}

.footer-main-container .newsletter form input[type="submit"] {
    background: transparent;
    width: 28px;
    height: 15px;
    position: absolute;
    border: none;
    outline: none;
    font-size: 0;
    z-index: 1;
    right: -10px;
    bottom: -20px;
    padding: 25px 23px;
}

.footer-main-container div.wpcf7-validation-errors, 
.footer-main-container div.wpcf7-acceptance-missing, 
.footer-main-container div.wpcf7-response-output {
	color: #fff;
    margin: 20px 0 0 0;
    border: none;
    text-align: center;
}

.footer-main-container div.wpcf7-response-output {
    color: #fff !important;
    border: 1px solid #377ca8 !important;
}

.footer-main-container .contact {
    width: 100%;
    max-width: 935px;
    margin: 112px auto 30px auto;
    position: relative;
}

.footer-main-container .contact ul li {
	width: 33.33333%;
	float: left;
	padding: 0 10px;
}

.footer-main-container .contact ul li:nth-child(3) {
	padding: 0 0 0 122px;
}

.footer-main-container .contact ul li a,
.footer-main-container .contact ul li p{
	color: #fff;
	font-size: 19px;
	line-height: 28px;
}

.footer-main-container .contact ul li a:hover,
.footer-main-container .contact ul li.address a:hover p{
	opacity: 0.8;
}

.footer-main-container .contact ul li a:after {
	content: "";
    width: 1px;
    height: 18px;
    background-color: #fff;
    display: inline-block;
    margin: 0 16px 0 6px;
    position: relative;
    top: 5px;
    float: left;
}

.footer-main-container .contact ul li.address a:after,
.mobile-menu-container .contact ul li.address a:after{
	display: none;	
}

.footer-main-container .contact ul li a:before,
.footer-main-container .contact ul li p:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
}

.footer-main-container .contact ul li.phone a:before {
    font-size: 17px;
    content: '\f095';
    color: #fff;
    font-weight: 900;
    margin: 0 9px 0 0;
    position: relative;
    top: -1px;
    float: left;
}

.footer-main-container .contact ul li.address p:before {
    font-size: 18px;
    content: "\f3c5";
    color: #fff;
    font-weight: 900;
    margin: 0 28px 0 -39px;
    position: relative;
    top: -2px;
    float: left;
}

.footer-main-container .contact ul li.email a:before {
	font-size: 18px;
    content: "\f0e0";
    color: #fff;
    font-weight: 900;
    margin: 0 11px 0 0;
    position: relative;
    top: 0px;
    float: left;
}

.footer-main-container .contact ul li p:after {
    content: "";
    width: 1px;
    height: 18px;
    background-color: #fff;
    display: inline-block;
    float: left;
    margin: 0 16px 0 6px;
    position: absolute;
    top: 4px;
    left: 20px;
}

.footer-main-container .contact ul li p {
	position: relative;
    padding: 0 0 0 36px;	
}

.footer-main-container .copyright p {
	color: #C6C8CE;
    font-size: 16px;
    line-height: 34px;
    font-weight: 300;
    text-align: center;
}

.footer-main-container .copyright p em {
	font-style: normal;
    border-right: 1px solid #8E939E;
    height: 18px;
    margin: 0 10px 0 10px;
    display: inline-block;
    position: relative;
    top: 3px;
}

.footer-main-container .copyright p a {
    color: #C6C8CE;
    position: relative;
    top: -1px;
}

.footer-main-container .copyright p a:hover {
	color: #fff;
}

.footer-main-container .graphic-container {
    position: absolute;
    bottom: -14px;
    right: -59px;
	display: none;
}

.footer-main-container .contact-form-container form div span input[type="email"] {
    border-bottom: 1px solid #aeaeae;
    color: #fff;
	background: transparent;
}

.footer-main-container .newsletter form .submit-button-container {
    width: 62px;
    float: right;
}

.footer-main-container .newsletter form .submit-button-container #button-arrow {
    top: -37px;
    right: 0;
}

.footer-main-container .contact-form-container .cf-col-one {
    padding: 0 0 0 0;
    float: left;
    width: 100%;
    position: relative;
    margin: 0 0 0 0;
}

.footer-main-container .FlowupLabels .fl_wrap.focused .fl_label,
.footer-main-container .FlowupLabels .fl_wrap.populated .fl_label {
    color: #fff;
    top: -10px !important;
}

.footer-main-container .FlowupLabels .fl_label {
    color: #fff;
    top: 0px !important;
    font-size: 16px;
    font-weight: 300;
}

.footer-main-container .contact-form-container .cf-col-one .wpcf7-submit:active, 
.footer-main-container .contact-form-container .cf-col-one .wpcf7-submit:focus {
	background: transparent;
}

.footer-main-container div.wpcf7 .ajax-loader {
	background-image: none;
    position: absolute;
    right: -62px;
    top: -62px;
    opacity: 1;
    background-color: transparent;
}

.footer-main-container div.wpcf7 .ajax-loader:before {
    border: 4px solid #45b5aa;
    border-radius: 50%;
    border-top: 4px solid transparent;
}

.footer-main-container  span.wpcf7-not-valid-tip {
	position: absolute;
	width: 200px;
    color: #fff;
}

.footer-main-container .graphics-container {
    position: relative;
}

.footer-main-container .graphics-container .graphic-one {
    width: 100%;
    max-width: 53px;
    position: absolute;
    top: 960px;
    right: 50%;
    left: 50%;
    margin: 0 0 0 192px;
}

.footer-main-container .graphics-container .graphic-two {
    width: 100%;
    max-width: 323px;
    position: absolute;
    top: 220px;
    right: 0;
}

.footer.header-social-main-container {
    margin: 0 0 40px 0;
    position: relative;
}

.footer.header-social-main-container ul {
    position: relative;
    text-align: center;
    top: 0;
}

.footer.header-social-main-container ul li {
    margin: 0 8px;
    display: inline-block;
}

/* Footer End */


/* Pop up privacy Policy */

.popup-privacy-policy-main-container {
	position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0,0.9);
}

.popup-privacy-policy-main-container .content-container {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 100%;
    max-width: 860px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 35px 40px 50px 40px;
	height: auto;
    max-height: 86vh;
    overflow-y: auto;
}

.popup-privacy-policy-main-container .content-container h2 {
    font-weight: 500;
    display: block;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    margin: 0 0 30px 0;
}

.popup-privacy-policy-main-container .content-container p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 16px 0;
}

.popup-privacy-policy-main-container .content-container h5 {
    font-size: 24px;
    line-height: 28px;
    margin: 24px 0 16px 0;
}

.popup-privacy-policy-main-container .content-container ol.start {
    counter-reset: mycounter;
    padding: 0;
	font-size: 16px;
    line-height: 30px;
}

.popup-privacy-policy-main-container .content-container ol.start li,
.popup-privacy-policy-main-container .content-container ol.continue li {
    list-style: none;
    padding: 0 0 0 45px;
}

.popup-privacy-policy-main-container .content-container ol.start li:before, 
.popup-privacy-policy-main-container .content-container ol.continue li:before {
    content: counter(mycounter) ". ";
    counter-increment: mycounter;
    margin: 0 0 0 -45px;
    width: 45px;
    display: inline-block;
}

.popup-privacy-policy-main-container .content-container ol.continue {
    padding: 0;
	font-size: 16px;
    line-height: 30px;
}

.popup-privacy-policy-main-container .content-container a {
    font-weight: 700;
}

.popup-privacy-policy-main-container .close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 1;
    cursor: pointer;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.popup-privacy-policy-main-container .close:hover {
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.popup-privacy-policy-main-container .close:before, .popup-privacy-policy-main-container .close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 2px;
	background-color: #fff;
}

.popup-privacy-policy-main-container .close:before {
	transform: rotate(45deg);
}

.popup-privacy-policy-main-container .close:after {
	transform: rotate(-45deg);
}

#scene{
    position: absolute;
    right: 10px;
    top: 90px;
    width: 1200px;
    height: 790px;
}


/* Inner Page Start */

.wave-one-main-container.inner-page  {
    margin: 200px 0 0 0;
}

.inner-page-main-container {
    background: #fff;
    padding: 20px 0 140px 0;
}

.inner-page-main-container article .title p,
.inner-page-main-container article .title h1 {
    color: #000;
    text-align: center;
}

.inner-page-main-container article .title p {
    font-weight: 700;
}

.inner-page-main-container article .title p a {
    font-weight: 500;
}

.inner-page-main-container article .title h1 span {
    color: #000;
    text-align: center;
    opacity: 1;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 10.8px;
    text-transform: uppercase;
    text-shadow: 1px 1px 50px #00000029;
    margin: 0 0 0 0;
    line-height: 28px;
    display: block;
    font-family: 'Barlow', sans-serif;
}

.inner-page-main-container article .title h1 {
    font-size: 90px;
}

.inner-page-main-container article .content h2 {
    font-size: 25px;
    line-height: 50px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.error404 .inner-page-main-container article .content h2,
.page-id-356 .inner-page-main-container article .content h2 {
    text-align: center;
}

.inner-page-main-container article .content h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    margin: 0 0 20px 0;
    font-family: 'caslongradregular';
    letter-spacing: 1px;
    margin: 30px 0 28px 0;
}

.inner-page-main-container article .content h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin: 30px 0 28px 0;
    letter-spacing: 0.2px;
}

.inner-page-main-container article .content h5 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    margin: 30px 0 28px 0;
    letter-spacing: 0.2px;
}

.inner-page-main-container article .content h6 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin: 30px 0 28px 0;
    letter-spacing: 0.2px;
}

.inner-page-main-container article .content ol {
    font-size: 18px;
    line-height: 34px;
    margin: 0 0 24px 0;
}

.inner-page-main-container article .content ol {
    list-style-type: none;
}

.inner-page-main-container article .content ol li {
    counter-increment: step-counter;

}

.inner-page-main-container article .content ol li {
    margin-bottom: 6px;
    padding-left: 34px;
}

.inner-page-main-container article .content ol li::before {
    content: counter(step-counter);
    margin-right: 22px;
    font-size: 20px;
    font-family: 'caslongradregular';
    position: relative;
    top: 1px;
    margin-left: -34px;
}

.inner-page-main-container article .content ol {
    padding: 0 0 0 0;
}

.inner-page-main-container article .content ul {
    font-size: 18px;
    line-height: 34px;
    margin:15px 0 20px 0;
	list-style:none;
}

.inner-page-main-container article .content ul li {
    padding-left: 34px;
    margin-bottom: 12px;
}

.inner-page-main-container article .content ul.check-list li {
    padding-left: 48px;
    margin-bottom: 12px;
}

.inner-page-main-container article .content ul li:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #333;
    border-radius: 100%;
    margin-right: 22px;
    position: relative;
    top: 0px;
    margin-left: -34px;
}

.inner-page-main-container article .content ul.check-list li:before {
    content: "\f00c";
    width: 26px;
    height: 26px;
    border: 2px solid #46B5AA;
    border-radius: 100%;
    margin-right: 22px;
    position: relative;
    top: 0px;
    margin-left: -48px;
    color: #46B5AA;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.inner-page-main-container article .content p {
    font-size: 18px;
    line-height: 34px;
}

.inner-page-main-container article .content img {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 50px auto;
}

.inner-page-main-container article .title {
    margin: 0 0 34px 0;
}

.main-button.center {
    margin: 60px auto 0 auto;
}

.inner-page-main-container article .graphic-one {
    width: 100%;
    max-width: 232px;
    position: absolute;
    left: -300px;
    top: 100px;
}

.inner-page-main-container article .graphic-two {
    width: 100%;
    max-width: 78px;
    position: absolute;
    right: -110px;
    bottom: 100px;
}

.inner-page-main-container .content-main-container {
    position: relative;
}

.single .footer-main-container .graphics-container .graphic-one, 
.page:not(.home) .footer-main-container .graphics-container .graphic-one {
    top: -80px;
}

.single .footer-main-container .graphics-container .graphic-two, 
.page:not(.home) .footer-main-container .graphics-container .graphic-two {
    top: -230px;
}

.single .cf-col-one.submit-button-container, 
.page:not(.home) .cf-col-one.submit-button-container {
    margin: -30px 0 0 0;
}

.inner-page-main-container .container {
    max-width: 1190px;
}

.contact-main-container form.sent .wpcf7-response-output {
    display: none !important;
}

.error404 .footer-main-container .graphics-container .graphic-one {
    top: -80px;
} 

.error404 .footer-main-container .graphics-container .graphic-two {
    top: -230px;
}




.single-post .single-share {
	width: 100%;
    margin: 84px auto 20px auto;
    text-align: center;
}

.single-post .single-share h2 {
	font-size: 16px;
    margin: 0 0 22px 0;
    border-bottom: 1px solid #B5B5B5;
    padding: 0 0 4px 0;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    line-height: 40px;
}

.single-post .addtoany_list a span {
    background-color: transparent !important;
    border-radius: 0 !important;
    height: 45px !important;
    width: 44px !important;
    line-height: 25px !important;
    display: block;
    margin: 0 auto 12px auto;
}

.single-post .addtoany_list a span svg {
    height: 45px !important;
    width: 45px !important;
    border-radius: 0;
    padding: 6px;
    text-align: center;
    margin: -4px 0 0 -4px;
}

.single-post .addtoany_list a span.a2a_s_email svg {
   height: 50px !important;
    width: 50px !important;
    margin: -6px 0 0 -4px !important;
}

.single-post .addtoany_list .a2a_button_twitter span svg path {
	fill: #333 !important;
}

.single-post .addtoany_list .a2a_button_facebook span svg path {
	fill: #333 !important;
}

.single-post .addtoany_list .a2a_button_pinterest span svg path {
	fill: #333 !important;
}

.single-post .addtoany_list .a2a_button_youtube span svg path {
	fill: #333 !important;
}

.single-post .addtoany_list .a2a_button_email span svg path {
	fill: #333 !important;
}

/*
.single-post .addtoany_list > a {
	text-align: center;
    margin: 0 auto;
    display: inline-block;
    padding: 0;
}

.single-post .single-share > a.back {
	font-size: 24px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 4px auto 0 auto;
    display: table;
	text-decoration: underline;
}

.single-post .single-share > a.back:hover {
	color:#FFC425;
}

.inner-product-main-content-container .summary .back-button {
	font-size: 24px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 700;
    display: table;
	text-decoration: underline;
}

.inner-product-main-content-container .summary .back-button:hover {
	color:#FFC425;
}
*/



.error404 .home-about-main-container {
    margin: 200px 0 0 0;
}

.error404 .home-about-main-container .right-panel p {
    line-height:40px;
}

.error404 .footer-main-container .newsletter form .submit-button-container #button-arrow {
    top: -66px;
}


/* Inner Page End */


.hidden {
    display:none;
}


/* Responsive Start */


/* Custom 320 to 991 */
@media (min-width: 320px) and (max-width: 991px) {

.graphic-one.desktop,
.graphic-two.desktop {
    display: none;
}

.latest-works-main-container .latest-works ul.latest-works-list .owl-stage-outer {
    pointer-events: none;
}

.header-mobile-menu-container .mobile-logo {
    position: fixed;
    z-index: 1;
}

.header-mobile-menu-container .mobile-logo svg {
    height: 74px;
    width: auto;
    margin: 8px 0 0 24px;
}

.header-mobile-menu-container .mobile-logo svg.mobile-scroll {
    position: absolute;
    left: 0px;
    opacity: 0;
}

.header-main-container .logo svg {
    display: none !important;
}

.mobile-scroll.header-mobile-menu-container .mobile-logo svg,
.header-mobile-menu-container .mobile-logo svg,
.header-mobile-menu-container .hamburger,
.mobile-scroll.header-mobile-menu-container .hamburger,
.mobile-scroll.header-mobile-menu-container .mobile-logo,
.header-mobile-menu-container .mobile-logo {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hamburger {
    top: 13px;
    position: absolute;
}

.mobile-scroll.header-mobile-menu-container .mobile-logo svg.mobile-scroll,
.header-mobile-menu-container .mobile-logo svg.mobile-default {
    opacity: 1;
} 

.mobile-scroll.header-mobile-menu-container .mobile-logo svg.mobile-default {
    opacity: 0;
}

.mobile-scroll-up.header-mobile-menu-container .mobile-logo svg {
    height: 52px;
}

.mobile-scroll-up.header-mobile-menu-container .hamburger {
    top:1px;
}

.header-main-container.mobile-scroll-up {
    height: 68px;
    position: fixed !important;
}

.header-mobile-menu-container .mobile-logo {
    top: 0;
    position: absolute;
}

.header-main-container.mobile-scroll {
    top: -91px;
}

.mobile-scroll.header-mobile-menu-container .mobile-logo,
.mobile-scroll.header-mobile-menu-container .hamburger {
    top: -90px;
}

body.disable-scroll {
    overflow:hidden;
}

.header-mobile-menu-container.mobile-scroll-up .mobile-logo,
.mobile-scroll-up.header-mobile-menu-container .hamburger {
    position: fixed !important;
}

.mobile-scroll-up.header-mobile-menu-container .mobile-logo svg.mobile-scroll {
    opacity: 1;
}

.mobile-scroll-up.header-mobile-menu-container .mobile-logo svg.mobile-default {
    opacity: 0;
}

.header-main-container {
    padding: 8px 0 8px 0;
    position: absolute !important;
}

.header-main-container .logo svg.mobile {
    max-width: 52px;
    display: none;
}

.header-main-container.mobile-scroll .logo .default,
.header-main-container .logo svg.reverse {
    display: none;
}

.header-main-container.mobile-scroll .logo .mobile {
    display: block;
}

.header-main-container .logo svg {
    max-width: 52px;
}

.content__text.scrolled.active,
.content__text.scrolled.active span {
    opacity: 1 !important;
    transform: none !important;
}

.testimonials-container .right-panel .graphic-two {
    display: none;
}

.footer-main-container .graphics-container {
    display: none;
    opacity: 0;
    height: 1px;
}

.footer-main-container .graphics-container .graphic-two,
.footer-main-container .graphics-container .graphic-one {
    display: none;
}

.view-more-clients-button {
    display: block;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.54px;
    font-weight: 700;
}

.view-more-clients-button::after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    content: "\f067";
    color: #000;
    font-weight: 300;
    margin: 0 0 0 14px;
}

.clients-logo-main-container .content-container ul li:nth-child(1),
.clients-logo-main-container .content-container ul li:nth-child(2),
.clients-logo-main-container .content-container ul li:nth-child(3),
.clients-logo-main-container .content-container ul li:nth-child(4),
.clients-logo-main-container .content-container ul li:nth-child(5),
.clients-logo-main-container .content-container ul li:nth-child(6),
.clients-logo-main-container .content-container ul li:nth-child(7),
.clients-logo-main-container .content-container ul li:nth-child(8) {
    display: block;
}

.contact-main-container {
    margin: 0 0 -20px 0;
}

#scene,
.home-banner-graphics-main-container,
.home-banner-main-container {
    height: auto !important;
}

.home-banner-graphics-main-container img {
    max-width: 130vw;
    position: relative;
    left: -20px;
}

#scene {
    top: 0;
    width: 100%;
    position: relative;
    margin: 25px 0 0 0;
    right: 0;
    left: 0;
    margin: 25px auto 0 auto;
}

.footer.header-social-main-container {
    margin: 12px 0 0 -8px;
}

.footer.header-social-main-container ul {
    text-align: left;
}

.footer-main-container .footer.header-social-main-container {
    margin: 0px 0 30px -8px;
}

.mobile-menu-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1000;
	display: none;
    background: black;
}

.mobile-menu-container .mobile-menu-nav-container {
    position: relative;
    top: 120px;
    padding: 0 30px;
}

.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu-inner-page,
.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu {
	width: 100%;
	max-width: 260px;
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	left: -260px;
	opacity: 0;
	position: relative;	
}

.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu-inner-page.menu-open,
.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu.menu-open {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	left: 0;
	opacity: 1;
}

.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu-inner-page li a,
.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu li a {
	color: #fff;
    font-size: 30px;
    font-weight: 400;
    display: block;
    margin: 0 0 8px 0;
}

.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu-inner-page li.phone,
.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu li.phone {
	display: none;
}

.header-mobile-menu-container .contact {
	padding: 34px 0 0 0;
    width: 100%;
    max-width: 260px;
}

.header-mobile-menu-container .contact ul li a,
.header-mobile-menu-container .contact ul li p{
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    margin: 0 0 16px 0;
	display: block;
}

.header-mobile-menu-container .contact ul li a:hover {
	opacity: 0.8;
}

.header-mobile-menu-container .contact ul li a:after {
	content: "";
    width: 1px;
    height: 18px;
    background-color: #fff;
    display: inline-block;
    margin: 0 16px 0 6px;
    position: relative;
    top: 5px;
    float: left;
}

.header-mobile-menu-container .contact ul li.address a:after {
    display: none;
}

.header-mobile-menu-container .contact ul li a:before,
.header-mobile-menu-container .contact ul li p:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
}

.header-mobile-menu-container .contact ul li.phone a:before {
    font-size: 17px;
    content: '\f095';
    color: #fff;
    font-weight: 900;
    margin: 0 9px 0 0;
    position: relative;
    top: -1px;
    float: left;
    left: 0px;
}

.header-mobile-menu-container .contact ul li.address p:before {
	font-size: 18px;
    content: "\f3c5";
    color: #fff;
    font-weight: 900;
    margin: 0 30px 0 -48px;
    position: relative;
    top: 0px;
    float: left;
}

.header-mobile-menu-container .contact ul li.email a:before {
	font-size: 17px;
    content: "\f0e0";
    color: #fff;
    font-weight: 900;
    margin: 0 7px 0 1px;
    position: relative;
    top: 0px;
    float: left;
}

.header-mobile-menu-container .contact ul li p:after {
	content: "";
    width: 1px;
    height: 18px;
    background-color: #fff;
    display: inline-block;
    float: left;
    margin: 0 0 0 11px;
    position: absolute;
    top: 4px;
    left: 20px;
}

.header-mobile-menu-container .contact ul li p {
	position: relative;
    padding: 0 0 0 51px;	
}

.header-main-container.scroll #nav-icon span {
	background: #212a3d;
}

.mobile-menu-button {
    position: absolute;
    right: 15px;
    top: 52px;
}

#nav-icon {
    width: 18px;
    height: 19px;
    position: relative;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
	display: inline-block;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  left: 2px;
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 13px;
    left: 2px;
}

.header-mobile-menu-container .social-media ul li{
	display: inline-block;
}

.header-mobile-menu-container .social-media ul li {
	margin: 10px 14px 0 0;
}

.header-mobile-menu-container .social-media ul li a:hover {
	opacity: 0.8;
}

.header-mobile-menu-container .social-media ul li a:before {
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 brands";
    font-weight: 300;
    color: #fff;
	font-size: 24px;
}
	
.header-mobile-menu-container .social-media ul li.instagram a:before {
	content: "\f16d";
}

.header-mobile-menu-container .social-media ul li.facebook a:before {
	content: "\f082";
}

.header-mobile-menu-container .social-media ul li.linkedin a:before {
	content: "\f08c";
}

.header-main-container .logo svg {
    max-width: 140px;
    margin: 0 0 0 0;	
}

.header-main-container.scroll .mobile-menu-button {
    top: 34px;
}

.header-main-container.scroll .mobile-menu-button:before {
    color: #212a3d;
}

.header-main-container .mobile-menu-button,
.header-main-container.scroll .mobile-menu-button{
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-mobile-menu-container .social-media p,
.header-main-container .col-lg-9 {
    display: none;
} 

.header-main-container {
    z-index: 9999;
    background: #000;
    position: fixed;
    height: 91px;
}

.header-social-main-container ul {
    position: relative;
    top: 16px;
}

.header-social-main-container ul li {
    display: inline-block;
    margin: 0 12px 0 0;
}

.header-logo-menu-container .header-social-main-container {
    display: none;
}

.home-banner-container .content {
    padding: 0 0 0 0;
    max-width: 100%;
}

.home-banner-container .content p {
    margin: 0 0 10px 10px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 5.6px;
}

.home-banner-container .content h1 {
    line-height: 54px;
    font-size: 52px;
    letter-spacing: 1.56px;
}

.home-about-main-container .left-panel .content {
    padding: 0;
}

.home-about-main-container .left-panel .content h2 {
    margin: 0 0 22px 0;
}

.home-about-main-container .right-panel .content p {
    font-size: 16px;
    color: #fff;
    line-height: 30px;
}

.home-about-main-container {
    padding:40px 0 40px 0;
}

.home-about-main-container .right-panel .content {
    padding: 0;
    margin: 0 0 30px 0;
}

.main-title p {
    font-size: 14px;
    letter-spacing: 8.4px;
}

.main-title h2 {
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 1.8px;
}

.latest-works-main-container {
    padding: 0px 0 10px 0;
    margin: -50px 0 0 0;
}

.latest-works-main-container > .title {
    margin: 0 0 40px 0;
}

.latest-works-main-container .owl-item.active.center .title {
    font-size: 0;
}

ul.latest-works-list li img {
    height: 180px;
    width: auto !important;
}

.services-main-container {
    padding: 20px 0 20px 0;
    margin: -90px 0 0 0;
    position: relative;
}

.services-main-container .content-container ul li {
    width: 100%;
    padding: 0 10px;
    max-width: 300px;
    margin: 0 auto 20px auto;
    float: none;
}

.cta-one-main-container {
    padding: 20px 0 20px 0;
}

.cta-one-main-container .right-panel .content img {
    max-width: 312px;
    margin: 0 auto;
    display: block;
}

.cta-one-main-container .left-panel .content {
    padding: 20px 10px 30px 10px;
}

.testimonials-main-container {
    padding: 60px 0 20px 0;
}

.testimonials-container {
    margin: 20px 0 0 0;
}

.testimonials-container .left-panel, .testimonials-container .right-panel {
    width: 100%;
}

.testimonials-container .left-panel .image-container {
    width: 216px;
    height: 321px;
    margin: 0 auto;
}

.testimonials-container .right-panel .content ul {
    max-width: 100%;
}

.testimonials-container .left-panel .image-container img {
    width: 200px;
    height: 200px;
    margin: 90px;
}

.testimonials-list-image-container ul li {
    width: 100%;
    padding: 0;
}

.testimonials-list-image-container {
    width: 100%;
    float: left;
}

.testimonials-container .right-panel .content {
    border-radius: 0;
    margin: 0;
    width: 100%;
    padding:120px 10px 65px 10px;
    box-shadow: none;
}

.testimonials-container .right-panel .content:before {
    width: 24px;
    height: 100%;
    position: absolute;
    top: 0;
    content: "";
    left: -24px;
    background: #e8f8ff;
}

.testimonials-container .right-panel {
    margin: -100px 0 0 0;
}

.testimonials-container .right-panel .content:after {
    width: 24px;
    height: 100%;
    position: absolute;
    top: 0;
    content: "";
    right: -24px;
    background: #e8f8ff;
}

.testimonials-container .right-panel .content ul li p {
    font-size: 18px;
    line-height: 36px;
}

.testimonials-container .right-panel .content ul li span {
    padding: 0;
    line-height: 22px;
    text-align: center;
}

.testimonials-container .right-panel .content ul li span:before {
    margin: 0 14px 0 -79px;
    vertical-align: unset;
    float: left;
    display: block;
    float: none;
    margin: 0 auto 8px auto;
}

.testimonials-container .right-panel .content ul li .author {
    margin: 30px 0 0px 0;
}

.testimonials-indicator-main-container {
    right: initial;
    left: 0;
}

.testimonials-list .owl-dots {
    padding: 0 110px 0 0;
}

.testimonials-list .owl-nav {
    margin: 34px -5px 0 0 !important;
}

.latest-works-main-container .owl-dots button.active span {
    width: 6px !important;
}

.latest-works-main-container .latest-work-filter .end-slide-number-indicator {
    left: 170px;
}

.latest-works-main-container .owl-nav {
    padding: 0 16px 0 0;
}

.latest-work-filter .owl-dot {
    right: 292px;
}

.clients-logo-main-container .content-container ul li {
    width: 50%;
    padding: 0 10px;
    margin: 0 0 20px 0;
    display: none;
}

.contact-main-container .contact-container img {
    max-width: 400px;
    margin: -260px auto 0 auto;
}

.clients-logo-main-container {
    padding: 0 0 120px 0;
    background: #fff;
}

.contact-main-container .contact-container .title {
    margin: 60px 0 60px 0;
}

.contact-form-container .cf-col-one em {
    font-size: 18px;
}

.more-fields-container .cf-col-one:first-child em,
.more-fields-container .cf-col-one:nth-child(3) em {
    line-height: 20px;
}

.contact-form-container .cf-col-one .wpcf7-submit {
    margin: 10px auto 20px auto;
}

.footer-main-container .newsletter h2 {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 30px 0;
}

.footer-main-container {
    padding: 0px 0 50px 0;
    margin:-40px 0 0 0;
}

.footer-main-container .contact {
    margin: 40px auto 20px auto;
}

.footer-main-container .contact ul li {
    width: 100%;
    padding: 0 0;
    margin: 0 0 15px 0;
}

.footer-main-container .contact ul li:nth-child(3) {
    padding: 0 0 0 0;
}

.footer-main-container div.wpcf7 .ajax-loader {
    right: 16px;
}

.footer-main-container div.wpcf7-response-output {
    color: #fff !important;
    border: 1px solid #377ca8 !important;
}

.services-main-container .content-container {
    margin: 10px auto 0 auto;
}

.footer-main-container .contact ul li a, .footer-main-container .contact ul li p {
    font-size: 19px;
    line-height: 26px;
}

.footer-main-container .contact ul li.address p:after {
    left: 25px;
}

.footer-main-container .contact ul li.address p:before {
    margin: 0 31px 0 -48px;
}

.footer-main-container .contact ul li.email a:after {
    margin: 0 16px 0 1px;
}

.footer-main-container .contact ul li p {
    padding: 0 0 0 50px;
    margin: 0;
    max-width: 300px;
}

.latest-works-main-container .owl-item .title p {
    width: 40%;
    width: 100%;
    font-size: 0;
    height: 22px;
}

.latest-works-main-container .owl-dots:after {
    height: 55px;
    right: -4940px;
}

.home-about-main-container .left-panel .content h2,
.services-main-container .intro .content p,
.cta-one-main-container .left-panel .content p {
    font-size: 28px;
    line-height: 42px;
    font-weight: 400;
}

.cta-one-main-container .graphics-container .graphic-one,
.services-main-container .graphic-one,
.services-main-container .graphic-two {
    display: none;
}

.home-banner-graphics {
    height: 600px;
}

.container {
    padding: 0 24px;
    max-width: 100%;
}

.home-about-main-container .container {
    padding: 0 34px;
}

.testimonials-main-container .mobile.graphics-container .graphic-one {
    width: 100%;
    max-width: 50px;
    position: absolute;
    top: -85px;
    right: 60px;
}

.testimonials-main-container .mobile.graphics-container {
    position: relative;
}

.testimonials-main-container .main-title h2 {
    margin: 0 -8px;
}
.testimonials-container .right-panel .graphic-two {
    position: absolute;
    right: 140px;
    width: 100%;
    max-width: 108px;
    top: -780px;
}
.services-main-container .title p,
.services-main-container .title h2 {
    margin: 0 -4px;
}

.services-main-container .intro .content {
    padding: 30px 0 0 0;
}

.services-main-container .intro .content p,
.cta-one-main-container .left-panel .content p {
    font-size: 18px;
    line-height: 36px;
    font-weight: 500;
}

.services-main-container .content-container ul li .column-container:hover div > a img {
    opacity: 0 !important;
}

.services-main-container .content-container ul li .column-container:hover div > a i {
    opacity: 1 !important;
}

.cta-one-main-container div .content {
    padding: 0 10px;
}

.graphics-one-main-container .graphic-one {
    max-width: 54px;
}

.graphics-one-main-container .graphic-one {
    top: 50px;
    max-width: 54px;
    left: 30px;
}

.graphics-one-main-container .graphic-two {
    right: 10px;
    top: 20px;
    max-width: 82px;
}

.latest-work-filter .owl-dot {
    right: inherit;
    left: 10px;
}

.latest-works-main-container .owl-dots {
    text-align: left !important;
    padding: 0 0 0 64px;
}

.testimonials-main-container .latest-work-filter .end-slide-number-indicator {
    left: 170px;
    right: initial;
}

.latest-work-filter .owl-dots {
    margin: 0 0 0 23px;
}

.latest-works-main-container .owl-dots button span {
    width: 8px !important;
}

.latest-works-main-container .owl-nav {
    padding: 0 34px 0 0;
}

}


/* 320 to 576 */
@media (min-width: 320px) and (max-width: 576px) {


.inner-page-main-container article .title h1 span {
    letter-spacing: 3px;
    margin: 0 0 2px 0;
}

.inner-page-main-container article .content h3 {
    font-size: 32px;
    line-height: 42px;
}

.contact-form-container .cf-col-one.like-to-talk-col em {
    font-size: 15px;
}

.contact-form-container .cf-col-one .left-panel, .contact-form-container .cf-col-one .right-panel {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.contact-form-container .cf-col-one .right-panel .fl_label {
    left: 0;
}

.contact-form-container .cf-col-one .left-panel {
    margin-bottom: 30px;
}

.inner-page-main-container article .graphic-one,
.inner-page-main-container article .graphic-two {
    display: none;
}

.wave-one-main-container.inner-page {
    margin: 90px 0 0 0;
}

.inner-page-main-container {
    padding: 0px 0 100px 0;
}

.inner-page-main-container article .title h1 {
    line-height: 62px;
    font-size: 52px;
    letter-spacing: 1.56px;
}

.inner-page-main-container article .content h2 {
    font-size: 16px;
    line-height: 30px;
}

.contact-form-container .cf-col-one em {
    line-height: 22px;
}

 .FlowupLabels .surname-col.focused .fl_label,
 .FlowupLabels .first-name-col.focused .fl_label,
 .FlowupLabels .surname-col.populated .fl_label,
 .FlowupLabels .first-name-col.populated .fl_label {
    top: 30px !important;
}

.FlowupLabels .like-to-talk-col.focused .fl_label,
.FlowupLabels .like-to-talk-col.populated .fl_label {
    top: 28px !important;
    line-height: 18px;
}

.FlowupLabels .like-to-talk-col .fl_label {
    top: 38px !important;
}

 .FlowupLabels .surname-col .fl_label,
 .FlowupLabels .first-name-col .fl_label {
    top: 40px;
}

.latest-works-main-container .owl-dots:after {
    display: none;
}

.latest-work-filter .indicator-container {
    max-width: 200px;
    float: left;
}

.testimonials-indicator-main-container .latest-work-filter .owl-dot {
    right: initial;
    left: 10px;
}

.mobile-footer-graphics-container .graphic-one {
    width: 44px;
    float: left;
    margin: -100px 0 0 0;
    position: absolute;
    left: 46px;
}

.mobile-footer-graphics-container .graphic-two {
    width: 118px;
    float: right;
    margin: -170px 0 0 0;
    position: absolute;
    right: 30px;
}

.contact-main-container .contact-form-container > div {
    max-width: 100%;
    left: 0;
}

.contact-form-container .cf-col-one {
    padding: 0 0 12px 0;
}

.footer-main-container .footer.header-social-main-container ul {
    text-align: center;
}

.footer-main-container .contact ul li.email a:before {
    float: left;
    float: none;
    display: block;
    margin: 0 0 2px 0;
}

.footer-main-container .contact ul li.address p:after {
    display: none;
}

.footer-main-container .contact ul li {
    text-align: center;
}

.footer-main-container .contact ul li.phone a:before {
    float: none;
    display: block;
    width: 20px;
    margin: 0 auto 8px auto;
}

ul.latest-works-list li img {
    height: auto;
    width: 100vw !important;
}

.clients-logo-main-container .content-container {
   max-width: 360px; 
}

.footer-main-container .copyright p em {
    display: none;
}

.footer-main-container .copyright p {
    max-width: 272px;
    margin: 0 auto;
}

.testimonials-main-container .latest-work-filter .end-slide-number-indicator {
    left: 164px;
}

.testimonials-list .owl-dots button.active span {
    width: 14px !important;
}

.footer-main-container .contact ul li.email a:after {
    display: none;
}

.footer-main-container .contact ul li a:after {
    display: none;
}

.footer-main-container .contact ul li.address p:after {
    left: 25px;
}

.footer-main-container .contact ul li.address p:before {
    margin: 0 0 6px 0;
    display: block;
    float: none;
}

.footer-main-container .contact ul li p {
    padding: 0 0 0 0;
    margin: 0 auto;
}

.scroll-points#contact-us {
    margin: -75px 0 0 0;
    padding: 75px 0 0 0;
}

.scroll-points#our-work {
    margin: -185px 0 0 0;
    padding: 185px 0 0 0;
}

.scroll-points#our-services {
    margin: -135px 0 0 0;
    padding: 135px 0 0 0;
}

.scroll-points#our-clients {
    margin: -135px 0 0 0;
    padding: 135px 0 0 0;
}

.testimonials-container .right-panel .graphic-two {
    top: -480px;
}

.footer-main-container .graphics-container .graphic-two {
    top: 700px;
    max-width: 120px;
}

.footer-main-container .graphics-container .graphic-one {
    max-width: 44px;
    right: inherit;
    left: 15px;
    margin: 0;
    bottom: initial;
    top: 1600px;
}

.testimonials-list .owl-dots {
    padding: 0 110px 0 30px;
    text-align: left !important;
}

.testimonials-container .left-panel .image-container img {
    margin: 120px auto 0 auto;
}

.home-banner-container .content {
    margin: 0 auto;
    max-width: 270px;
}

.home-banner-main-container {
    height: 470px;
}

.home-banner-graphics-main-container {
    top: 0;
    height: 640px;
}

}


/* 577 to 767 */
@media (min-width: 577px) and (max-width: 767px) {


.inner-page-main-container article .title h1 span {
    letter-spacing: 3px;
    margin: 0 0 2px 0;
}

.inner-page-main-container article .content h3 {
    font-size: 32px;
    line-height: 42px;
}

.contact-form-container .cf-col-one .left-panel, .contact-form-container .cf-col-one .right-panel {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.contact-form-container .cf-col-one .right-panel .fl_label {
    left: 0;
}

.contact-form-container .cf-col-one .left-panel {
    margin-bottom: 30px;
}

.inner-page-main-container article .graphic-one,
.inner-page-main-container article .graphic-two {
    display: none;
}

.wave-one-main-container.inner-page {
    margin: 90px 0 0 0;
}

.inner-page-main-container {
    padding: 0px 0 100px 0;
}

.inner-page-main-container article .title h1 {
    line-height: 62px;
    font-size: 52px;
}

.inner-page-main-container article .content h2 {
    font-size: 20px;
    line-height: 40px;
}

.latest-works-main-container .owl-dots:after {
    display: none;
}

.latest-work-filter .indicator-container {
    max-width: 460px;
    float: left;
}

.testimonials-indicator-main-container .latest-work-filter .owl-dot {
    right: initial;
    left: 41px;
}

.mobile-footer-graphics-container .graphic-one {
    width: 54px;
    float: left;
    margin: -57px 0 0 54px;
    position: absolute;
    left: 0;
}

.mobile-footer-graphics-container .graphic-two {
    width: 214px;
    float: right;
    margin: -210px 0 0 0;
    position: absolute;
    right: 34px;
}

.footer-main-container .newsletter {
    max-width: 100%;
}

.contact-main-container .contact-form-container > div {
    max-width: 100%;
    left: 0;
}

.contact-form-container .cf-col-one {
    padding: 0 0 12px 0;
}

.footer-main-container .contact ul li p {
    padding: 0;
    margin: 0 auto;
}

.footer-main-container .contact ul li.address p:before {
    margin: 0 0 6px 0;
    display: block;
    float: none;
}

.footer-main-container .footer.header-social-main-container ul {
    text-align: center;
}

.footer-main-container .contact ul li.email a:before {
    float: left;
    float: none;
    display: block;
    margin: 0 0 2px 0;
}

.footer-main-container .contact ul li.address p:after,
.footer-main-container .contact ul li a:after,
.footer-main-container .contact ul li.address p:after,
.footer-main-container .contact ul li.email a:after {
    display: none;
}

.footer-main-container .contact ul li {
    text-align: center;
}

.footer-main-container .contact ul li.phone a:before {
    float: none;
    display: block;
    width: 20px;
    margin: 0 auto 8px auto;
}

.scroll-points#contact-us {
    margin: -75px 0 0 0;
    padding: 75px 0 0 0;
}

.scroll-points#our-work {
    margin: -185px 0 0 0;
    padding: 185px 0 0 0;
}

.scroll-points#our-services {
    margin: -135px 0 0 0;
    padding: 135px 0 0 0;
}

.scroll-points#our-clients {
    margin: -135px 0 0 0;
    padding: 135px 0 0 0;
}

.footer-main-container .graphics-container .graphic-two {
    top: 550px;
    max-width: 200px;
}

.footer-main-container .graphics-container .graphic-one {
    max-width: 53px;
    bottom: -1614px;
    right: inherit;
    left: 15px;
    margin: 0;
    top: initial;
}

.testimonials-main-container .mobile.graphics-container .graphic-one {
    max-width: 78px;
    top: -124px;
    right: 30px;
}

.graphics-one-main-container .graphic-one {
    top: 60px;
    max-width: 80px;
    left: 30px;
}

.graphics-one-main-container .graphic-two {
    right: 20px;
    top: 10px;
    max-width: 123px;
}

.testimonials-container .right-panel .graphic-two {
    right: initial;
    max-width: 108px;
    top: -956px;
    left: 20px;
}

.testimonials-list .owl-dots {
    padding: 0 110px 0 30px;
    text-align: left !important;
}

.clients-logo-main-container .content-container {
    max-width: 477px;
}

.more-fields-container .cf-col-one:first-child em,
.more-fields-container .cf-col-one:nth-child(3) em {
    line-height: 36px;
}

.footer-main-container .contact,
.footer-main-container .footer.header-social-main-container {
    padding: 0 46px;
}

.footer-main-container .container {
    padding: 0 65px;
}

.footer-main-container .newsletter h2 {
    font-size: 32px;
    line-height: 64px;
    margin: 0 0 35px 0;
}

.contact-main-container {
    margin: 0;
    padding: 0 0 20px 0;
}

.contact-main-container .contact-form-container {
    padding: 0 41px;
}

.contact-main-container .contact-container .title p {
    margin: 0 0 10px 0;
}

.contact-main-container .contact-container img {
    max-width: 500px;
    margin: -370px auto 30px auto;
}

.clients-logo-main-container .content-container ul li:nth-child(9) {
    display: block;
}

.clients-logo-main-container {
    padding:20px 0 240px 0;
    background: #fff;
}

.clients-logo-main-container .container {
    padding: 0 50px;
}

.testimonials-main-container .latest-work-filter .end-slide-number-indicator {
    left: 198px;
}

.testimonials-container .right-panel .content ul li .author {
    margin: 60px 0 0px 0;
}

.testimonials-container .right-panel .content ul li span {
    text-align: left;
}

.testimonials-container .right-panel .content ul li span:before {
    margin: 0 30px 0 0;
    float: left;
}

.testimonials-container .right-panel {
    margin: -230px 0 0 0;
}

.testimonials-container .right-panel .content {
    padding: 220px 40px 65px 40px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 40px;
}

.testimonials-container .right-panel .content:before,
.testimonials-container .right-panel .content::after {
    display: none;
}

.testimonials-container .right-panel .content ul li p {
    font-size: 25px;
    line-height: 50px;
}

.testimonials-container {
    margin: 70px 0 0 0;
}

.testimonials-container .left-panel .image-container img {
    width: 275px;
    height: 275px;
}

.services-main-container .content-container ul li div > a {
    min-height: 98px;
}

.services-main-container .intro {
    padding: 0 41px;
}

.services-main-container .intro .content p,
.cta-one-main-container .left-panel .content p {
    font-size: 25px;
    line-height: 50px;
}

.services-main-container .title p {
    margin: 0 0 8px 0;
}

.services-main-container {
    margin: -40px 0 0 0;
}

.latest-works-main-container {
    padding: 0 0 30px 0;
    margin: -60px 0 0 0;
}

.latest-works-main-container .owl-nav {
    padding: 0 65px 0 0;
}

.latest-works-main-container .latest-work-filter .end-slide-number-indicator {
    left: 278px;
}

.latest-works-main-container .owl-dots {
    padding: 0 0 0 98px;
}

.latest-work-filter .owl-dot {
    left: 41px;
}

.latest-works-main-container .owl-dots button.active span,
.latest-works-main-container .owl-dots button span {
    width: 14px !important;
}

.home-about-main-container .left-panel .content h2 {
    font-size: 32px;
    line-height: 48px;
}

.home-about-main-container .right-panel .content p {
    font-size: 20px;
    line-height: 40px;
}

.home-about-main-container .container {
    padding: 0 65px;
}

.home-about-main-container .right-panel .main-button {
    margin: 0 auto;
}

.home-about-main-container {
    padding: 50px 0 40px 0;
}

.home-about-main-container {
    padding: 50px 0 60px 0;
}

.main-title p {
    font-size: 16px;
    letter-spacing: 9.6px;
    margin: 0 0 4px 0;
}

.main-title h2 {
    font-size: 64px;
    line-height: 64px;
    letter-spacing: 1.92px;
}

ul.latest-works-list li img {
    height: auto;
    width: 100vw !important;
}

.testimonials-container .left-panel .image-container {
    width: 430px;
    height: 450px;
}

.testimonials-main-container .main-title p {
    margin: 0 0 8px 0;
}

.cta-one-main-container .left-panel .content {
    padding: 25px 41px 60px 41px;
}

.home-banner-graphics-main-container img {
    left: 0;
    max-width: 122vw;
}

.home-banner-container .content p {
    margin: 0 0 18px -70px;
    font-size: 16px;
    letter-spacing: 9.6px;
}

.home-banner-container .content h1 {
    line-height: 76px;
    font-size: 80px;
    letter-spacing: 2.4px;
    text-indent: -84px;
}

.home-banner-main-container {
    height: 765px;
}

.home-banner-container .content {
    margin: 0 auto;
    padding: 0 0 0 80px;
    max-width: 410px;
}

.services-main-container .content-container ul li {
    width: 50%;
    padding: 0 20px;
    margin: 0 auto 0px auto;
    float: left;
    max-width: 100%;
}

.services-main-container .content-container ul li h3 br {
    display: block;
}

.clients-logo-main-container .content-container ul li {
    width: 33.33333%;
    padding: 0 20px;
}

.container {
    padding: 0 24px;
    max-width: 100%;
}

}


/* 768 to 991 */
@media (min-width: 768px) and (max-width: 991px) {


.inner-page-main-container article .title h1 span {
    letter-spacing: 3px;
    margin: 0 0 2px 0;
}

.inner-page-main-container article .content h3 {
    font-size: 32px;
    line-height: 42px;
}

.inner-page-main-container article .graphic-one,
.inner-page-main-container article .graphic-two {
    display: none;
}

.wave-one-main-container.inner-page {
    margin: 90px 0 0 0;
}

.inner-page-main-container {
    padding: 0px 0 100px 0;
}

.inner-page-main-container article .title h1 {
    line-height: 62px;
    font-size: 52px;
}

.inner-page-main-container article .content h2 {
    font-size: 20px;
    line-height: 40px;
}

.mobile-footer-graphics-container .graphic-one {
    width: 54px;
    margin: -64px 0 0 -60px;
    position: absolute;
    left: 50%;
    right: 50%;
}

.mobile-footer-graphics-container .graphic-two {
    width: 214px;
    float: right;
    margin: -224px 0 0 0;
    position: absolute;
    right: 10px;
}

.latest-works-main-container .owl-item.active.center .title {
    display: none;
}

.latest-works-main-container .owl-dots:after {
    display: none;
}

.latest-works-main-container .owl-dots {
    padding: 0 120px 0 0;  
}

.latest-works-main-container .latest-work-filter .indicator-container,
.latest-works-main-container .owl-dots {
    max-width: 71vw;
}

.latest-works-main-container .latest-work-filter .end-slide-number-indicator {
    right: 84px;
}

.latest-works-main-container .owl-dots button {
    right: 327px;
}

.contact-form-container .cf-col-one {
    padding: 0 0 12px 0;
}

.footer-main-container .newsletter {
    max-width: 536px;
}

.contact-main-container .contact-form-container > div {
    max-width: 100%;
    left: 0;
}

.footer-main-container .contact ul li p {
    padding: 0;
    margin: 0 auto;
}

.footer-main-container .contact ul li.address p:before {
    margin: 0 0 6px 0;
    display: block;
    float: none;
}

.footer-main-container .footer.header-social-main-container ul {
    text-align: center;
}

.footer-main-container .contact ul li.email a:before {
    float: left;
    float: none;
    display: block;
    margin: 0 0 2px 0;
}

.footer-main-container .contact ul li.address p:after,
.footer-main-container .contact ul li a:after,
.footer-main-container .contact ul li.address p:after,
.footer-main-container .contact ul li.email a:after {
    display: none;
}

.footer-main-container .contact ul li {
    text-align: center;
}

.footer-main-container .contact ul li.phone a:before {
    float: none;
    display: block;
    width: 20px;
    margin: 0 auto 8px auto;
}

.scroll-points#contact-us {
    margin: -75px 0 0 0;
    padding: 75px 0 0 0;
}

.scroll-points#our-work {
    margin: -160px 0 0 0;
    padding: 160px 0 0 0;
}

.scroll-points#our-services {
    margin: -135px 0 0 0;
    padding: 135px 0 0 0;
}

.scroll-points#our-clients {
    margin: -135px 0 0 0;
    padding: 135px 0 0 0;
}

.footer-main-container .graphics-container .graphic-two {
    top: 615px;
    max-width: 200px;
    right: -100px;
}

.footer-main-container .graphics-container .graphic-one {
    max-width: 53px;
    bottom: -1650px;
    right: 50%;
    left: 50%;
    margin: 0;
    top: initial;
}

.testimonials-main-container .mobile.graphics-container .graphic-one {
    max-width: 78px;
    top: -116px;
    right: inherit;
    left: 174px;
}

.graphics-one-main-container .graphic-one {
    top: 60px;
    max-width: 80px;
    left: 90px;
}

.graphics-one-main-container .graphic-two {
    right: 86px;
    top: 30px;
    max-width: 123px;
}

.testimonials-container .right-panel .graphic-two {
    right: 10px;
    max-width: 108px;
    top: -796px;
    left: inherit;
}

.testimonials-main-container .main-title h2 {
    margin: 0 -18px;
}

.contact-form-container .cf-col-one em {
    font-size: 22px;
}

.testimonials-indicator-main-container {
    right: 0;
    left: auto;
    width: 100%;
}

.testimonials-list .owl-dots {
    padding: 0 120px 0 0;
    text-align: right !important;
}

.testimonials-indicator-main-container .latest-work-filter .owl-dot {
    right: 312px;
}

.cta-one-main-container .left-panel .content p {
    font-size: 25px;
    line-height: 50px;
}

.services-main-container .intro .content {
    max-width: 100%;
}

.services-main-container .title h2 {
    margin: 0 -4px 8px -4px;
}

.latest-works-main-container > .title {
    margin: 0 0 60px 0;
}

.latest-works-main-container .owl-item .title p {
    font-size: 15px;
    height: auto;
    width: 37%;
}

.clients-logo-main-container .content-container {
    max-width: 477px;
}

.more-fields-container .cf-col-one:first-child em,
.more-fields-container .cf-col-one:nth-child(3) em {
    line-height: 36px;
}

.footer-main-container .contact,
.footer-main-container .footer.header-social-main-container {
    padding: 0 92px;
}

.footer-main-container .container {
    padding:0 116px;
}

.footer-main-container .newsletter h2 {
    font-size: 32px;
    line-height: 64px;
    margin: 0 0 35px 0;
}

.contact-main-container {
    margin: 0;
    padding: 0 0 20px 0;
}

.contact-main-container .contact-form-container {
    max-width: 536px;
    padding: 0;
    margin: 0 auto;
}

.contact-main-container .contact-container .title p {
    margin: 0 0 10px 0;
}

.contact-main-container .contact-container img {
    max-width: 700px;
    margin: -410px auto 30px auto;
}

.clients-logo-main-container .content-container ul li:nth-child(9) {
    display: block;
}

.clients-logo-main-container {
    padding: 20px 0 270px 0;
    background: #fff;
}

.clients-logo-main-container .container {
    padding: 0 50px;
}

.testimonials-main-container .latest-work-filter .end-slide-number-indicator {
    left: initial;
    right: 150px;
}

.testimonials-container .right-panel .content ul li .author {
    margin: 60px 0 0px 0;
}

.testimonials-container .right-panel .content ul li span {
    text-align: left;
}

.testimonials-container .right-panel .content ul li span:before {
    margin: 0 30px 0 0;
    float: left;
}

.testimonials-container .right-panel {
    margin: -230px 0 0 0;
}

.testimonials-container .right-panel .content {
    padding: 220px 62px 65px 62px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 40px;
}

.testimonials-container .right-panel .content:before,
.testimonials-container .right-panel .content::after {
    display: none;
}

.testimonials-container .right-panel .content ul li p {
    font-size: 25px;
    line-height: 50px;
}

.testimonials-container {
    margin: 70px 0 0 0;
}

.testimonials-container .left-panel .image-container img {
    width: 275px;
    height: 275px;
    margin: 44px auto 0 auto;
}

.services-main-container .content-container ul li div > a {
    min-height: 98px;
}

.services-main-container .intro {
    padding: 0 73px;
}

.services-main-container .intro .content p {
    font-size: 25px;
    line-height: 50px;
}

.services-main-container .title p {
    margin: 0 0 16px 0;
}

.services-main-container {
    margin: -40px 0 0 0;
}

.latest-works-main-container {
    padding: 0 0 50px 0;
    margin: -20px 0 0 0;
}

.latest-works-main-container .owl-nav {
    padding:0 112px 0 0;
    padding: 0;
    max-width: 71vw;
}

.latest-works-main-container .latest-work-filter .end-slide-number-indicator {
    left: inherit;
}

.latest-works-main-container .owl-dots {
    text-align: right !important;
}

.latest-work-filter .owl-dot {
    right: 445px;
    left: initial;
}

.latest-works-main-container .owl-dots button.active span,
.latest-works-main-container .owl-dots button span {
    width: 14px !important;
}

.home-about-main-container .left-panel .content h2 {
    font-size: 32px;
    line-height: 48px;
    margin: 0 0 32px 0;
}

.home-about-main-container .right-panel .content p {
    font-size: 20px;
    line-height: 40px;
}

.home-about-main-container .container {
    padding:0 54px;
}

.home-about-main-container .right-panel .main-button {
    margin: 0 auto;
}

.home-about-main-container {
    padding: 60px 0 20px 0;
}

.main-title p {
    font-size: 18px;
    letter-spacing: 10.8px;
    margin: 0 0 12px 0;
}

.main-title h2 {
    font-size: 90px;
    line-height: 90px;
    letter-spacing: 2.7px;
}

ul.latest-works-list li img {
    height: 350px;
    height: auto;
    width: 71vw !important;
}

.testimonials-container .left-panel .image-container {
    width: 430px;
    height: 450px;
}

.testimonials-main-container .main-title p {
    margin: 0 0 8px 0;
}

.cta-one-main-container .left-panel .content {
    padding: 25px 0px 60px 0;
}

div#scene > div {
    right: 0;
    left: auto !important;
    float: right;
}

.home-banner-graphics-main-container img {
    left: 0;
    max-width: 96vw;
}

.home-banner-container .content p {
    margin: 0 0 18px 26px;
    font-size: 16px;
    letter-spacing: 9.6px;
    text-align: left;
    text-indent: -84px;
}

.home-banner-container .content h1 {
    line-height: 76px;
    font-size: 80px;
    letter-spacing: 2.4px;
    text-indent: -84px;
}

.home-banner-main-container {
    height: 765px;
}

.home-banner-container .content {
    max-width: 434px;
    margin: 0 auto 20px auto;
    padding: 0 0 0 84px;
}

 .services-main-container .content-container ul li p {
    min-height: 84px;
} 

.testimonials-container .left-panel .image-container {
    margin: 20px auto;
}

.clients-logo-main-container .content-container ul li {
    width: 20%;
}

.services-main-container .content-container ul li {
    width: 50%;
    padding: 0 18px;
    margin: 0 auto 10px auto;
    float: left;
    max-width: 100%;
}

.cta-one-main-container {
    padding: 30px 0 60px 0;
}

.testimonials-container .left-panel .image-container {
    margin: 20px auto 20px auto;
}

.testimonials-container {
    margin: 40px 0 0 0;
}

.clients-logo-main-container .content-container ul li {
    width: 33.33333%;
    padding: 0 20px;
}

.container {
    padding: 0 54px;
    max-width: 100%;
}

.header-logo-menu-container .container {
    padding: 0 24px;
}
  
}


/* 992 to 1199 */
@media (min-width: 992px) and (max-width: 1199px) {

.inner-page-main-container article .content img {
    max-width: 800px;
}

.inner-page-main-container article .graphic-one,
.inner-page-main-container article .graphic-two {
    display: none;
}

.wave-one-main-container.inner-page {
    margin: 90px 0 0 0;
}

.inner-page-main-container {
    padding: 0px 0 100px 0;
}

.inner-page-main-container article .title h1 {
    line-height: 70px;
    font-size: 60px;
}

.inner-page-main-container article .content h2 {
    font-size: 20px;
    line-height: 40px;
}

.graphic-one.mobile,
.graphic-two.mobile {
    display: none;
}

.latest-works-main-container .latest-works ul.latest-works-list .owl-stage-outer {
    pointer-events: none;
}

.header-mobile-menu-container .mobile-logo {
    position: fixed;
    z-index: 1;
}

.header-mobile-menu-container .mobile-logo svg {
    height: 74px;
    width: auto;
    margin: 8px 0 0 24px;
}

.header-mobile-menu-container .mobile-logo svg.mobile-scroll {
    position: absolute;
    left: 0px;
    opacity: 0;
}

.header-main-container .logo svg {
    display: none !important;
}

.mobile-scroll.header-mobile-menu-container .mobile-logo svg,
.header-mobile-menu-container .mobile-logo svg,
.header-mobile-menu-container .hamburger,
.mobile-scroll.header-mobile-menu-container .hamburger,
.mobile-scroll.header-mobile-menu-container .mobile-logo,
.header-mobile-menu-container .mobile-logo {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hamburger {
    top: 13px;
    position: absolute;
}

.mobile-scroll.header-mobile-menu-container .mobile-logo svg.mobile-scroll,
.header-mobile-menu-container .mobile-logo svg.mobile-default {
    opacity: 1;
} 

.mobile-scroll.header-mobile-menu-container .mobile-logo svg.mobile-default {
    opacity: 0;
}

.mobile-scroll-up.header-mobile-menu-container .mobile-logo svg {
    height: 52px;
}

.mobile-scroll-up.header-mobile-menu-container .hamburger {
    top:1px;
}

.header-main-container.mobile-scroll-up {
    height: 68px;
    position: fixed !important;
}

.header-mobile-menu-container .mobile-logo {
    top: 0;
    position: absolute;
}

.header-main-container.mobile-scroll {
    top: -91px;
}

.mobile-scroll.header-mobile-menu-container .mobile-logo,
.mobile-scroll.header-mobile-menu-container .hamburger {
    top: -90px;
}

body.disable-scroll {
    overflow:hidden;
}

.header-mobile-menu-container.mobile-scroll-up .mobile-logo,
.mobile-scroll-up.header-mobile-menu-container .hamburger {
    position: fixed !important;
}

.mobile-scroll-up.header-mobile-menu-container .mobile-logo svg.mobile-scroll {
    opacity: 1;
}

.mobile-scroll-up.header-mobile-menu-container .mobile-logo svg.mobile-default {
    opacity: 0;
}

.mobile-footer-graphics-container .graphic-one,
.mobile-footer-graphics-container .graphic-two {
    display: none;
}

.latest-works-main-container .owl-dots {
    padding: 0 120px 0 0;  
}

.latest-works-main-container .latest-work-filter .indicator-container,
.latest-works-main-container .owl-dots {
    max-width: 79vw;
}

.latest-works-main-container .latest-work-filter .end-slide-number-indicator {
    right: 84px;
}

.latest-works-main-container .owl-dots button {
    right: 311px;
}

.header-main-container {
    padding: 8px 0 8px 0;
}

.header-main-container .logo svg.mobile {
    max-width: 52px;
    position: absolute;
    left: 24px;
    opacity: 0;
}

.header-main-container.mobile-scroll .logo .default {
    opacity: 0;
}

.header-main-container.mobile-scroll .logo .mobile {
    opacity: 1;
}

.header-main-container .logo svg {
    max-width: 52px;
}

.global-menu .footer.header-social-main-container ul {
    text-align: left;
}

.hamburger {
    transform: scale(0.75);
}

.mobile-menu-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1000;
	display: none;
    background: black;
}

.mobile-menu-container .mobile-menu-nav-container {
    position: relative;
    top: 120px;
    padding: 0 30px;
}

.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu-inner-page,
.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu {
	width: 100%;
	max-width: 260px;
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	left: -260px;
	opacity: 0;
	position: relative;	
}

.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu-inner-page.menu-open,
.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu.menu-open {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	left: 0;
	opacity: 1;
}

.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu-inner-page li a,
.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu li a {
	color: #fff;
    font-size: 30px;
    font-weight: 400;
    display: block;
    margin: 0 0 8px 0;
}

.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu-inner-page li.phone,
.mobile-menu-container .mobile-menu-nav-container ul#menu-main-menu li.phone {
	display: none;
}

.header-mobile-menu-container .contact {
	padding: 34px 0 0 0;
    width: 100%;
    max-width: 260px;
}

.header-mobile-menu-container .contact ul li a,
.header-mobile-menu-container .contact ul li p{
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    margin: 0 0 16px 0;
	display: block;
}

.header-mobile-menu-container .contact ul li a:hover {
	opacity: 0.8;
}

.header-mobile-menu-container .contact ul li a:after {
	content: "";
    width: 1px;
    height: 18px;
    background-color: #fff;
    display: inline-block;
    margin: 0 16px 0 6px;
    position: relative;
    top: 5px;
    float: left;
}

.header-mobile-menu-container .contact ul li.address a:after {
    display: none;
}

.header-mobile-menu-container .contact ul li a:before,
.header-mobile-menu-container .contact ul li p:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
}

.header-mobile-menu-container .contact ul li.phone a:before {
    font-size: 17px;
    content: '\f095';
    color: #fff;
    font-weight: 900;
    margin: 0 9px 0 0;
    position: relative;
    top: -1px;
    float: left;
    left: 0px;
}

.header-mobile-menu-container .contact ul li.address p:before {
	font-size: 18px;
    content: "\f3c5";
    color: #fff;
    font-weight: 900;
    margin: 0 30px 0 -48px;
    position: relative;
    top: 0px;
    float: left;
}

.header-mobile-menu-container .contact ul li.email a:before {
	font-size: 17px;
    content: "\f0e0";
    color: #fff;
    font-weight: 900;
    margin: 0 7px 0 1px;
    position: relative;
    top: 0px;
    float: left;
}

.header-mobile-menu-container .contact ul li p:after {
	content: "";
    width: 1px;
    height: 18px;
    background-color: #fff;
    display: inline-block;
    float: left;
    margin: 0 0 0 11px;
    position: absolute;
    top: 4px;
    left: 20px;
}

.header-mobile-menu-container .contact ul li p {
	position: relative;
    padding: 0 0 0 51px;	
}

.header-main-container.scroll #nav-icon span {
	background: #212a3d;
}

.mobile-menu-button {
    position: absolute;
    right: 15px;
    top: 52px;
}

#nav-icon {
    width: 18px;
    height: 19px;
    position: relative;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
	display: inline-block;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  left: 2px;
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 13px;
    left: 2px;
}

.header-mobile-menu-container .social-media ul li{
	display: inline-block;
}

.header-mobile-menu-container .social-media ul li {
	margin: 10px 14px 0 0;
}

.header-mobile-menu-container .social-media ul li a:hover {
	opacity: 0.8;
}

.header-mobile-menu-container .social-media ul li a:before {
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 brands";
    font-weight: 300;
    color: #fff;
	font-size: 24px;
}
	
.header-mobile-menu-container .social-media ul li.instagram a:before {
	content: "\f16d";
}

.header-mobile-menu-container .social-media ul li.facebook a:before {
	content: "\f082";
}

.header-mobile-menu-container .social-media ul li.linkedin a:before {
	content: "\f08c";
}

.header-main-container .logo svg {
    max-width: 140px;
    margin: 0 0 0 0;	
}

.header-main-container.scroll .mobile-menu-button {
    top: 34px;
}

.header-main-container.scroll .mobile-menu-button:before {
    color: #212a3d;
}

.header-main-container .mobile-menu-button,
.header-main-container.scroll .mobile-menu-button{
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-mobile-menu-container .social-media p,
.header-main-container .col-lg-9 {
    display: none;
} 

.header-main-container {
    z-index: 9999;
    background: #000;
    height: 91px;
}

.header-social-main-container ul {
    position: relative;
    top: 16px;
}

.header-social-main-container ul li {
    display: inline-block;
    margin: 0 12px 0 0;
}

.header-logo-menu-container .header-social-main-container {
    display: none;
}

.scroll-points#contact-us {
    margin: -30px 0 0 0;
    padding: 30px 0 0 0;
}

.scroll-points#our-work {
    margin: -150px 0 0 0;
    padding: 150px 0 0 0;
}

.scroll-points#our-services {
    margin: -135px 0 0 0;
    padding: 135px 0 0 0;
}

.scroll-points#our-clients {
    margin: -135px 0 0 0;
    padding: 135px 0 0 0;
}

.footer-main-container .graphics-container .graphic-two {
    top: 615px;
    max-width: 200px;
    right: 0;
}

.footer-main-container .graphics-container .graphic-one {
    max-width: 53px;
    bottom: -1540px;
    right: 300px;
    left: inherit;
    margin: 0;
    top: initial;
}

.services-main-container .graphic-one {
    max-width: 160px;
}

.services-main-container .graphic-two {
    right: 80px;
}

.testimonials-container .right-panel .graphic-two {
    right: 0;
}

.services-main-container .content-container ul li {
    padding: 0 10px;
}

.footer-main-container {
    padding: 30px 0 35px 0;
}

.clients-logo-main-container .content-container {
    padding: 40px 0 0 0;
}

.cta-one-main-container .right-panel .content {
    padding: 0 54px 0 0;
}

.cta-one-main-container .right-panel .content img {
    max-width: 100%;
    margin: 0;
}

.cta-one-main-container .left-panel .content {
    padding: 112px 0px 0 30px;
}

.testimonials-main-container .container {
    padding: 0 54px;
}

.latest-work-filter .owl-dot {
    right: 414px;
}

.latest-work-filter .end-slide-number-indicator {
    right: 195px;
}

.home-about-main-container .left-panel .content {
    padding: 0 70px 0 30px;
}

.home-about-main-container .right-panel .content {
    padding: 0 30px 0 6px;
}

.home-about-main-container .right-panel .content p {
    font-size: 20px;
    line-height: 40px;
}

.home-about-main-container {
    padding: 38px 0 40px 0;
}

.latest-works-main-container {
    padding: 0px 0 50px 0;
    margin: -20px 0 0 0;
}

.latest-works-main-container > .title {
    margin: 0 0 50px 0;
}

.services-main-container {
    padding: 20px 0 40px 0;
}

.cta-one-main-container {
    padding: 20px 0 60px 0;
}

.main-title p {
    margin: 0 0 8px 0;
}

.testimonials-container .right-panel .content ul {
    max-width: 100%;
}

.testimonials-container {
    margin: 70px 0 0 0;
}

.testimonials-main-container .mobile.graphics-container .graphic-one {
    display: none;
}

.home-banner-container .content p {
    margin: 0 0 12px 4px;
}

.home-banner-container .content h1 {
    letter-spacing: 2.4px;
    line-height: 80px;
}

.home-banner-container .content {
    padding: 0;
    margin: 80px 0 0 0;
    text-align: center;
    max-width: 500px;
    max-width: 44.4vw;
}

#scene {
    top: 30px;
    width: 70vw;
}

.home-banner-main-container {
    height: 52vw;
}

.mobile-menu-button {
    display: none;
}

.container {
    padding: 0 24px;
    max-width: 100%;
}

.home-banner-container .content h1,
.main-title h2 {
    font-size: 80px;
}

.home-about-main-container .left-panel .content h2 {
    font-size: 40px;
    line-height: 56px;
}

.latest-works-main-container .latest-works-list li .image-container img {
    height: auto;
    width: 79vw !important;
}

.latest-works-main-container .owl-nav {
    max-width: 79vw;
    padding: 0;
}

.testimonials-container .left-panel .image-container {
    width: 100%;
    height: 455px;
    max-width: 440px;
    float: left;
    margin: 70px 0 0 -40px;
}

.testimonials-container .left-panel .image-container img {
    width: 275px;
    height: 275px;
    float: right;
    margin: 48px -10px 0 22px;
}

.testimonials-container .right-panel .content {
    padding: 45px 45px 70px 36%;
    margin: 14px 0 0 -42%;
    width: 142%;
}

.testimonials-list .owl-nav {
    margin: 34px 0 0 0 !important;
}

.testimonials-indicator-main-container {
    position: relative;
    right: 0;
    margin: 28px 20px 0 0;
    padding: 0;
    width: 194px;
    height: 10px;
    float: right;
}

.testimonials-main-container .latest-work-filter .end-slide-number-indicator {
    position: relative;
    float: right;
    right: 0;
}

.testimonials-indicator-main-container .latest-work-filter .owl-dot {
    right: auto;
    left: 0;
}

.testimonials-list .owl-dots {
    padding: 0 124px 0 0;
}

.testimonials-container .right-panel .content ul li p {
    margin: 0 0 0px 0;
}

}


/* 1200 to 1439 */
@media (min-width: 1200px) and (max-width: 1439px) {


.inner-page-main-container article .graphic-two {
    right: -40px;
}

.inner-page-main-container article .graphic-one {
    left: -240px;
}

.header-main-container .logo svg {
    width: auto;
}

.scroll-points#contact-us {
    margin: -20px 0 0 0;
    padding: 20px 0 0 0;
}

.scroll-points#our-work {
    margin: -150px 0 0 0;
    padding: 150px 0 0 0;
}

.scroll-points#our-services {
    margin: -135px 0 0 0;
    padding: 135px 0 0 0;
}

.scroll-points#our-clients {
    margin: -135px 0 0 0;
    padding: 135px 0 0 0;
}

.footer-main-container .graphics-container .graphic-one {
    max-width: 53px;
    bottom: -1540px;
    right: 300px;
    left: inherit;
    margin: 0;
    top: initial;
}

.testimonials-container .right-panel .content {
    padding: 65px 71px 70px 170px;
    width: 724px;
    margin: 14px 0 0 -200px;
}

.testimonials-container .left-panel .image-container img {
    margin: 40px 0 0 0;
    float: right;
}

.testimonials-container .left-panel .image-container {
    width: 100%;
    height: 572px;
    float: left;
    margin: 16px 0 0 -70px;
    max-width: 556px;
}

.cta-one-main-container .container {
    max-width: 100%;
}

.latest-works-main-container .owl-nav .owl-next {
    right: 92px;
}

.footer-main-container {
    padding: 30px 0 35px 0;
}

.clients-logo-main-container .content-container {
    padding: 40px 0 0 0;
}

.cta-one-main-container .right-panel .content {
    padding: 0 54px 0 0;
}

.cta-one-main-container .right-panel .content img {
    max-width: 397px;
    margin: 0;
}

.cta-one-main-container .left-panel .content {
    padding:112px 65px 0 50px;
}

.testimonials-main-container .container {
    padding: 0 76px;
}

.latest-work-filter .owl-dot {
    right: 414px;
}

.latest-works-main-container .owl-dots {
    padding: 0 226px 0 0;
}

.latest-work-filter .end-slide-number-indicator {
    right: 195px;
}

.home-about-main-container .left-panel .content {
    padding: 0 70px 0 52px;
}

.home-about-main-container .right-panel .content {
    padding:0 52px 0 6px;
}

.home-about-main-container .right-panel .content p {
    font-size: 20px;
    line-height: 40px;
}

.home-about-main-container {
    padding: 38px 0 40px 0;
}

.latest-works-main-container {
    padding: 0px 0 50px 0;
    margin: -20px 0 0 0;
}

.latest-works-main-container > .title {
    margin: 0 0 60px 0;
}

.services-main-container {
    padding: 20px 0 40px 0;
}

.cta-one-main-container {
    padding: 20px 0 60px 0;
}

.main-title p {
    margin: 0 0 8px 0;
}

.testimonials-container .right-panel .content ul {
    max-width: 100%;
}

.testimonials-container {
    margin: 70px 0 0 0;
}

#scene {
    width: 70vw;
    top: 15px;
}

.home-banner-main-container {
    height: 52vw;
}

.home-banner-container .content p {
    margin: 0px 0 12px -72px;
}

.home-banner-container .content h1 {
    letter-spacing: 2.88px;
    line-height: 96px;
    font-size: 96px;
}

.home-banner-container .content {
    padding: 0;
    margin: 80px 0 0 0;
    max-width: 540px;
    text-align: center;
    max-width: 45vw;
}

.container {
    padding: 0 36px;
    max-width: 100%;
}

.latest-works-main-container .latest-works-list li .image-container img {
    width: 936px;
}

.latest-works-main-container .owl-nav {
    padding: 0 24px 0 0;
}

.testimonials-list .owl-nav {
    margin: 34px 0 0 0 !important;
}

.testimonials-indicator-main-container {
    position: relative;
    right: 0;
    margin: 28px 20px 0 0;
    padding: 0;
    width: 194px;
    height: 10px;
    float: right;
}

.testimonials-main-container .latest-work-filter .end-slide-number-indicator {
    position: relative;
    float: right;
    right: 0;
}

.testimonials-indicator-main-container .latest-work-filter .owl-dot {
    right: auto;
    left: 0;
}

.testimonials-list .owl-dots {
    padding: 0 124px 0 0;
}

}


/* 1440 to 1919 */
@media (min-width: 1440px) and (max-width: 1919px) {

.footer-main-container .graphics-container .graphic-one {
    max-width: 53px;
    bottom: -1540px;
    right: 300px;
    left: inherit;
    margin: 0;
    top: initial;
}

.home-banner-container .content p {
    margin: 0 0 18px 54px;
}

.home-banner-container .content h1 {
    font-size: 120px;
}

.home-banner-container .content {
    padding: 0;
    margin: 80px 0 0 0;
    max-width: 650px;
}

#scene {
    top: 10px;
    width: 915px;
}

.home-banner-main-container {
    height: 670px;
}

}


/* 1200 above */
@media (min-width: 1200px) {


.mobile-footer-graphics-container .graphic-one,
.mobile-footer-graphics-container .graphic-two,
.header-mobile-menu-container .mobile-logo,
.graphic-one.mobile,
.graphic-two.mobile,
.footer-main-container .graphics-container .mobile.graphic-two,
.footer-main-container .graphics-container .mobile.graphic-one,
.header-main-container .logo svg.mobile,
.testimonials-main-container .mobile.graphics-container .graphic-one,
.hamburger,
.mobile-menu-button {
    display: none;
} 

.clients-logo-main-container .content-container ul {
    margin: 0;
}

}


/* 1440 above */
@media (min-width: 1440px) {}


/* Standard */

/* iPhone 5 portrait  */
@media (min-width: 320px) and (max-width: 374px) {

.contact-form-container .cf-col-one.textarea .fl_label {
    width: 220px;
}

}


/* iPhone 6 portrait */
@media (min-width: 375px) and (max-width: 383px) {

.contact-form-container .cf-col-one.textarea .fl_label {
    width: 220px;
}

}


/* Android (Nexus 4) portrait */
@media (min-width: 384px) and (max-width: 413px) {

.contact-form-container .cf-col-one.textarea .fl_label {
    width: 300px;
}

}


/* iPhone 6 Plump portrait */
@media (min-width: 414px) and (max-width: 576px) {



}


/* iPhone 5 landscape */
@media (min-width: 577px) and (max-width: 599px) {}


/* Android (Nexus 4) landscape */
@media (min-width: 600px) and (max-width: 666px) {}


/* iPhone 6 landscape */
@media (min-width: 667px) and (max-width: 735px) {}


/* iPhone 6 Plump landscape */
@media (min-width: 736px) and (max-width: 767px) {}


/* 768 to 991 */
@media (min-width: 768px) and (max-width: 991px) {}


/* 992 to 1024 */
@media (min-width: 992px) and (max-width: 1024px) {}


/* 1025 to 1199 */
@media (min-width: 1025px) and (max-width: 1199px) {}


/* Desktop */
@media (min-width: 1025px) {}

/* Responsive End */


.wpcf7-form p {
    margin-bottom:0 !important;
}