

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    word-wrap: break-word;
}

aside,
footer,
header,
main,
nav {
    display: block;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

img {
    border: 0;
}

button,
input,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button {
    text-transform: none;
}

button,
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

textarea {
    overflow: auto;
}


/*--------------------------------------------------------------
2. Typography
--------------------------------------------------------------*/

body,
button,
input,
textarea {
    color: #727272;
    font-size: 14px;
    line-height: 1.75;
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 29px;
}

h3 {
    font-size: 20px;
}

h5 {
    font-size: 16px;
}

h1,
h2,
h3,
h5 {
    margin: 0 0 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #272727;
    line-height: 1.5;
}

p {
    margin: 0 0 15px 0;
}

i {
    font-style: italic;
}


/*--------------------------------------------------------------
3. Elements
--------------------------------------------------------------*/

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

ul {
    margin: 0 0 30px 0;
    padding: 0 0 0 20px;
}

ul {
    list-style: none;
    padding-left: 0;
}

li>ul {
    margin-bottom: 0;
    margin-left: 15px;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
    vertical-align: middle;
}


/* Text meant only for screen readers. */


/*--------------------------------------------------------------
4. Forms
--------------------------------------------------------------*/

input[type="submit"],
button {
    background: var(--main-theme-color);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    padding: 10px 35px;
    border: none;
    height: auto;
    width: auto;
    cursor: pointer;
    display: inline-block;
}

input[type="submit"]:hover,
button:hover,
input[type="submit"]:focus,
button:focus,
input[type="submit"]:active,
button:active {
    background-color: #222;
    color: #fff;
    outline: none;
}

input[type="text"],
textarea {
    color: #272727;
    border: 1px solid #e7e7e7;
    padding: 7px 10px 7px 15px;
}

input[type="text"]:focus,
textarea:focus {
    outline: none;
}

textarea {
    width: 100%;
}


/*--------------------------------------------------------------
4.1. Search Forms
--------------------------------------------------------------*/

form.search-form {
    position: relative;
}

input.search-field {
    width: 100%;
    border: 2px solid #f7f7f7;
    border-radius: 50px;
    padding: 12px 25px;
}

.search-submit {
    width: 100%;
    margin-top: 15px;
}

.searchform {
    width: 430px;
    margin: 0 auto;
    max-width: 100%;
}

input.search-submit,
input.search-submit:visited {
    position: absolute;
    top: 0;
    margin: 0;
    right: 0;
    font-size: 13px;
    padding: 16px 20px;
    border-radius: 0 50px 50px 0;
}


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

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #272727;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #272727;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #272727;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #272727;
}

#footer-widgets ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

#footer-widgets ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

#footer-widgets :-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

#footer-widgets :-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

.text-alignleft {
    text-align: left;
}


/*--------------------------------------------------------------
5. Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 50px;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 50px;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.text-alignleft {
    text-align: left;
}

.text-alignright {
    text-align: right;
}

.text-aligncenter {
    text-align: center;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}


/*--------------------------------------------------------------
7. Media
--------------------------------------------------------------*/


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


/**
* Print
*/

@media print {
    form,
    button,
    input,
    textarea,
    .main-navigation {
        display: none;
    }
}


/**
* Media Queries
*/


/**
* Does the same thing as <meta name="viewport" content="width=device-width">,
* but in the future W3C standard way. -ms- prefix is required for IE10+ to
* render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
* the meta tag. See https://core.trac.wordpress.org/ticket/25888.
*/

@-ms-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}


/*--------------------------------------------------------------
7.1. Captions
--------------------------------------------------------------*/


/*--------------------------------------------------------------
8. Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
20. Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
9. Custom Button
--------------------------------------------------------------*/

.custom-button,
.custom-button:visited {
    transition: all 0.3s ease 0s;
    background: var(--main-theme-color);
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    padding: 10px 35px;
    border: none;
    height: auto;
    width: auto;
    cursor: pointer;
    display: inline-block;
    min-width: 135px;
    text-align: center;
    margin: 0;
    position: relative;
    font-weight: 600;
    vertical-align: middle;
}

a.custom-button:before {
    content: "\f0a9";
    font-family: "FontAwesome";
    margin-right: 13px;
    font-weight: 900;
}


/*Circle button style*/

a.scrollup:visited,
.button-curved {
    border-radius: 50px;
}

.button-circle {
    border-radius: 100%;
}

.custom-button:hover,
button:focus,
.custom-button:focus,
.custom-button:active {
    background-color: #222;
    color: #fff;
    box-shadow: 0px 2px 7px 0px rgba(162, 160, 160, 0.54);
}

.overlay-enabled .custom-button:hover,
.overlay-enabled button:focus,
.overlay-enabled .custom-button:focus,
.overlay-enabled .custom-button:active {
    background-color: #fff;
    color: #222;
    box-shadow: 0px 2px 7px 0px rgba(162, 160, 160, 0.54);
}


/*custom-secondary*/

a.more-link {
    border: 2px solid;
    padding: 9px 29px;
    font-size: 13px;
    font-weight: normal;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 15px;
}

.more-link:after {
    content: "\f054";
    font-family: 'FontAwesome';
    padding-left: 6px;
    font-size: 11px;
    font-weight: 900;
}

a.more-link:hover::after {
    content: "\f00c";
}


/*--------------------------------------------------------------
10. Navigation
--------------------------------------------------------------*/


/*--------------------------------------------------------------
10.1. Links
--------------------------------------------------------------*/

a {
    color: #323232;
    text-decoration: inherit;
}

a:visited {
    color: #323232;
}

a:focus {
    outline: none;
}

a:hover,
a:focus,
a:active {
    color: var(--main-theme-color);
}

a:hover,
a:active {
    outline: 0;
}


/*--------------------------------------------------------------
9.2. Menus
--------------------------------------------------------------*/

.main-navigation ul {
    display: block;
    margin: 0;
    padding: 0;
}

.main-navigation {
    float: left;
}

#main-navigation {
    display: table;
    float: right;
    padding: 0;
}

.main-navigation ul ul.sub-menu {
    padding: 10px 25px;
    background-color: #fff;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    top: 150%;
    left: 0;
    -webkit-box-shadow: 0 0px 20px rgba(166, 166, 166, 0.25);
    -moz-box-shadow: 0 0px 20px rgba(166, 166, 166, 0.25);
    box-shadow: 0 0px 20px rgba(166, 166, 166, 0.25);
    width: 200px;
    position: absolute;
    z-index: 999;
}

.main-navigation ul>li:hover>ul.sub-menu {
    opacity: 1;
    left: 0;
    z-index: 9999;
    visibility: visible;
    top: 130%
}

