/*
Theme Name: Landmark Landing V2
Theme URI: https://tradesignaus.com.au
Author: Tradesign
Author URI: https://tradesignaus.com.au
Description: The Theme is the clean wordpress theme.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
Text Domain: twentysixteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents
 *
 * 1.0 - Normalize
 * 2.0 - Genericons
 * 3.0 - Typography
 * 4.0 - Elements
 * 5.0 - Forms
 * 6.0 - Navigation
 *   6.1 - Links
 *   6.2 - Menus
 * 7.0 - Accessibility
 * 8.0 - Alignments
 * 9.0 - Clearings
 * 10.0 - Widgets
 * 11.0 - Content
 *    11.1 - Header
 *    11.2 - Posts and pages
 *    11.3 - Post Formats
 *    11.4 - Comments
 *    11.5 - Sidebar
 *    11.6 - Footer
 * 12.0 - Media
 *    12.1 - Captions
 *    12.2 - Galleries
 * 13.0 - Multisite
 * 14.0 - Media Queries
 *    14.1 - >= 710px
 *    14.2 - >= 783px
 *    14.3 - >= 910px
 *    14.4 - >= 985px
 *    14.5 - >= 1200px
 * 15.0 - Print
 */


/**
 * 1.0 - Normalize
 *
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */

:root {
	--main-font: 'Martel', serift;
	--heading-font: "trajan-pro-3";
	--primary-color: #173050;
	--secondary-color: #4baeed;
	--white-bg: #fff;
	--body-bg: #f2f4f7;
	--gray-bg: #f2f4f7;
	--dark-bg: #262721;
	--text-color: #51647c;
	--light-color: #cad9ea;
}


html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

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


/* Text meant only for screen readers */
.says,
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	/* many screen reader and browser combinations announce broken words as they would appear visually */
	word-wrap: normal !important;
}

/* must have higher specificity than alternative color schemes inline styles */
.site .skip-link {
	background-color: #f1f1f1;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #21759b;
	display: block;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 14px;
	font-weight: 700;
	left: -9999em;
	outline: none;
	padding: 15px 23px 14px;
	text-decoration: none;
	text-transform: none;
	top: -9999em;
}

.logged-in .site .skip-link {
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
	font-family: "Open Sans", sans-serif;
}

.site .skip-link:focus {
	clip: auto;
	height: auto;
	left: 6px;
	top: 7px;
	width: auto;
	z-index: 100000;
}


/**
 * 8.0 - Alignments
 */

.alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}

.alignright {
  float: right;
  margin: 0.375em 0 1.75em 10px;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}






/* Tag Cloud widget */
.tagcloud a {
	border: 1px solid #d1d1d1;
	border-radius: 2px;
	display: inline-block;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	line-height: 1;
	margin: 0 0.1875em 0.4375em 0;
	padding: 0.5625em 0.4375em 0.5em;
}

.tagcloud a:hover,
.tagcloud a:focus {
	border-color: #007acc;
	color: #007acc;
	outline: 0;
}


/*--------------------------------------------------------------
6.0 Forms
--------------------------------------------------------------*/

label {
	color: var(--primary-color);
	display: block;
	font-weight: 400;
	margin-bottom: 0.5em;
}

fieldset {
	margin-bottom: 1em;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #51647c;
	background: #fff;
	border: 0px solid #ddd;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	display: block;
	padding: 13px 20px;
	width: 100%;
	font-size: 15px;
}
select {
	border: 0px solid #bbb;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	height: 52px;
	max-width: 100%;
	width: 100%;
	background: #fff;
	color: #51647c;
	font-size: 15px;
	padding: 13px 20px;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("img/select-arrow.png");
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;
}



textarea {
	height: 160px;
}


input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}



input[type="radio"],
input[type="checkbox"] {
	margin-right: 0.5em;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
	font-weight: 400;
}

input[type="button"],
input[type="submit"] {
	background-color: #fff;
	border: 0;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #0d8863;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	padding: 1em 2em;
	text-shadow: none;
	-webkit-transition: background 0.2s;
	transition: background 0.2s;
	width: 100%;
}

input + button,
input + input[type="button"],
input + input[type="submit"] {
	padding: 0.75em 2em;
}

button.secondary,
input[type="reset"],
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
	background-color: #ddd;
	color: #222;
}

input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: #4e9139;
	color: #fff;
}

button.secondary:hover,
button.secondary:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"].secondary:hover,
input[type="button"].secondary:focus,
input[type="reset"].secondary:hover,
input[type="reset"].secondary:focus,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:focus {
	background: #bbb;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #51647c;
}

:-moz-placeholder {
	color: #51647c;
}