.main-navigation li {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

.main-navigation ul>li:hover>ul {
    opacity: 1;
    left: 0;
    z-index: 9999;
}

.main-navigation li li {
    float: none;
    display: block;
}

.main-navigation ul li li:last-child>a {
    border: none;
}

.main-navigation ul li a {
    color: #222;
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 0;
    position: relative;
    z-index: 99;
    text-transform: uppercase;
    margin: 0 20px 0 0;
    font-family: 'Montserrat', sans-serif;
}

.main-navigation ul ul a {
    border-bottom: 1px solid #f5f2f2;
    border-left: medium none;
    border-right: medium none;
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.18) inset;
    transition: padding 0.2s ease-in-out 0s;
    height: auto;
    padding: 10px 0;
    text-align: left;
    width: 100%;
    margin: 0;
    color: #666666;
    font-size: 14px;
    text-transform: capitalize;
}

.main-navigation ul li.menu-item-has-children>a {
    padding-right: 30px;
}

.main-navigation li>a:hover,
.main-navigation li:hover>a {
    color: var(--main-theme-color);
}

.main-navigation li li>a:hover,
.main-navigation li li:hover>a {
    color: var(--main-theme-color);
}

.main-navigation li li>a:hover,
.main-navigation li li:hover>a {
    padding-left: 5px;
}

#main-navigation ul ul::after {
    content: "";
    display: block;
    position: absolute;
    top: -6px;
    border-left: 1px solid #f1f0f0;
    border-top: 1px solid #f1f0f0;
    z-index: 9999;
    left: 20px;
    transform: rotate(45deg);
    background: #fff;
    height: 12px;
    width: 12px;
}

.main-navigation ul li.menu-item-has-children>a::before {
    content: "\f107";
    font-family: 'FontAwesome';
    margin-left: 10px;
    margin-right: 0;
    position: absolute;
    right: 5px;
    top: 16px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    font-size: 12px;
    font-weight: 900;
}

.main-navigation ul ul a:before {
    content: "\f105";
    font-family: 'FontAwesome';
    position: absolute;
    opacity: 0;
    transition: all 0.2s ease-in-out 0s;
    font-weight: 900;
    right:5px;
}

.main-navigation ul ul a:hover:before {
    opacity: 1;
}

.main-navigation ul li.menu-item-has-children a {
    padding-right: 20px;
}

#mobile-trigger {
    display: none;
}

#mob-menu {
    display: none;
}

.main-navigation li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: var(--main-theme-color);
    -webkit-transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -o-transition: all 0.33s ease-out;
    -ms-transition: all 0.33s ease-out;
    transition: all 0.33s ease-out;
    opacity: 0;
}

.main-navigation li li a:after {
    display: none;
}

.main-navigation li:hover a:after {
    opacity: 1;
    width: 100%;
}


/*Mega Menu*/

.site-header .container {
    position: relative;
}


/*Page/Post Navigation*/


/*--------------------------------------------------------------
11. Header Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
11.1. Top Header
--------------------------------------------------------------*/

#tophead {
    background: #222;
    padding: 3px 0;
}

#tophead .social-links {
    clear: inherit;
    float: left;
}


/*multi-language*/

.multi-language {
    float: right;
    position: relative;
    padding-top: 12px;
}

.multi-language-sub {
    padding: 10px 20px;
    background-color: #ffffff;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    top: 130%;
    right: 0;
    -webkit-box-shadow: 0 0px 20px rgba(166, 166, 166, 0.25);
    -moz-box-shadow: 0 0px 20px rgba(166, 166, 166, 0.25);
    box-shadow: 0 0px 20px rgba(166, 166, 166, 0.25);
    width: 170px;
    position: absolute;
    z-index: 9999;
    margin: 0;
}

.multi-language:hover .multi-language-sub {
    visibility: visible;
    opacity: 1;
    top: 110%;
    right: 0;
}

.multi-language-sub li {
    display: block;
    width: 100%;
    float: none;
    border: none;
    margin: 6px 0;
    border-top: 1px solid #f1f1f1;
}

.multi-language-sub li:first-child {
    border: none;
}


/*quick contact*/

#quick-contact>ul {
    margin: 0;
    padding: 0;
}

#quick-contact a:hover {
    text-decoration: underline;
}

#quick-contact li {
    clear: inherit;
    float: left;
    font-size: 14px;
    line-height: 0.8;
    list-style: outside none none;
    text-align: left;
    font-weight: 400;
    margin: 0 0 0 35px;
    padding: 0;
    color: #666;
}

#tophead .social-links li a {
    border: none;
    margin: 0;
    width: 45px;
    height: initial;
    padding: 6px 0;
}

#tophead .social-links li {
    display: block;
    margin-right: 0;
    margin-top: 0;
    margin-left: 0px;
    float: right;
}

#tophead .social-links li a::before {
    color: #cecece;
    line-height: 2.5;
    font-size: 13px;
    font-weight: 100;
    text-shadow: none;
}

#tophead .social-links li a:hover::before {
    color: #fff;
}

#header-search {
    position: relative;
    float: right;
    margin-left: 15px;
}

.search-box-wrap {
    background: #ffffff;
    display: none;
    position: absolute;
    right: 0;
    top: 64px;
    padding: 15px 20px 15px;
    z-index: 9991;
    box-shadow: 0 0 6px #00000036;
}

#header-search a.search-icon {
    padding: 16px 0 0;
    display: block;
    font-size: 13px;
    color: #fff;
}

.header-social-wrapper .social-links ul li a::before {
    color: #fff;
}


/*--------------------------------------------------------------
11.1. Header
--------------------------------------------------------------*/

#masthead {
    clear: both;
    width: 100%;
    z-index: 999;
    position: relative;
    transition: all 0.2s ease-in-out 0s;
    padding: 25px 0;
    background: #fff;
}

.header-social-wrapper {
    float: right;
    margin-top: 2px;
}

#site-identity {
    float: left;
}

.site-branding {
    margin: 0;
    text-align: center;
    margin-bottom: 0px;
}

.site-title {
    font-size: 27px;
    font-weight: 700;
    margin: 0;
}

.site-title a,
.site-title a:visited {
    color: #191d3d;
}

.site-title a:hover,
.site-title a:focus,
.site-title a:active {
    color: var(--main-theme-color);
}


/*--------------------------------------------------------------
11.2.1 Header v1
--------------------------------------------------------------*/

#quick-contact {
    float: left;
    margin-top: 0;
}

#quick-contact li {
    clear: inherit;
    float: left;
    font-size: 14px;
    line-height: 0.8;
    list-style: outside none none;
    text-align: left;
    font-weight: 400;
    margin-left: 12px;
    padding: 12px 15px 12px 0px;
    color: #cecece;
}

#quick-contact li:first-child {
    margin-left: 0;
}

#quick-contact li i {
    color: #ffffff;
    display: inline-block;
    font-size: 11px;
    margin-right: 5px;
    border: 2px solid #757575;
    height: 23px;
    width: 24px;
    text-align: center;
    padding: 4px;
    border-radius: 100%;
}

#quick-contact a {
    display: inline-block;
    color: #cecece;
}

#header-search a.search-icon {
    color: #222;
    padding: 16px 0 0 10px;
}

.header-v1 .main-navigation li a:after {
    display: none;
}


/*--------------------------------------------------------------
11.2.2. Header 2
--------------------------------------------------------------*/


/*--------------------------------------------------------------
11.2.2 Header v3
--------------------------------------------------------------*/

.sticky-enabled {
    -webkit-transition: all 0.5s ease;
    -moz-transition: position 10s;
    -ms-transition: position 10s;
    -o-transition: position 10s;
    transition: all 0.5s ease;
}


/*--------------------------------------------------------------
11.2.3. Home 4
--------------------------------------------------------------*/


/*--------------------------------------------------------------
11.2.3. Home 4
--------------------------------------------------------------*/


/*--------------------------------------------------------------
12. Custom Header
--------------------------------------------------------------*/


/*--------------------------------------------------------------
13. Content
--------------------------------------------------------------*/

#content {
    padding: 70px 0;
    background: #fff;
}

#primary {
    float: left;
    padding-left: 25px;
    padding-right: 25px;
    width: 70%;
}


/*--------------------------------------------------------------
13.1. Custom Gird
--------------------------------------------------------------*/

.container {
    width: 100%;
    padding: 0;
}

.container {
    width: 1230px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
    max-width: 100%;
}

.container::after,
.inner-wrapper::after {
    clear: both;
    content: "";
    display: table;
}

.inner-wrapper {
    margin-left: -25px;
    margin-right: -25px
}

.inner-wrapper:before,
.inner-wrapper:after {
    content: " ";
    display: table
}

.inner-wrapper:after {
    clear: both
}

.col-grid-3,
.col-grid-4,
.col-grid-5,
.col-grid-6,
.col-grid-7,
.col-grid-8 {
    padding-left: 25px;
    padding-right: 25px;
    float: left;
    margin: 25px 0 25px 0;
    transition: all 0.4s ease-in-out 0s;
}

.col-grid-3 {
    width: 25%
}

.col-grid-4 {
    width: 33.33333%
}

.col-grid-5 {
    width: 41.66667%
}

.col-grid-6 {
    width: 50%
}

.col-grid-7 {
    width: 58.33333%
}

.col-grid-8 {
    width: 66.66667%
}

::-moz-selection {
    color: #fff;
    background: var(--main-theme-color);
}

::selection {
    color: #fff;
    background: var(--main-theme-color);
}


/*--------------------------------------------------------------
13.2. Post And Single Post Meta
--------------------------------------------------------------*/


/* blog grid layout*/


/*--------------------------------------------------------------
13.3. Comments
--------------------------------------------------------------*/


/*--------------------------------------------------------------
13.4. Blog
--------------------------------------------------------------*/


/*--------------------------------------------------------------
13.5. Sidebar
--------------------------------------------------------------*/


/*calendar section*/


/*  layout sidebar*/

#content.global-layout-no-sidebar,
.global-layout-no-sidebar>.container {
    width: 100%;
    padding: 0;
}

.global-layout-no-sidebar #primary {
    width: 100%;
}

#content.global-layout-no-sidebar>.container>.inner-wrapper {
    margin: 0;
}

.global-layout-no-sidebar #primary {
    width: 100%;
    padding: 0;
    margin: 0;
}


/* Global layout sidebar*/


/*--------------------------------------------------------------
14. Widget
--------------------------------------------------------------*/

.section {
    margin: 0 0 15px;
}


/* Make sure select elements fit in widget. */


/*--------------------------------------------------------------
15. Footer
--------------------------------------------------------------*/

#colophon-top {
    padding: 15px 0 0;
    background: #161616;
}

#colophon-top .social-links {
    float: right;
}

#colophon {
    background-color: #161616;
    clear: both;
    font-size: 14px;
    text-align: center;
    padding: 10px 0 25px;
}

#colophon p {
    margin: 0;
}

.site-info {
    float: right;
}

.copyright {
    float: left;
}


/*--------------------------------------------------------------
16. Footer Widgets
--------------------------------------------------------------*/

#footer-widgets {
    background-color: #101010;
    overflow: hidden;
    padding: 60px 0;
    color: #ccc;
    font-size: 16px;
    position: relative;
    z-index: 9;
    background-attachment: fixed;
}

#footer-widgets ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer-widgets ul li {
    font-size: 15px;
    padding: 0px 15px 5px 20px;
    position: relative;
}

#footer-widgets ul li::before {
    color: #727272;
    content: "\f105";
    display: inline-block;
    font-family: 'FontAwesome';
    font-size: 13px;
    left: 3px;
    position: absolute;
    top: 2px;
    font-weight: 900;
}

#footer-widgets .footer-widget-area {
    float: left;
    padding: 0 25px;
    width: 25%;
    font-size: 14px;
    color: #727272;
}

a.footer-logo {
    margin-top: 30px;
    display: block;
}

#footer-widgets a,
#footer-widgets a:visited {
    color: #727272;
}

#footer-widgets a:hover,
#footer-widgets a:active,
#footer-widgets a:focus {
    color: #ffffff;
}

#footer-widgets .footer-active-4 {
    width: 25%;
}

#footer-widgets .widget-title {
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    font-size: 22px;
}

#colophon-top .social-links li a {
    border: 2px solid transparent;
}


/*Footer Navigation*/

#footer-navigation {
    float: left;
    margin-top: 7px;
}

#footer-navigation li {
    display: inline-block;
    list-style: outside none none;
}

#footer-navigation li a {
    display: block;
    margin-right: 15px;
    text-transform: capitalize;
    color: #727272;
    padding: 5px 0;
}

#footer-navigation li a:hover {
    color: var(--main-theme-color);
}

#footer-navigation ul {
    margin: 0;
    padding: 0;
}

.quick-contact-widget {
    padding: 75px 0;
    color: #fff;
}


/*Quick Contact Widget*/

.quick-contact-widget span {
    display: block;
    font-size: 15px;
    clear: both;
    color: #fff;
}

.quick-contact-widget .quick-contact-item {
    float: left;
    width: 33.33%;
    text-align: center;
    padding: 15px 0;
}

.quick-contact-widget i {
    font-size: 19px;
    border: 2px solid #ddd;
    display: inline-block;
    text-align: center;
    padding: 15px;
    height: 55px;
    width: 55px;
    margin-bottom: 10px;
    border-radius: 100%;
}

.inner-quick-contact-wrapper {
    text-align: left;
}


/*--------------------------------------------------------------
17. Scrollup Style
--------------------------------------------------------------*/

#btn-scrollup {
    display: none;
}

a.scrollup,
a.scrollup:visited {
    background-color: var(--main-theme-color);
    bottom: 50px;
    color: #ffffff;
    float: right;
    line-height: 1.2;
    padding: 12px 17px;
    position: fixed;
    right: 32px;
    text-align: center;
    z-index: 999;
}

a.scrollup:hover,
a.scrollup:focus,
a.scrollup:active {
    background-color: #333;
    color: #ffffff;
}

.scrollup i {
    font-size: 20px;
}