::-moz-placeholder {
	color: #51647c;
	opacity: 1;
	/* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
	color: #51647c;
}


/**
 * 11.4 - Comments
 */

.comments-area {
	margin: 0 7.6923% 3.5em;
}

.comment-list + .comment-respond,
.comment-navigation + .comment-respond {
	padding-top: 1.75em;
}

.comments-title,
.comment-reply-title {
	border-top: 4px solid #1a1a1a;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 23px;
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.3125;
	padding-top: 1.217391304em;
}

.comments-title {
	margin-bottom: 1.217391304em;
}

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

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
	border-top: 1px solid #d1d1d1;
	padding: 1.75em 0;
}

.comment-list .children {
	list-style: none;
	margin: 0;
}

.comment-list .children > li {
	padding-left: 0.875em;
}

.comment-author {
	color: #1a1a1a;
	margin-bottom: 0.4375em;
}

.comment-author .avatar {
	float: left;
	height: 28px;
	margin-right: 0.875em;
	position: relative;
	width: 28px;
}

.bypostauthor > article .fn:after {
	content: "\f304";
	left: 3px;
	position: relative;
	top: 5px;
}

.comment-metadata,
.pingback .edit-link {
	color: #686868;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 1.6153846154;
}

.comment-metadata {
	margin-bottom: 2.1538461538em;
}

.comment-metadata a,
.pingback .comment-edit-link {
	color: #686868;
}

.comment-metadata a:hover,
.comment-metadata a:focus,
.pingback .comment-edit-link:hover,
.pingback .comment-edit-link:focus {
	color: #007acc;
}

.comment-metadata .edit-link,
.pingback .edit-link {
	display: inline-block;
}

.comment-metadata .edit-link:before,
.pingback .edit-link:before {
	content: "\002f";
	display: inline-block;
	opacity: 0.7;
	padding: 0 0.538461538em;
}

.comment-content ul,
.comment-content ol {
	margin: 0 0 1.5em 1.25em;
}

.comment-content li > ul,
.comment-content li > ol {
	margin-bottom: 0;
}

.comment-reply-link {
	border: 1px solid #d1d1d1;
	border-radius: 2px;
	color: #007acc;
	display: inline-block;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 1;
	margin-top: 2.1538461538em;
	padding: 0.5384615385em 0.5384615385em 0.4615384615em;
}

.comment-reply-link:hover,
.comment-reply-link:focus {
	border-color: currentColor;
	color: #007acc;
	outline: 0;
}

.comment-form {
	padding-top: 1.75em;
}

.comment-form label {
	color: #686868;
	display: block;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 13px;
	font-size: 0.8125rem;
	letter-spacing: 0.076923077em;
	line-height: 1.6153846154;
	margin-bottom: 0.5384615385em;
	text-transform: uppercase;
}

.comment-list .comment-form {
	padding-bottom: 1.75em;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.form-allowed-tags {
	color: #686868;
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 1.6153846154;
	margin-bottom: 2.1538461538em;
}

.no-comments {
	border-top: 1px solid #d1d1d1;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-weight: 700;
	margin: 0;
	padding-top: 1.75em;
}

.comment-navigation + .no-comments {
	border-top: 0;
	padding-top: 0;
}

.form-allowed-tags code {
	font-family: Inconsolata, monospace;
}

.form-submit {
	margin-bottom: 0;
}


.comment-reply-title small {
	font-size: 100%;
}

.comment-reply-title small a {
	border: 0;
	float: right;
	height: 32px;
	overflow: hidden;
	width: 26px;
}

.comment-reply-title small a:hover,
.comment-reply-title small a:focus {
	color: #1a1a1a;
}

.comment-reply-title small a:before {
	content: "\f405";
	font-size: 32px;
	position: relative;
	top: -5px;
}


/* Go Scroll To Top */

.go-top {
	position: fixed;
	right: 30px;
	bottom: 20px;
	z-index: 999;
	display: none;
}

.go-top span {
	background-color: #4bc6ce;
	color: #fff;
	cursor: pointer;
	float: right;
	font-size: 30px;
	font-weight: 400;
	line-height: 30px;
	padding: 5px 10px;
}

.go-top span:hover {
	color: #fff;
	background: #005770;
}
.row {
	margin-right: -10px;
	margin-left: -10px;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
	padding-right: 10px;
	padding-left: 10px;
}




a, a:hover, a:focus, :focus{
	text-decoration: none;
	outline: none;
}
a:hover{
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--primary-color);
	margin: 0;
	font-weight: 600;
	line-height: 1.2;
	font-family: var(--heading-font);
	text-transform: uppercase;

}
h1 {
	font-size: 40px;
}

h2 {
	font-size: 40px;
}
h3 {
	font-size: 24px;
}

p:last-child, p:last-of-type {
	margin-bottom: 0;
}




/* Custom CSS */

body{
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	background: var(--body-bg);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased; /* Chrome, Safari */
	-moz-osx-font-smoothing: grayscale; /* Firefox */
}




/* Menu */


#main-wrap {
	overflow: hidden;
}