/*--------------------------------------------------------------
18. Front page sections
--------------------------------------------------------------*/

#content {
    background: #fff;
}

#content::after,
#content::before {
    content: "";
    display: table;
    clear: both;
}

#content .section {
    margin-bottom: 0;
    padding: 40px 0;
    clear: both;
}

#content .section.no-padding-btm {
    padding-bottom: 0;
}

#content .no-padding {
    padding: 0;
}

#content .no-margin {
    margin: 0;
}

#content .section-title {
    margin-bottom: 10px;
    position: relative;
    font-size: 35px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

#content .section-title-wrap {
    text-align: center;
    width: 100%;
    display: table;
}

#content .section-title-wrap span.divider {
    height: 3px;
    width: 80px;
    margin: 0 0 15px;
    border-bottom: 2px solid var(--main-theme-color);
    position: relative;
    display: inline-block;
}

#content .section-title-wrap span.divider:before {
    width: 45px;
    height: 2px;
    margin-left: 17px;
    content: "";
    display: block;
    background: var(--main-theme-color);
    margin: 5px auto;
}

#content .section-title-wrap.text-alignleft span.divider:before {
    display: none;
}

#content .section-title-wrap.text-alignleft span.divider {
    margin: 0 0 25px;
}

#content .section-title-wrap.text-alignleft .section-title {
    margin-bottom: 20px;
}

#content .section-subtitle {
    font-size: 16px;
    margin: 0 auto 40px;
    max-width: 700px;
    text-align: center;
}

#content .section-top-subtitle {
    font-style: italic;
    letter-spacing: 1.5px;
    font-weight: 5;
    font-size: 14px;
    margin-bottom: 5px;
}

#content .section-title-wrap.text-alignleft {
    text-align: left;
}

#content .section-counter p.section-subtitle {
    margin: 0!important;
}

#content .section-title-wrap.text-alignleft .section-subtitle {
    margin: 0 0 40px;
    text-align: left;
}

#content .section.lite-background {
    background-color: #f5f5f5;
}

#content .background-img {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 99;
}

#content .background-img.overlay-enabled:after {
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.71);
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    z-index: -1;
    left: 0;
}

#content .section.background-img .section-title,
#content .section.background-img .section-subtitle,
#content .section.background-img.overlay-enabled p {
    color: #fff;
}

.box-shadow-block {
    -webkit-box-shadow: 0px 0px 32px 0px rgba(122, 122, 122, 0.1);
    -moz-box-shadow: 0px 0px 32px 0px rgba(122, 122, 122, 0.1);
    -ms-box-shadow: 0px 0px 32px 0px rgba(122, 122, 122, 0.1);
    -o-box-shadow: 0px 0px 32px 0px rgba(122, 122, 122, 0.1);
    box-shadow: 0px 0px 32px 0px rgba(122, 122, 122, 0.1);
    -webkit-transition: box-shadow 0.3s, transform 0.3s;
    -moz-transition: box-shadow 0.3s, transform 0.3s;
    -ms-transition: box-shadow 0.3s, transform 0.3s;
    -o-transition: box-shadow 0.3s, transform 0.3s;
    transition: box-shadow 0.3s, transform 0.3s;
    padding: 0;
    background: #fff;
    position: relative;
}

.box-shadow-block:hover,
.box-shadow-block:focus,
.box-shadow-block:active {
    -webkit-box-shadow: 1px 4px 20px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 4px 20px -2px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
}

.more-wrapper {
    display: block;
    text-align: center;
    margin-top: 40px;
    clear: both;
    float: left;
    width: 100%;
}


/*--------------------------------------------------------------
12. Featured slider
--------------------------------------------------------------*/

#content .section.section-featured-slider {
    padding: 0;
}

.section-featured-slider {
    overflow: hidden;
    position: relative;
    z-index: 99;
}

.section-featured-slider img {
    width: 100%;
    vertical-align: middle;
}


/*slider pager box*/


/*Slider cycle next / previous*/


/*Featured Banner */


/*--------------------------------------------------------------
18.2. News And Events
--------------------------------------------------------------*/


/*cycle next / previous*/

#content .section.section-featured-slider {
    padding: 0;
}

.section-featured-slider {
    overflow: hidden;
    position: relative;
    z-index: 99;
}

.section-featured-slider .featrued-slider {
    color: #686868;
    clear: both;
    position: relative;
    text-align: center;
    z-index: -1;
}

.section-featured-slider .overlay-enabled article::after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 888;
    background-color: #000;
    opacity: 0.7;
}

.section-featured-slider img {
    width: 100%;
    vertical-align: middle;
}

.section-featured-slider .cycle-slide {
    width: 100%;
}

.section-featured-slider article.first {
    display: block;
}

.section-featured-slider article {
    display: none;
}

.section-featured-slider .cycle-slideshow {
    margin-bottom: 0;
    padding: 0;
}

.section-featured-slider .cycle-caption {
    bottom: 26%;
    height: auto;
    left: 10%;
    max-width: 100%;
    padding: 0;
    position: absolute;
    transition: all 1s ease-in-out 0s;
    width: 80%;
    z-index: 999;
}

.section-featured-slider .cycle-caption.text-alignleft {
    left: 15%;
}

.section-featured-slider .cycle-caption.text-alignright {
    right: 15%;
}

.section-featured-slider h3 {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 100%;
    display: inline-block;
}

.section-featured-slider h4 {
    color: #fff;
}

.section-featured-slider p {
    font-size: 19px;
    color: #e2e1e1;
    font-weight: 400;
    width: 730px;
    max-width: 100%;
    display: inline-block;
}

.section-featured-slider h3 a {
    color: #fff;
    display: inline-block;
}

.section-featured-slider .slider-buttons {
    margin-top: 30px;
}

.section-featured-slider .slider-buttons .custom-button {
    padding: 15px 40px;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.5;
}


/*slider pager box*/

.section-featured-slider .cycle-pager span {
    background-color: #fff;
    cursor: pointer;
    display: inline-block;
    float: none;
    height: 12px;
    margin: 3px 5px;
    width: 12px;
    z-index: 99;
    border-radius: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.section-featured-slider .cycle-pager {
    bottom: 5%;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 999;
}

.section-featured-slider .cycle-pager .cycle-pager-active {
    background-color: var(--main-theme-color);
    border-color: #fff;
    height: 30px;
}


/*Slider cycle next / previous*/

.section-featured-slider .cycle-prev,
.section-featured-slider .cycle-next {
    bottom: 50%;
    color: #ffffff;
    cursor: pointer;
    display: block;
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    text-align: center;
    width: 55px;
    z-index: 999;
    height: 55px;
    padding: 5px;
    z-index: 999;
    line-height: 2.2;
    background: rgba(14, 14, 14, 0.26);
    transition: all 0.2s ease-in-out 0s;
    opacity: 0;
}

.section-featured-slider:hover .cycle-prev,
.section-featured-slider:hover .cycle-next {
    opacity: 1;
    bottom: 45%;
}

.section-featured-slider .cycle-prev {
    left: 2%;
}

.section-featured-slider .cycle-next {
    right: 2%;
}

.section-featured-slider .cycle-prev:hover,
.section-featured-slider .cycle-next:hover {
    background-color: var(--main-theme-color);
    border-color: var(--main-theme-color);
    color: #fff;
}


/*Featured Banner */

.section-featured-banner {
    position: relative;
}

.section-featured-banner .banner-caption {
    bottom: 28%;
    height: auto;
    left: 15%;
    max-width: 100%;
    padding: 0;
    position: absolute;
    transition: all 1s ease-in-out 0s;
    width: 70%;
    z-index: 99;
}

.section-featured-banner .featured-banner>a::after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
    background-color: var(--main-theme-color);
    opacity: 0.9;
}

.section-featured-banner h3 {
    font-size: 50px;
}

.section-featured-banner h3 a {
    color: #fff;
}

.section-featured-banner p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 45px;
}


/*Recent Events*/


/*--------------------------------------------------------------
18.3. Post Gird
--------------------------------------------------------------*/

.section-latest-posts .latest-posts-thumb img {
    margin: 0;
    vertical-align: middle;
    -webkit-transition: -webkit-transform 1s ease;
    -moz-transition: -moz-transform 1s ease;
    transition: transform 1s ease;
}

.section-latest-posts .latest-posts-thumb:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
}

.section-latest-posts .latest-posts-thumb {
    overflow: hidden;
    position: relative;
}

.section-latest-posts .latest-posts-title {
    margin-bottom: 10px;
}

.section-latest-posts .latest-posts-thumb a::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: block;
    background-color: rgba(34, 34, 34, 0.2);
    -webkit-transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    transition: all 900ms ease;
}

.section-latest-posts .latest-posts-text-content {
    background: #fff;
    overflow: hidden;
    padding: 50px;
    position: relative;
}


/*--------------------------------------------------------------
18.4. Featured Page
--------------------------------------------------------------*/

.section-featured-page-grid .featured-page-grid-thumb img {
    margin: 0;
    vertical-align: middle;
    -webkit-transition: -webkit-transform 1s ease;
    -moz-transition: -moz-transform 1s ease;
    transition: transform 1s ease;
}

.section-featured-page-grid .featured-page-grid-thumb:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
}

.section-featured-page-grid .featured-page-grid-thumb {
    overflow: hidden;
    position: relative;
}

.section-featured-page-grid .featured-page-grid-thumb a::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: block;
    background-color: rgba(34, 34, 34, 0.2);
    -webkit-transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    transition: all 900ms ease;
}

.section-featured-page-grid .featured-page-grid-text-content {
    background: #fff;
    overflow: hidden;
    padding: 50px;
    text-align: center;
    position: relative;
}


/*--------------------------------------------------------------
18.5. Call to action
--------------------------------------------------------------*/

.section-call-to-action {
    position: relative;
    text-align: center;
    position: relative;
}

#content .section-call-to-action p.section-subtitle {
    margin-bottom: 35px;
}

.section-call-to-action .call-to-action-description {
    margin: 0 auto 30px;
}

.section-call-to-action .section-title:after,
.section-call-to-action .section-title:before {
    display: none;
}


/*CTA-fluid */

.section-call-to-action.cta-fluid .call-to-action-description {
    margin: 0;
    max-width: inherit;
}

#content .section-call-to-action.cta-fluid .section-title {
    margin-bottom: 15px;
}


/*CTA-boxed */


/*--------------------------------------------------------------
18.5. Services
--------------------------------------------------------------*/

.section-services .service-block-inner {
    position: relative;
    z-index: 9;
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.section-services .service-item-title {
    margin-bottom: 10px;
}

.section-services .service-block-item a.service-icon {
    color: var(--main-theme-color);
    line-height: 0.6;
    transition: transform 0.2s ease 0s, opacity 0.2s ease 0s;
    font-size: 37px;
    display: block;
    text-align: center;
    border-radius: 100%;
    margin: 0 auto 25px;
    position: relative;
}


/*layout 3*/


/*layout 2*/

.service-layout-4 .service-block-item {
    padding: 0;
    margin: 0;
}

.service-layout-4 .service-block-inner {
    text-align: left;
    padding: 90px 80px;
}

.service-layout-4 .service-block-inner span.count {
    font-size: 45px;
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
}

.service-layout-4 .service-item-title {
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 600;
}

.section .black-bg {
    background: #222;
    color: #fff;
}

.section .red-bg {
    background: var(--main-theme-color);
    color: #fff;
}

.section .green-bg {
    background: #23c495;
    color: #fff;
}

.section .black-bg a,
.section .green-bg a,
.section .red-bg a {
    color: #fff;
}


/*Featured pages*/

.featured-page-section .feature-thumb a img {
    margin: 0;
    vertical-align: middle;
    -webkit-transition: -webkit-transform 1s ease;
    -moz-transition: -moz-transform 1s ease;
    transition: transform 1s ease;
}

.featured-page-section .feature-thumb a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
}

.featured-page-section .feature-thumb {
    overflow: hidden;
    position: relative;
}

.featured-page-section h3.feature-title {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    visibility: hidden;
    font-size: 22px;
    font-weight: 700;
    background: #fff;
    left: 5%;
    right: 5%;
    width: 90%;
    bottom: 0;
    padding: 12px;
    margin: 0;
}

.featured-page-section .feature-thumb:hover h3.feature-title {
    visibility: visible;
    bottom: 5%;
}

a.media-zoom-icon {
    display: inline-block;
    border-radius: 100%;
}

a.media-zoom-icon:hover {
    border-color: var(--main-theme-color);
}

a.media-zoom-icon i {
    height: 75px;
    width: 75px;
    color: var(--main-theme-color);
    text-align: center;
    padding: 24px;
    background: #fff;
    margin: 9px;
    border-radius: 100%;
    font-size: 23px;
}

.section-video {
    text-align: center;
}

aside.section.section-video.background-img.overlay-enabled {
    background-image: url(../images/counter/counter-bg.jpg);
}


/*--------------------------------------------------------------
18.7. Plan
--------------------------------------------------------------*/


/*sidebar and footer widget*/


/*--------------------------------------------------------------
18.7. Associate logo
--------------------------------------------------------------*/

.section-associate-logo .associate-logo-item {
    float: left;
    padding: 0 25px;
    margin-bottom: 0;
    text-align: center;
    width: 16%;
}


/*--------------------------------------------------------------
18.9. Teams
--------------------------------------------------------------*/

.section-teams .thumb-summary-wrap {
    background: #fff;
    padding: 0 0 40px;
    position: relative;
    z-index: 9;
}

.section-teams .team-item {
    text-align: center;
}

.section-teams .team-title {
    font-size: 18px;
    margin-bottom: 0;
}

.section-teams .team-text-wrap {
    position: relative;
    background: #fff;
    padding-top: 40px;
}