/* Header */
.admin-bar .header {
	top: 32px;
}
.header {
	transition: .4s all ease;
	background: transparent;
}
.sticky-active {
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	background: var(--primary-color);
}
body:not(.home) .header {
	background: var(--primary-color);
}
.header-top {
	padding: 25px 0;
	transition: .4s all ease;
}
.sticky-active .header-top {
	padding: 10px 0;
}
.header-top .container {
	max-width: 1500px;
}


.logo {
	margin-right: 15px;
	max-width: 230px;
	transition: .4s all ease;
}
.sticky-active .logo {
	max-width: 200px;
	transition: .4s all ease;
}

.menu-with-info {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
}


.main-menu {
	flex: 1;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
.main-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.main-menu ul li {
	display: inline-block;
	position: relative;
}
.main-menu ul li a {
	color: #fff;
	font-size: 15px;
	padding: 15px 15px;
	font-weight: 600;
	text-transform: uppercase;
	display: block;
}

.main-menu ul li:hover > a {
	color: #4baeed;
}

.main-menu ul li ul {
	position: absolute;
	width: 310px;
	background: #173050;
	text-align: left;
	left: 0;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .4s all ease;
	padding: 10px 0;
}
.main-menu ul li ul li {
	display: block;
}
.main-menu ul li.menu-item-has-children {
	padding-right: 5px;
}
.main-menu > ul > li.menu-item-has-children::before {
	font-family: 'FontAwesome';
	content: '\f107';
	position: absolute;
	right: 0;
	top: 50%;
	color: #fff;
	font-weight: 700;
	transform: translateY(-55%);
}
.main-menu ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
}
.main-menu ul li ul li a {
	display: block;
	padding: 10px 15px;
	font-size: 13px;
}

.main-menu ul li ul li ul {
	left: 100%;
	top: 0;
}
.main-menu > ul > li ul li.menu-item-has-children::before {
	font-family: 'FontAwesome';
	content: '\f105';
	position: absolute;
	right: 10px;
	top: 8px;
	color: #fff;
	font-weight: 700;
}

.main-menu ul li a:hover, .main-menu ul > li.current_page_item > a {
	color: #4baeed;
}
.main-menu ul li ul li a:hover{
	color: #4baeed;
}
.main-menu ul.sub-menu > li.current_page_item > a {
	color: #4baeed;
}

.right-phone {
	position: relative;
	display: flex;
}


.btn {
	background-color: var(--secondary-color);
	border: 0px solid #1dbfd8;
	color: var(--white);
	border-radius: 0px;
	padding: 14px 60px 14px 25px;
	font-size: 15px;
	transition: .4s all ease;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	font-family: var(--heading-font);
}
.btn::before {
	background-image: url('img/btn-arrow.png');
	width: 10px;
	height: 19px;
	content: "";
	position: absolute;
	top: 15px;
	right: 15px;
}
.btn.focus, .btn:focus {
	outline: 0;
	box-shadow: none;
}
.btn:hover {
	background: #2b68ac;
	color: var(--white);
	transition: .4s all ease;
}
.white-btn {
	background: var(--white-bg);
	color: var(--primary-color);
}
.white-btn::before {
	background-image: url('img/white-btn-arrow.png');
}
.white-btn:hover {
	background: var(--primary-color);
	color: var(--white);
}
.blue-btn {
	background: var(--primary-color);
}
.blue-btn::before {
	background-image: url('img/white-btn-arrow.png');
}
.big-btn {
	padding-right: 70px;
}



/* Modal */
.modal-dialog {
	max-width: 700px;
}
.modal-body input[type="submit"] {
	background: var(--secondary-color);
	color: var(--white);
	text-transform: uppercase;
	border-radius: 0px;
	max-width: 180px;
	letter-spacing: 1px;
}
.modal-body input[type="submit"]:hover {
	background: var(--primary-color);
}
.modal-body {
	padding: 10px 30px 30px;
}
.modal-body h3 {
	margin-bottom: 25px;
	font-size: 30px;
}
.modal-content {
	border-radius: 0;
	background: var(--gray-bg);
}
.modal-header {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 15px;
	border-bottom: 0px solid;
}
.modal-header .close {
	position: absolute;
	right: 30px;
}
.popup-logo {
	flex: 1;
	text-align: center;
}
.popup-logo img {
	background: #173050;
	padding: 15px;
	height: 90px;
}
.modal-body [class*="col-md"] {
	margin-bottom: 15px;
}


/* Banner */
.banner-area {
	padding: 170px 0 180px;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: bottom center;
	position: relative;
}
.banner-area::before {
	background: rgb(23,47,78);
	background: linear-gradient(90deg, rgba(23,47,78,1) 36%, rgba(0,0,0,0.09005609079569332) 100%);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}