.section-teams .team-item img {
    background: #fff;
}

.section-teams .team-item img {
    margin: 0;
    vertical-align: middle;
    -webkit-transition: -webkit-transform 1s ease;
    -moz-transition: -moz-transform 1s ease;
    transition: transform 1s ease;
    width: 100%;
}

.section-teams .team-item .team-thumb {
    overflow: hidden;
    position: relative;
    background: #fff;
}

.section-teams .team-item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
}


/*--------------------------------------------------------------
18.10. Counter
--------------------------------------------------------------*/

.section-counter .counter-item {
    text-align: center;
}

.section-counter .counter-title {
    font-size: 15px;
    color: #fff;
}

.counter-icon {
    display: inline-block;
    margin-right: 15px;
    
}

.section-counter .counter-nos {
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    display: inline-block;
}

.section.section-counter.background-img {
    background-image: url(../images/counter/counter-bg.jpg);
}


/*--------------------------------------------------------------
18.11. Testimonial
--------------------------------------------------------------*/


/*Carousel*/


/* widget cycle pager */


/* cycle next / previous*/


/*--------------------------------------------------------------
18.12.  Portfolio
--------------------------------------------------------------*/

.section-portfolio .portfolio-item {
    float: left;
    position: relative;
    margin: 0;
    width: 33.33%;
}

.portfolio-filter ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    border: 2px solid #ddd;
    border-radius: 50px;
}

#portfolio {
    margin-bottom: 20px;
}

.portfolio-filter {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: center;
    cursor: default;
}

.portfolio-filter ul li {
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
    color: #444;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    -webkit-transition: all 0.37s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    cursor: pointer;
}

.portfolio-filter ul li a {
    color: #aba8a8;
    padding: 10px 22px;
    display: block;
    font-weight: 600;
    border-left: 2px solid #ddd;
    font-size: 13px;
}

.portfolio-filter ul li:first-child a {
    border: none;
}

.portfolio-filter ul li:last-child:after {
    content: "";
}

.portfolio-filter a:hover {
    color: var(--main-theme-color);
    text-decoration: none;
}

.portfolio-filter a.active,
.portfolio-filter a:hover {
    color: var(--main-theme-color);
    cursor: default;
    position: relative;
    cursor: pointer;
}

.overlay:before {
    background: rgba(0, 0, 0, 0.76);
    bottom: 0;
    height: 100%;
    content: "";
    display: block;
    left: 0;
    opacity: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.item-inner-wrapper:hover .overlay:before {
    bottom: 0;
    opacity: 0.9;
}

.item-inner-wrapper {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.item-inner-wrapper .portfolio-content {
    visibility: hidden;
    margin: 0;
    opacity: 0;
    position: absolute;
    width: 100%;
    bottom: -36%;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    padding: 40px;
}

.item-inner-wrapper:hover .portfolio-content {
    opacity: 1;
    visibility: visible;
    bottom: 10px;
}

a.zoom-icon i {
    text-align: center;
    font-size: 30px;
    color: #ffffff;
    padding: 0;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    margin: 0 auto;
    display: block;
}

a.zoom-icon {
    position: absolute;
    top: 30%;
    z-index: 999;
    width: 100%;
    text-align: center;
    left: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.item-inner-wrapper:hover a.zoom-icon {
    top: 34%;
    visibility: visible;
}

.portfolio-content p,
.portfolio-content h3 a {
    color: #fff;
}

.portfolio-content h3 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 24px;
}

.portfolio-content h3 a:hover {
    color: var(--main-theme-color);
}


/*Portfolio single page*/


/*--------------------------------------------------------------
18.13 Featured Page
--------------------------------------------------------------*/

.section-featured-page h5 {
    margin-bottom: 40px;
}

.section-featured-page .section-title {
    text-align: left!important;
}

.section-featured-page .section-title::after,
.section-featured-page .section-title::before {
    display: none;
}

.section.section-featured-page li {
    font-size: 15px;
    list-style: none;
    line-height: 2;
}

.section.section-featured-page ul {
    padding-left: 0;
}

.section.section-featured-page li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    margin-right: 15px;
    color: var(--main-theme-color);
    font-size: 13px;
    display: inline-block;
    margin-top: 0px;
    font-weight: 900;
}


/*--------------------------------------------------------------
18.14. Skills
--------------------------------------------------------------*/


/*Home accordion*/


/*--------------------------------------------------------------
18.15. Quick Contact
--------------------------------------------------------------*/

#contactform input[type="text"] {
    width: 100%;
    margin-bottom: 30px;
    padding: 10px 20px;
}

#contactform input[type="text"] {
    width: 100%;
    margin-bottom: 30px;
}

#contactform button#submit {
    margin: 20px 0 0;
}

.contact-form-area.contactdesc {
    background: #fff;
    padding: 40px;
}

h3.contact-title {
    background: var(--main-theme-color);
    text-align: center;
    padding: 10px;
    margin: -40px -40px 40px;
    color: #fff;
}

aside.section.section-quick-contact.background-img.overlay-enabled {
    background-image: url(../images/contact/contact-bg.jpg);
}


/*--------------------------------------------------------------
18.16. Social Links
--------------------------------------------------------------*/

.social-links {
    text-align: center;
}

.social-links {
    clear: both;
    overflow: hidden;
}

.social-links ul {
    margin: 0;
    padding: 0;
}

.social-links li a {
    border: 2px solid #cacaca;
    display: inline-block;
    height: 40px;
    line-height: 1.7;
    margin-right: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    width: 40px;
    overflow: hidden;
}

.social-links.circle li a {
    border-radius: 100%;
}

.social-links li {
    display: inline-block;
    margin-right: 5px;
    margin-top: 5px;
    margin-left: 5px;
}

.social-links ul li::after {
    display: none;
}

.social-links ul li a::before {
    color: #bdbdbd;
    content: "\f0c1";
    display: block;
    font-family: 'FontAwesome';
    font-weight: 400;
    line-height: 2.3;
    font-size: 15px;
}

.social-links ul li a:hover {
    background-color: #001837;
    border: 2px solid rgba(0, 0, 0, 0);
    -moz-transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.social-links ul li a:hover::before {
    color: #fff;
}

.social-links ul li a[href*="facebook.com"]:before {
    content: "\f09a";
}

.social-links ul li a[href*="twitter.com"]:before {
    content: "\f099";
}

.social-links ul li a[href*="linkedin.com"]:before {
    content: "\f0e1";
}

.social-links ul li a[href*="youtube.com"]:before {
    content: "\f167";
}

.social-links ul li a[href*="dribbble.com"]:before {
    content: "\f17d";
}

.social-links ul li a[href*="instagram.com"]:before {
    content: "\f16d";
}

.social-links ul li a[href*="vimeo.com"]:before {
    content: "\f194";
}


/*social links hover effect */

.social-links ul li a[href*="facebook.com"]:hover {
    background: #3b5998;
}

.social-links ul li a[href*="twitter.com"]:hover {
    background: #00aced;
}

.social-links ul li a[href*="linkedin.com"]:hover {
    background: #007bb6;
}

.social-links ul li a[href*="vimeo.com"]:hover {
    background: #aad450;
}

.social-links ul li a[href*="youtube.com"]:hover {
    background: #bb0000;
}

.social-links ul li a[href*="instagram.com"]:hover {
    background: #517fa4;
}

.social-links ul li a[href*="dribbble.com"]:hover {
    background: #ea4c89;
}


/*--------------------------------------------------------------
19. Inner Page Template
--------------------------------------------------------------*/


/*--------------------------------------------------------------
19.1 Basic Breadcrumb
--------------------------------------------------------------*/


/*--------------------------------------------------------------
19.2. Error 404 Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
19.3. Project
--------------------------------------------------------------*/

.section.section-project {
    background: #fff;
}

.section.section-project .custom-button {
    margin-top: 15px;
}

.section-project .alignleft {
    margin-right: 70px;
    vertical-align: middle;
    margin-bottom: 0;
    max-width: 50%;
}

.section-project img {
    vertical-align: middle;
}

.section-project .project-block {
    clear: both;
    overflow: hidden;
}

.section-project .alignright {
    margin-left: 70px;
    vertical-align: middle;
    margin-bottom: 0;
    max-width: 50%;
}

.section-project .custom-button {
    margin-left: 0;
}

.section-project .project-section {
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0px 0px 32px 0px rgba(122, 122, 122, 0.1);
    margin-top: 30px;
    display: block;
    overflow: hidden;
    float: left;
    width: 100%;
}

.section-project .featured-project-section {
    padding: 80px;
}

.section-project .featured-project-category {
    color: #aaa;
    font-style: italic;
    font-weight: 100;
}

.project-section .alignleft:after {
    content: "";
    display: block;
    border-right: 25px solid #ffffff;
    border-bottom: 25px solid transparent;
    border-top: 25px solid transparent;
    right: 0;
    position: absolute;
    top: 43%;
}

.project-thumb {
    position: relative;
}

.project-section .alignright:after {
    content: "";
    display: block;
    border-left: 25px solid #ffffff;
    border-bottom: 25px solid transparent;
    border-top: 25px solid transparent;
    left: 0;
    position: absolute;
    top: 43%;
}


/*--------------------------------------------------------------
20.  Media Queries
--------------------------------------------------------------*/


/* Smaller than standard 1230(devices and browsers) */

@media only screen and (max-width:1230px) {
    .global-layout-no-sidebar>.container {
        margin: 0 auto;
        width: 100%;
    }
    #content .section {
        margin-bottom: 0;
        padding: 40px 0;
    }
    .social-links li a {
        height: 30px;
        width: 30px;
    }
    .social-links ul li a::before {
        line-height: 2;
        font-size: 13px;
    }
}


/* Smaller  standard 1024 (devices and browsers) */

@media only screen and (max-width:1024px) {
    .section-project .featured-project-section {
        padding: 35px;
    }
    #content .section-title {
        font-size: 30px;
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 19px;
    }
    h5 {
        font-size: 16px;
    }
    .header-social-wrapper {
        margin-top: 5px;
    }
}


/* Smaller than standard 1024 (devices and browsers) */

@media only screen and (max-width:1023px) {
    .col-grid-3 {
        width: 50%;
    }
    .col-grid-7,
    .col-grid-5 {
        width: 100%;
    }
    .col-grid-8 {
        width: 100%;
    }
    #tophead {
        padding: 0 15px;
    }
    #primary {
        width: 100%;
        float: left;
        margin-bottom: 20px;
    }
    .custom-button,
    .custom-button:visited {
        min-width: inherit;
        padding: 6px 23px;
        font-size: 14px;
    }
}


/* Smaller than standard 900 (devices and browsers) */

@media only screen and (max-width:900px) {
    .section-project .alignleft {
        margin-right: 35px;
    }
    .section-project .alignright {
        margin-left: 35px;
    }
    .section-project .featured-project-section {
        padding: 25px;
    }
    .section.section-project .custom-button {
        margin-top: 0;
    }
    #content aside.section.section-call-to-action.cta-fluid.no-padding-btm {
        padding-bottom: 0;
    }
    .service-layout-4 .service-block-inner span.count {
        margin-bottom: 5px;
    }
    .service-layout-4 .service-block-inner {
        padding: 35px;
        min-height: 383px;
    }
    .item-inner-wrapper .portfolio-content {
        padding: 0 5px;
    }
    .item-inner-wrapper:hover .portfolio-content {
        bottom: 10px;
    }
    .portfolio-content h3 {
        margin-bottom: 0;
        font-weight: 600;
        font-size: 18px;
    }
    .portfolio-content p {
        font-size: 13px;
    }
    a.zoom-icon i {
        font-size: 25px;
    }
    .more-wrapper {
        margin-top: 20px;
    }
    .section-featured-page h5 {
        margin-bottom: 20px;
    }
    .section-latest-posts .latest-posts-text-content,
    .section-services .service-block-inner {
        padding: 30px;
    }
    .service-layout-4 .service-block-inner {
        padding: 30px 50px;
    }
    .col-grid-6 {
        width: 100%;
    }
    .inner-wrapper {
        margin-left: -15px;
        margin-right: -15px;
    }
    .col-grid-3,
    .col-grid-4,
    .col-grid-5,
    .col-grid-6,
    .col-grid-7,
    .col-grid-8 {
        padding-left: 15px;
        padding-right: 15px;
        float: left;
        margin: 15px 0 15px 0;
        transition: all 0.4s ease-in-out 0s;
    }
    #content .section-subtitle {
        font-size: 14px;
        margin: 0 auto 20px;
        max-width: 700px;
    }
    .section-counter .counter-item {
        width: 50%;
    }
    #footer-widgets .footer-widget-area {
        width: 50%;
    }
    .section-associate-logo .associate-logo-item {
        width: 33.33%;
    }
    #footer-widgets {
        padding: 40px 0;
    }
    .header-social-wrapper {
        float: none;
        text-align: center;
        width: 100%;
        clear: both;
    }
    #quick-contact {
        text-align: center;
        width: 100%;
        margin-top: 0;
    }
    #tophead .social-links {
        clear: both;
        float: none;
    }
    #tophead .social-links li {
        display: inline-block;
        float: none;
    }
    .social-links li {
        display: inline-block;
    }
    #mobile-trigger {
        display: block;
        background: #222;
        color: #fff;
        text-align: center;
        padding: 20px 12px;
    }
    #tophead {
        padding: 0;
        clear: both;
    }
    #header-search a.search-icon {
        padding: 10px 0;
    }
    img.alignnone {
        margin: 0 auto;
        display: block;
    }
    .featured-page-section .col-grid-4,
    .featured-page-section .col-grid-8 {
        width: 100%;
    }
    #content .section.no-padding-btm {
        padding-bottom: 40px;
    }
    .col-grid-6.no-margin.features-item {
        width: 50%;
    }
    #content .no-margin {
        margin: 15px 0;
    }
    #content .section-title-wrap.text-alignleft span.divider {
        margin: 0 0 15px;
    }
    a.more-link {
        margin: 0;
        padding: 5px 20px;
    }
    .section-featured-page-grid .featured-page-grid-text-content {
        padding: 25px;
    }
    .header-social-wrapper {
        clear: inherit;
        float: left;
        width: auto;
        margin: 0;
    }
    #masthead {
        padding: 15px 0;
    }
    .main-navigation {
        display: none;
    }
    #mob-menu {
        display: block;
    }
    #mobile-trigger i {
        font-size: 17px;
        line-height: 0;
        display: block;
    }
    #mob-menu ul {
        display: block;
    }
}