.banner-content {

}
.banner-content h1 {
	font-size: 25px;
	margin-bottom: 15px;
	color: var(--white);
}
.banner-content p {
	color: var(--light-color);
}
.banner-content ul {
	padding: 0;
	list-style: none;
	margin-top: 15px;
}
.banner-content ul li {
	position: relative;
	padding-left: 17px;
	font-size: 17px;
	margin-bottom: 5px;
	text-transform: uppercase;
	color: var(--white);
	font-weight: 700;
}
.banner-content ul li::before {
	content: "";
	background: var(--white-bg);
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.banner-btn {
	display: flex;
	align-items: flex-end;
	margin-top: 30px;
}
.bnr-btn {
	margin-left: 30px;
}
.g-image img {
	height: 70px;
	object-fit: contain;
	object-position: bottom;
}

.banner-right-lists ul {
	margin-left: auto;
	padding: 0;
	list-style: none;
	max-width: 250px;
}
.banner-right-lists ul li {
	position: relative;
	background: var(--white-bg);
	color: var(--primary-color);
	font-weight: 700;
	font-size: 18px;
	border-left: 6px solid var(--secondary-color);
	padding: 15px 15px 15px 40px;
	text-transform: uppercase;
}
.banner-right-lists ul li:not(:last-child) {
	margin-bottom: 10px;
}
.banner-right-lists ul li::before {
	content: "";
	background-image: url('img/tick-arrow.png');
	width: 21px;
	height: 17px;
	position: absolute;
	left: 10px;
	top: 17px;
}




/* Section Title */
.section-title {
	margin-bottom: 40px;
	position: relative;
}
.section-title p {
	margin-top: 15px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.title-with-image {
	padding-top: 50px;
}
.title-with-image::before {
	content: "";
	background-image: url('img/title-img.png');
	width: 210px;
	height: 41px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
}
.bg {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}



/* Banner Brands */
.brands-logos {
	background: #fff;
	max-width: 800px;
	box-shadow: 0px 10px 64px 0px rgba(23, 48, 80, 0.2);
	border-radius: 5px;
	padding: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-top: -90px;
}
.single-brnad {
	padding: 0 20px;
}

/* Why Choose */
.why-choose-area {
	padding-top: 60px;
}
.why-choose-lists {
	padding-top: 30px;
}
.single-choose {
	margin-bottom: 40px;
}
.choose-img {
	margin-bottom: 20px;
}
.choose-img img {
	max-width: 75px;
}
.choose-content h3 {
	margin-bottom: 15px;
}

/* Reviews */
.review-area {
	padding: 50px 0 60px;
}



/* CTA 1 */
.cta-bg-1 {
	padding: 50px 100px 50px 300px;
	position: relative;
	margin-bottom: -70px;
}
.cta-1-img {
	position: absolute;
	left: 80px;
	bottom: 0;
}
.cta-1-img img {
	max-width: 170px;
}
.cta-bg-1 h3 {
	font-size: 34px;
}





/* Services */
.services-area {
	padding: 150px 0 50px;
	background-image: -moz-linear-gradient( 90deg, rgb(242,244,247) 0%, rgb(255,255,255) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(242,244,247) 0%, rgb(255,255,255) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(242,244,247) 0%, rgb(255,255,255) 100%);
}
.services-tab-lists .nav-link {
	background-color: #f8f8f8;
	color: #173050;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--heading-font);
	padding: 15px 50px;
	border-radius: 30px;
	border: 1px solid var(--primary-color);
	margin: 0 5px;
}
.services-tab-lists {
	border-radius: 30px;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	color: var(--white);
	background-color: var(--primary-color);
}

.home-services-tab-content {
	margin-top: 50px;
}


.services-tab-carousel, .services-tab-carousel-2 {
	margin-top: 25px;
}

.s-c-content-item {
	background: var(--white-bg);
	padding: 30px 70px;
	border-top: 5px solid var(--primary-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.stage-no {
	color: var(--secondary-color);
	font-size: 16px;
	margin-bottom: 10px;
}
.s-c-content h3 {
	margin-bottom: 25px;
}
.s-c-content h4 {
	font-size: 16px;
	font-weight: 700;
	text-transform: none;
	font-family: var(--main-font);
	margin-bottom: 15px;
}
.s-c-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.s-c-content ul li {
	position: relative;
	padding-left: 30px;
}
.s-c-content ul li:not(:last-child) {
	margin-bottom: 7px;
}
.s-c-content ul li::before {
	content: "";
	background-image: url('img/tick-arrow.png');
	width: 21px;
	height: 17px;
	position: absolute;
	left: 0;
	top: 0;
}



.step-dot .slick-dots {
	max-width: 100%;
}
.step-dot .slick-dots li {
	margin: 0 25px;
}
.step-dot .slick-dots button {
	text-indent: 0;
	width: 45px;
	height: 45px;
	background: var(--white-bg);
	font-weight: 600;
	font-size: 20px;
	font-family: var(--heading-font);
	position: relative;
	cursor: pointer;
}
.step-dot .slick-dots button::before {
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 15px solid transparent;
	content: "";
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
}
.step-dot .slick-dots li.slick-active button::before {
	border-bottom-color: var(--primary-color);
}
.step-dot .slick-dots li.slick-active button {
	background: var(--primary-color);
	color: var(--white);
}


/* .tab-content > .tab-pane, .pill-content > .pill-pane {
	display: block;
	height: 0;
	overflow: hidden;
}
.tab-content > .active, .pill-content > .active {
	height: auto;
}
 */



/* CTA 2 */
.footer-cta-area-2 {
	padding: 20px 0 60px;
}
.cta-bg-2 {
	position: relative;
	background: var(--primary-color);
	padding: 50px;
}
.cta-2-img {
	position: absolute;
	right: 40px;
	bottom: 0;
	max-width: 330px;
}
.cta-bg-2 .cta-btn {
	position: relative;
	z-index: 2;
	min-width: 300px;
	text-align: center;
}
.cta-bg-2 .cta-text h3 {
	max-width: 770px;
}



/* Guarantee */
.guarantee-area {
	background: var(--primary-color);
	position: relative;
}
.guarantee-area:before {
	background: var(--white-bg);
	width: 50%;
	height: 100%;
	right: 0;
	top: 0;
	content: "";
	position: absolute;
}
.guarantee-area h2 {
	font-size: 30px;
	margin-bottom: 20px;
}
.choose-us-content h2 {
	color: var(--white);
}

.choose-us-content {
	color: var(--light-color);
	padding-right: 50px;
	padding-top: 100px;
	padding-bottom: 100px;
}
.choose-us-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.choose-us-content ul li {
	position: relative;
	padding-left: 35px;
}
.choose-us-content ul li:not(:last-child) {
	margin-bottom: 20px;
}
.choose-us-content ul li::before {
	background-image: url('img/li-arrow.png');
	width: 15px;
	height: 20px;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
}
.guarantee-right-content {
	padding-top: 100px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.gu-content {
	max-width: 400px;
	margin-left: auto;
}
.gu-image {
	padding-top: 10px;
}
.gu-image img {
	max-width: 115%;
}



/* Reviews */
.review-area-1 {
	padding: 80px 0 100px;
}
.rating {
	margin-bottom: 20px;
}
.review-content img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.review-content {
	background: #fff;
	padding: 30px;
	margin: 50px 10px 0;
}
.tt-content h3 {
	font-size: 18px;
	margin-top: 15px;
}
.google-logo {
	margin-top: -65px;
	margin-bottom: 20px;
}
.slick-dots {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: flex !important;
	justify-content: center;
	max-width: 210px;
}
.slick-dots li {
	line-height: 1;
	margin: 0 4px;
}
.slick-dots button {
	padding: 0;
	border: none;
	text-indent: -99999999px;
	outline: none;
	cursor: pointer;
	background: #dddd;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}
.slick-dots li.slick-active button {
	background: #4baeed;
}
#testimonials-arrows {
	margin-top: 80px;
	position: relative;
	max-width: 230px;
	margin-left: auto;
	margin-right: auto;
}
.t-arrow ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.t-arrow {
	position: relative;
}
.slick-arrow {
	cursor: pointer;
	outline: none !important;
}
.slick-arrow:hover {
	opacity: .7;
}
.prev.slick-arrow {
	position: absolute;
	left: 0;
	top: -9px;
}
.next.slick-arrow {
	position: absolute;
	right: 0;
	top: -9px;
}





/* Team */
.our-team-lists {
	margin-top: 60px;
}
.single-team {
	margin-bottom: 90px;
}
.team-img {
	background: var(--primary-color);
}
.team-img img {
	margin-top: -50px;
}
.team-content {
	background: var(--white-bg);
	padding: 30px;
}
.team-content h3 {
	margin-bottom: 15px;
}


/* CTA */
.footer-cta-area {
	padding-bottom: 140px;
}
.cta-area .container {
	max-width: 1500px;
}
.cta-bg {
	padding: 70px 150px;
	display: flex;
	align-items: center;
}
.cta-text {
	flex: 1;
}



/* Footer Top */
.footer-top-content h2 {
	margin-bottom: 15px;
}
.footer-top-content p {
	max-width: 1000px;
	margin: 0 auto;
}
.footer-top-area {
	position: relative;
	padding: 30px 0 450px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.footer-top-shape {
	position: absolute;
	bottom: -2px;
	left: 0;
}
.footer-top-shape svg {
	width: 100%;
	height: 100%;
}
.mt-25 {
	margin-top: 25px;
}

.footer-logo {
	margin-top: -150px;
}
.footer-logo img {
	max-width: 250px;
}

/* Footer */
.footer {
	background: var(--white-bg);
	padding: 0 0 30px;
}
.footer-text {
	margin-top: 40px;
	margin-bottom: 25px;
}
.footer-text h3 {
	font-size: 24px;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}
.footer-btn {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.footer-btn .btn {
	background: var(--gray-bg);
	margin: 0 5px;
}
.footer-btn .btn:hover {
	background: var(--primary-color);
}


.footer-copyright {
	margin-top: 40px;
}
.copyright p {
	font-size: 14px;
	line-height: 1.8;
}
.copyright a {
	color: var(--primary-color);
	font-weight: 600;
}
.copyright a:hover {
	opacity: .7;
}





.testimonial-area {
	background: #173050;
	padding: 100px 0;
}
.all-testimonials {
	padding: 0 100px;
	margin-top: 60px;
}

.testimonial-rating {
	margin-bottom: 30px;
}
.testimonial-rating img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.testimonial-content p {
	color: #95b3d5;
	font-style: italic;
	line-height: 1.7;
}
.testimonial-content h3 {
	margin-top: 30px;
}
.testimonial-carousel .slick-arrow {
	border: none;
	background: transparent;
	color: #fff;
	font-size: 40px;
	padding: 0;
	line-height: 1;
	width: 40px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.testimonial-carousel .slick-arrow.slick-prev {
	left: -100px;
}
.testimonial-carousel .slick-arrow.slick-next {
	right: -100px;
}





/* New */ 
.cta-1-img {
	display: none;
}
.cta-bg-1 {
	padding: 50px;
	background: var(--primary-color) !important;
}

.pre-service-title {
	background: var(--primary-color);
	padding: 20px;
}

.pre-service-content {
  background: var(--white);
  padding: 30px 20px;
}
.pre-service-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pre-service-content ul li {
  padding: 15px;
}
.pre-service-content ul li:nth-child(2n) {
  background: #f3f4f6;
}
.cta-2-img {
	display: none;
}

.cta-bg-1, .cta-bg-2, .cta-bg {
	justify-content: space-between;
}
.cta-badge {
	padding: 10px;
}
.cta-badge img {
	max-width: 180px;
}
.cta-text {
	flex: inherit;
}


._form_element {
	margin-bottom: 15px;
}
._form-title {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	text-align: center;
	font-family: var(--heading-font);
}
._html-code {
	text-align: center;
	margin-bottom: 20px;
}
._button-wrapper {
	text-align: center;
	margin-top: 20px;
}
._button-wrapper ._submit {
	background: var(--secondary-color);
	border: none;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 700;
	font-family: var(--heading-font);
	font-size: 16px !important;
	padding: 15px 30px;
	display: inline-block;
	cursor: pointer;
}
._button-wrapper ._submit:hover {
	background: var(--primary-color);
}


/* 21-6-23 */
.page-id-178 .services-tab-lists .nav-link, .page-id-180 .services-tab-lists .nav-link {
	padding: 15px 30px;
	margin: 5px;
	font-size: 14px;
}





/* Thank you */
.thankyou-area {
	padding: 250px 0 100px;
}



/* 404 */
.error-404 {
	padding: 100px 0;
}
.error-404 h1 {
	font-size: 200px;
}
.error-404 h2 {

}

/* Responsive */

@media (max-width: 1550px) {

	.with-you-area {
		padding: 130px 0;
	}
	.guarantee-badge {
		text-align: left !important;
	}
	.footer-top-area {
		padding: 30px 0 400px;
	}

}

@media (max-width: 1366px) {
	.footer-logo {
		margin-top: -140px;
	}
}

@media (max-width: 1343px) {
	.right-phone .btn {
		font-size: 14px;
		padding-left: 15px;
		padding-right: 50px;
	}
	.main-menu ul li a {
		font-size: 13px;
	}
	.logo {
		max-width: 170px;
	}
	.sticky-active .logo {
		max-width: 160px;
	}
}


@media (max-width: 1185px) {
	.right-phone .btn {
		font-size: 12px;
		padding-left: 13px;
		padding-right: 35px;
	}
	.right-phone .btn::before {
		top: 12px;
	}
	.main-menu ul li a {
		font-size: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.main-menu ul li ul li a {
		font-size: 10px;
	}
}






/*
 * Large devices (desktops, less than 1200px)
 */

@media (max-width: 1199.98px) {
	.banner-area {
		padding: 150px 0;
	}
	h2 {
		font-size: 30px;
	}
	h3 {
		font-size: 20px;
	}
	.footer-top-area {
		padding: 30px 0 300px;
	}
	.cta-bg-1 h3 {
		font-size: 26px;
	}
	.services-tab-lists .nav-link {
		padding: 15px 30px;
	}
	.s-c-img {
		max-width: 40%;
	}
	.cta-bg-2 .cta-text h3 {
		max-width: 620px;
	}
	.guarantee-area h2 {
		font-size: 26px;
	}
	.footer-cta-area {
		padding-bottom: 60px;
	}



}

/*
 * Medium devices (tablets, less than 992px)
 */

@media (max-width: 991.98px) {

	.slicknav_btn {
		display: none;
	}
	.slicknav_menu {
		display: block;
	}
	.slicknav_menu {
		background: transparent;
		margin-right: -15px;
		margin-left: -15px;
		padding: 0;
	}
	.slicknav_nav {
		background: rgba(0, 0, 0, 0);
		padding: 15px 0 0;
		text-align: left;
	}
	.slicknav_btn {
		margin: 5px 5px 6px;
		text-decoration: none;
		text-shadow: none;
		border-radius: 0;
		background-color: #eee;
		position: absolute;
		right: 10px;
		top: 5px;
	}
	.slicknav_menu .slicknav_icon-bar {
		background-color: #222;
	}
	.slicknav_nav .slicknav_row, .slicknav_nav a {
		text-transform: uppercase;
		font-weight: 600;
		color: #fff;
		font-family: "trajan-pro-3";
	}
	.slicknav_nav .slicknav_row:hover {
		-webkit-border-radius:0px;
		-moz-border-radius: 0px;
		border-radius: 0;
		background: transparent;
	}
	.slicknav_nav a:hover {
		background: transparent;
		color: #1dbfd8;
	}
	.right-phone {
		margin-left: 0;
		flex: 1;
		justify-content: flex-end;
		align-items: center;
	}
	.new-menu-open {
		font-size: 26px;
		margin-left: 10px;
		color: #fff;
		line-height: 1;
		cursor: pointer;
	}
	.mobile-menu {

	}
	.main-menu ul li a {
		font-size: 13px;
		padding: 0 5px;
	}
	.right-phone.text-right {
		display: flex;
		align-items: center;
	}
	.menu-with-info {
		flex: inherit;
	}
	.header-top {
		padding: 15px 0;
	}
	.sticky-active .logo {
		max-width: 150px;
	}
	.mobile-header {
		background: #173050;
	}
	.logo {
		margin-right: 10px;
		max-width: 160px;
	}
	.sticky-active .logo {
		max-width: 140px;
	}
	h1 {
		font-size: 28px;
	}
	.banner-area {
		padding: 130px 0 150px;
	}

	.testimonial-area {
		padding: 50px 0;
	}
	#testimonials-arrows {
		margin-top: 50px;
	}
	.footer-top-area {
		padding: 50px 0 210px;
	}
	.footer-logo {
		margin-top: -125px;
	}
	.mpt-50 {
		padding-top: 50px;
	}
	.mpb-50 {
		padding-bottom: 50px;
	}
	.banner-content h1 {
		font-size: 20px;
	}
	.cta-bg-1 {
		padding: 50px 50px 50px 260px;
	}
	.cta-1-img {
		left: 50px;
	}
	.services-tab-lists .nav-link {
		padding: 12px 25px;
		font-size: 13px;
	}
	.s-c-content-item {
		flex-direction: column;
	}
	.s-c-content {
		width: 100%;
		margin-bottom: 30px;
	}
	.s-c-img {
		max-width: 70%;
	}
	.guarantee-area::before {
		display: none;
	}
	.guarantee-right-content {
		padding-top: 50px;
		background: var(--white);
		position: relative;
	}
	.guarantee-right-content::before {
		width: 10000%;
		left: -10000%;
		position: absolute;
		content: "";
		top: 0;
		background: var(--white-bg);
		height: 100%;
	}
	.guarantee-right-content::after {
		width: 10000%;
		right: -10000%;
		position: absolute;
		content: "";
		top: 0;
		background: var(--white-bg);
		height: 100%;
	}
	.choose-us-content {
		padding-right: 0;
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.gu-content {
		max-width: 100%;
		margin-left: 0;
	}
	.cta-bg {
		padding: 70px 50px;
	}
	.bnr-btn {
		margin-left: 5px;
	}
	.banner-right-lists ul {
		margin-left: 0;
		margin-top: 20px;
	}
	.banner-right-lists ul li {
		font-size: 15px;
	}





}

@media (max-width: 768px) {

}

@media (max-width: 782px) {
	.admin-bar .header {
		top: 46px;
	}
}

/*
 * Small devices (landscape phones, less than 768px)
 */
@media (max-width: 767.98px) {
	h1 {
		font-size: 20px;
	}
	.banner-content p {
		font-size: 14px;
		color: var(--white);
	}
	.banner-area {
		padding: 90px 0 60px;
	}
	h2 {
		font-size: 24px;
	}
	.section-title {
		margin-bottom: 20px;
	}
	.footer-top-area {
		padding: 50px 0 120px;
	}
	.footer-logo {
		margin-top: -70px;
	}
	.footer {
		padding: 0 0 20px;
	}
	.footer-logo img {
		max-width: 180px;
	}

	.footer-copyright {
		margin-top: 20px;
	}
	.copyright {
		margin-bottom: 15px;
	}

	h1, h2, h3, h4, h5, h6 {
		line-height: 1.4;
	}
	h3 {
		font-size: 20px;
	}
	.tt-content h3 {
		font-size: 16px;
	}
	body {
		font-size: 15px;
	}
	.mt-25 {
		margin-top: 15px;
	}
	.btn {
		font-size: 14px;
	}
	.big-btn {
		padding-right: 55px;
	}
	.footer-top-box-area {
		padding-bottom: 0;
	}
	.footer-bottom-menu.row {
		display: none;
	}
	.footer-text {
		margin-bottom: 0;
	}
	.inner-page-banner {
		padding: 100px 0 45px;
	}
	.inner-page-padding {
		padding: 40px 0;
	}

	.all-testimonials {
		padding: 0 30px;
	}
	.testimonial-carousel .slick-arrow.slick-prev {
		left: -40px;
	}
	.testimonial-carousel .slick-arrow.slick-next {
		right: -40px;
	}

	.brands-logos {
		padding: 30px 0;
		margin-top: -45px;
	}
	.single-brnad {
		padding: 0 10px;
	}
	.why-choose-area {
		padding-top: 40px;
	}
	.section-title br {
		display: none;
	}
	.review-area {
		padding: 20px 0 60px;
	}
	.cta-bg-1 {
		padding: 30px;
	}
	.cta-1-img {
		display: none;
	}
	.cta-bg-1 {
		flex-direction: column;
	}
	.cta-text br {
		display: none;
	}
	.cta-text {
		text-align: center;
		margin-bottom: 0;
	}
	.step-dot .slick-dots li {
		margin: 0 5px;
	}
	.step-dot .slick-dots button {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}
	.s-c-content-item {
		padding: 30px;
	}
	.footer-cta-area-2 {
		padding: 30px 0 50px;
	}
	.cta-bg-2 {
		padding: 30px;
		flex-direction: column;
	}
	.cta-2-img {
		position: unset;
		margin-top: 40px;
	}
	.guarantee-area h2 {
		font-size: 24px;
	}
	.review-area-1 {
		padding: 40px 0 60px;
	}
	.cta-bg {
		padding: 30px;
		flex-direction: column;
	}
	.cta-btn {
		width: 100%;
		text-align: center;
	}
	.cta-text br {
		display: none;
	}
	.footer-text h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.footer-btn {
		flex-direction: column;
	}
	.footer-btn .btn {
		min-width: 230px;
		margin: 5px auto;
		text-align: left;
	}
	.footer-top-area {
		padding: 200px 0 120px;
	}
	.footer-top-content {
		position: relative;
		top: -240px;
	}

	.banner-right-lists ul {
		display: flex;
		flex-wrap: wrap;
		max-width: 100%;
	}	
	
	.banner-btn {
		flex-wrap: wrap;
		justify-content: center;
	}	
	.bnr-btn {
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
	}	
	.bnr-btn .btn {
		width: 100% !important;
	}
	.banner-content {
		max-width: 335px;
		margin-left: auto;
		margin-right: auto;
		background: rgba(23, 48, 80, .6);
		padding: 15px;
	}	
	.services-tab-lists .nav-link {
		padding: 12px 15px;
		font-size: 13px;
		margin: 4px;
		text-align: center;
	}
	.choose-us-content h2 {
		text-align: center;
	}
	
.banner-area::before {
	display: none;
}	
.banner-content ul {
	margin-bottom: 0;
}
.banner-btn {
	margin-top: 20px;
}
.banner-content ul li {
	font-size: 16px;
}	
.bnr-btn .btn {
	width: 100% !important;
	max-width: 220px;
	margin: 0 auto;
	display: block;
}
	
.banner-right-lists ul li {
	width: calc(100%/2 - 10px);
	margin: 5px;
	font-size: 11px;
}	
.banner-right-lists ul li:not(:last-child) {
	margin-bottom: 5px;
}	
.modal-body {
	padding: 10px 15px 30px;
}	
._button-wrapper ._submit {
	font-size: 14px !important;
	padding: 15px 10px;
	width: 100%;
}	

}


@media (max-width: 600px) {
	.admin-bar .header.sticky-active {
		top: 0;
	}
}

/*
 * Extra small devices (portrait phones, less than 576px)
 */

@media (max-width: 575.98px) {
	/* 404 */
	.error-404 {
		padding: 50px 0;
	}
	.error-404 h1 {
		font-size: 100px;
	}
	.brands-lists {
		flex-wrap: wrap;
	}
	.single-brands {
		padding: 10px 15px;
		width: calc(100%/2);
	}
	.right-phone .btn::before {
		display: none;
	}
	.right-phone .btn {
		font-size: 9px;
		padding: 10px;
	}
	.right-phone .btn.ml-3 {
		margin-left: 5px !important;
	}

	.banner-content h1 {
		font-size: 19px;
	}
	.g-image img {
		height: 70px;
	}
	.banner-btn {
		margin-top: 0;
	}
	.s-c-img {
		max-width: 100%;
	}

	.page-id-178 .services-tab-lists .nav-link, .page-id-180 .services-tab-lists .nav-link {
		padding: 15px 10px;
		font-size: 13px;
		width: 100%;
	}



}