/* Smaller than standard 768 (devices and browsers) */

@media only screen and (max-width:767px) {
    .inner-wrapper {
        margin-left: -15px;
        margin-right: -15px;
    }
    .col-grid-3,
    .col-grid-4,
    .col-grid-5,
    .col-grid-6,
    .col-grid-7,
    .col-grid-8 {
        padding-left: 15px;
        padding-right: 15px;
        float: left;
        margin: 15px 0 15px 0;
        transition: all 0.4s ease-in-out 0s;
    }
    .col-grid-4,
    .col-grid-3 {
        width: 50%;
    }
    .col-grid-4:nth-child(2n+1),
    .col-grid-3:nth-child(2n+1) {
        clear: both;
    }
    .col-grid-5,
    .col-grid-6,
    .col-grid-7,
    .col-grid-8 {
        width: 100%;
    }
    #content .section.no-padding-btm {
        padding: 30px 0;
    }
    #content .no-margin {
        margin: 15px 0;
    }
    .featured-page-section h3.feature-title {
        visibility: visible;
        font-size: 14px;
        padding: 5px;
        bottom: 0;
    }
    .section-project .project-thumb {
        width: 100%;
        max-width: 100%;
        float: none;
        margin: 0;
    }
    .project-section .alignright:after,
    .project-section .alignleft:after {
        display: none;
    }
    #content .section-title {
        font-size: 26px;
    }
    #content .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    #quick-contact {
        float: left;
        width: 100%;
        clear: both;
        margin-top: 20px;
    }
    #masthead {
        padding: 15px 0;
    }
    #masthead:after,
    #masthead:before {
        visibility: visible;
        display: none;
    }
    #footer-widgets .footer-widget-area {
        width: 50%;
        margin-bottom: 15px;
    }
    #footer-widgets .footer-widget-area {
        width: 100%;
        border-bottom: 1px solid #50505059;
        padding: 0 15px 20px;
    }
    #footer-widgets .footer-widget-area:last-child {
        border: none;
    }
    #footer-widgets .widget-title {
        margin-bottom: 10px;
    }
    .site-title {
        font-size: 22px;
    }
    .copyright {
        float: none;
    }
    .site-info {
        float: none;
    }
    .site-branding {
        float: none;
    }
    #footer-widgets {
        padding: 35px 0;
    }
    #content .section-call-to-action .call-to-action-description h2 {
        font-size: 18px;
    }
    .section-portfolio .portfolio-item {
        float: left;
        position: relative;
        margin: 0;
        width: 50%;
    }
    .section-portfolio .portfolio-item {
        width: 50%;
    }
    #content {
        padding: 30px 0;
    }
}


/* Smaller than standard 480 (devices and browsers) */

@media only screen and (max-width:479px) {
    .contact-form-area.contactdesc {
        padding: 25px;
    }
    h3.contact-title {
        margin: -25px -25px 24px;
    }
    #contactform input[type="text"] {
        width: 100%;
        margin-bottom: 20px;
    }
    #content .section-title {
        font-size: 25px;
    }
    .header-v1 #tophead {
        padding: 0 0 15px 0;
        clear: both;
    }
    .col-grid-4,
    .col-grid-3,
    .col-grid-5,
    .col-grid-8 {
        width: 100%;
    }
    .portfolio-filter ul {
        display: block;
        border: none;
    }
    .portfolio-filter ul li {
        border: none;
    }
    .section-portfolio .portfolio-item {
        width: 100%;
    }
    .item-inner-wrapper:hover .portfolio-content {
        bottom: 35px;
    }
    .quick-contact-widget {
        padding: 0;
    }
    .section-project .featured-project-section {
        padding: 40px;
    }
    a.media-zoom-icon i {
        height: 60px;
        width: 60px;
        text-align: center;
        padding: 22px;
        background: #fff;
        margin: 9px;
        border-radius: 100%;
        font-size: 19px;
    }
    .portfolio-filter ul li:first-child a {
        border: none;
    }
    .counter-icon {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .section-counter .counter-nos {
        font-size: 29px;
    }
    .section-associate-logo .associate-logo-item {
        width: 50%;
    }
    .header-v1 #quick-contact li {
        display: inline-block;
        float: none;
        padding: 0;
        margin: 3px 0!important;
        width: auto;
        text-align: left;
        font-size: 11px;
    }
    #quick-contact li i {
        border: none;
        height: auto;
        width: auto;
    }
    #quick-contact li {
        display: inline-block;
        float: none;
        padding: 0;
        margin: 3px!important;
        width: 100%;
        text-align: left;
        font-size: 12px;
    }
    #quick-contact {
        text-align: center;
        width: 100%;
        margin: 0;
    }
    a.custom-button:before {
        margin-right: 5px;
    }
    #quick-contact {
        text-align: center;
        width: 100%;
    }
    .searchform {
        width: 230px;
        margin: 0 auto;
        max-width: 100%;
    }
    .search-box-wrap {
        padding: 20px;
    }
    #tophead .social-links li a {
        border: none;
        margin: 0;
        width: 30px;
        height: initial;
        padding: 0;
        margin: 0;
    }
    .multi-language {
        padding-top: 2px;
    }
    .portfolio-filter ul li a {
        border: none;
        display: block;
        padding: 5px;
    }
    .quick-contact-widget .quick-contact-item {
        width: 100%;
    }
    .inner-quick-contact-wrapper {
        text-align: center;
    }
    #footer-navigation {
        text-align: center;
    }
    #footer-navigation li a {
        margin-right: 10px;
        padding: 0;
        font-size: 13px;
    }
    #colophon {
        font-size: 12px;
        padding: 10px 0;
    }
    .featured-page-section h3.feature-title {
        font-size: 18px;
        padding: 10px;
    }
    .col-grid-6.no-margin.features-item {
        width: 100%;
    }
}


/* Smaller than standard 320 (devices and browsers) */

@media only screen and (max-width:219px) {
    .container {
        width: 310px;
        max-width: 310px;
    }
}


/*--------------------------------------------------------------
Main css ends form here
--------------------------------------------------------------*/

/* bread */
/* /bread */