@import url('https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;500;700&amp;family=Jost:wght@100;200;300;400;500;600&amp;display=swap');

/*---------------------------------------------------------------------
import Css
-----------------------------------------------------------------------*/
@import url("all.min.css");
@import url("flaticon/flaticon.css");
@import url("ionicons.min.css");
@import url("owl-carousel/owl.carousel.min.css");
@import url("magnific-popup.min.css");
@import url("animate.min.css");
@import url("animate.css");
@import url("jquery.mCustomScrollbar.min.css");
@import url("themify-icons.css");

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Moz Selection
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
:root {
    --primary-color: #3687BC;
    --dark-color: #0a0f1b;
    --secondary-color: #808080;
    --grey-color: #F4F4F4;
    --white-color: #ffffff;
    --body-fonts: 'Jost', sans-serif;
    --title-fonts: 'Hind Madurai', sans-serif;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

/*+++++++++++++++++++++++++++++++++++++++++++++
General
+++++++++++++++++++++++++++++++++++++++++++++*/
body {
    background: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 2;
    color: var(--secondary-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    font-style: normal;
    text-transform: capitalize;
    font-weight: 700;
    margin: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 40px;
    font-style: normal;
    line-height: 48px;
    margin-bottom: 10px;
}

h2 {
    font-size: 36px;
    font-style: normal;
    line-height: 44px;
    margin-bottom: 10px;
}

h3 {
    font-size: 25px;
    font-style: normal;
    line-height: 40px;
    margin-bottom: 10px;
}

h4 {
    font-size: 25px;
    font-style: normal;
    line-height: 33px;
    margin-bottom: 10px;
}

h5 {
    font-size: 22px;
    font-style: normal;
    line-height: 27px;
    margin-bottom: 10px;
}

h6 {
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
    margin-bottom: 10px;
}

/*+++++ HTML Tags +++++*/
a,
.button {
    color: var(--primary-color);
    outline: none !important;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

a:focus,
a:hover {
    color: var(--primary-color);
    outline: none;
    text-decoration: none !important;
}

p {
    margin-bottom: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

pre {
    background: var(--white-color);
    padding: 15px;
    border: 1px solid var(--grey-color);
}

hr {
    margin: 0;
    padding: 0px;
    border-bottom: 1px solid #ffffff50;
    border-top: 0px;
}

b,
strong {
    font-weight: 700;
}

/*+++++ Lists (Nested) +++++*/
ol,
ul {
    padding-left: 25px;
    margin-bottom: 1em;
}

ol li {
    list-style: decimal;
}

ol ol {
    padding-left: 25px;
}

ul li {
    list-style: inherit;
}

/*+++++ Definition Lists +++++*/
dl dd {
    margin-bottom: 15px;
}

dl dd:last-child {
    margin-bottom: 0px;
}

/*+++++ Table +++++*/
table {
    border: 1px solid var(--grey-color);
    width: 100%;
    margin-bottom: 20px;
}

table td,
table th {
    border: 1px solid var(--grey-color);
    padding: 8px;
    text-align: center;
}

/*+++++ Input Textarea +++++*/
input,
input.form-control {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    font-size: 16px;
    padding: 0 15px 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
    float: none;
    margin-right: 5px;
}

textarea {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 10px 30px;
    outline: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

/*+++++ Select +++++*/
select,
select.form-control {
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 0 30px 0 15px;
    height: 51px;
    line-height: 48px;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px bottom 50%;
    background-size: 20px 20px;
}

/*===== Container =====*/
section {
    position: relative;
    padding: 40px 0px;
}

.container {
    max-width: 1300px;
}

.container-gt {
    padding: 0 60px;
}

.gt-q {
    padding: 130px 0px 210px;
}

.gt-q1 {
    padding: 210px 0px 130px;
}

.gt-section-overlap {
    margin-top: -190px;
    padding-top: 0px;
    z-index: 9;
}

.z-index-1 {
    z-index: 1;
}

html {
    overflow: auto;
}

/*===== Input Textarea =====*/
.gt-text-primary {
    color: var(--primary-color);
}

.gt-text-light {
    color: var(--grey-color);
}

.gt-text-dark {
    color: var(--dark-color);
}

.gt-text-white {
    color: var(--white-color);
}

/*===== Input bg-color =====*/
.gt-bg-primary {
    background: var(--primary-color) !important;
}

.gt-bg-white {
    background: var(--white-color) !important;
}

.gt-bg-light {
    background: var(--grey-color);
}

.gt-bg-dark {
    background: var(--dark-color);
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++
Loading
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#gt-loading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--white-color);
}

#gt-loading img {
    height: 65px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Back to Top
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#back-to-top .topbtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    margin: 0px;
    color: var(--white-color);
    background: var(--primary-color);
    z-index: 999;
    border: 1px solid var(--primary-color);
    font-size: 26px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

#back-to-top .topbtn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

#back-to-top .topbtn::before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(100% + 1px);
    height: 1px;
    bottom: -4px;
    left: 6px;
}

#back-to-top .topbtn::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(100% + 1px);
    width: 1px;
    top: 6px;
    right: -4px;
}

#back-to-top .topbtn:hover::before {
    width: calc(0% + 0px);
}

#back-to-top .topbtn:hover::after {
    height: calc(0% + 0px);
}

/*+++++ Text meant only for screen readers +++++*/
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    white-space: nowrap;
    height: 0px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: var(--grey-color);
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Button Core
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
[type="button"],
[type="reset"],
[type="submit"] {
    position: relative;
    width: auto;
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    padding: 7px 7px;
    line-height: 2;
    vertical-align: middle;
    display: inline-block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    background: var(--primary-color);
    color: var(--white-color) !important;
}

.gt-button {
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    text-transform: capitalize;
    padding: 8px 30px;
    line-height: 2;
    vertical-align: middle;
    display: inline-block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.gt-button span {
    z-index: 9;
    position: relative;
}

.gt-button:hover,
.gt-button:focus {
    background: var(--dark-color);
    color: var(--white-color);
}

.gt-button:before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(100% + 1px);
    height: 1px;
    bottom: -4px;
    left: 8px;
}

.gt-button:after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(100% + 1px);
    width: 1px;
    top: 8px;
    right: -4px;
}

.gt-button:hover:before {
    width: calc(0% + 0px);
}

.gt-button:hover:after {
    height: calc(0% + 0px);
}

.gt-button1 {
    position: relative;
    width: auto;
    background: var(--dark-color);
    color: var(--white-color);
    font-size: 16px;
    text-transform: capitalize;
    padding: 12px 30px;
    line-height: 2;
    vertical-align: middle;
    display: inline-block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.gt-button1:before {
    content: "";
    position: absolute;
    background: var(--dark-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(100% + 1px);
    height: 1px;
    bottom: -4px;
    left: 8px;
}

.gt-button1:after {
    content: "";
    position: absolute;
    background: var(--dark-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(100% + 1px);
    width: 1px;
    top: 8px;
    right: -4px;
}

.gt-button1:hover:before {
    width: calc(0% + 0px);
}

.gt-button1:hover:after {
    height: calc(0% + 0px);
}

.gt-button2 {
    position: relative;
    width: auto;
    background: var(--dark-color);
    color: var(--white-color);
    font-size: 16px;
    text-transform: capitalize;
    padding: 12px 30px;
    line-height: 2;
    vertical-align: middle;
    display: inline-block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.gt-button2:before {
    content: "";
    position: absolute;
    background: var(--white-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(100% + 1px);
    height: 1px;
    bottom: -4px;
    left: 8px;
}

.gt-button2:after {
    content: "";
    position: absolute;
    background: var(--white-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(100% + 1px);
    width: 1px;
    top: 8px;
    right: -4px;
}

.gt-button2:hover:before {
    width: calc(0% + 0px);
}

.gt-button2:hover:after {
    height: calc(0% + 0px);
}

/*+++++ Button link +++++*/
.gt-button.gt-btn-link {
    padding: 0 4px 0 0;
    background: transparent;
    color: var(--primary-color);
    line-height: normal;
}

.gt-button.gt-btn-link:hover {
    color: var(--dark-color);
}

.gt-button.gt-btn-link:before {
    left: 0;
}

.gt-button.gt-btn-link:after {
    display: none;
}

/*+++++ Button outline +++++*/
.gt-button.gt-btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.gt-button.gt-btn-outline:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color)
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Flaticon
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-family: "Flaticon";
    font-size: inherit;
    font-style: normal;
    line-height: normal;
    margin-left: 0;
}

/*+++++ Comments Box +++++*/
.comment-respond {
    margin-top: 45px;
    display: inline-block;
    width: 100%;
}

.gt-comment-area .comments-title,
.comment-respond .comment-reply-title {
    position: relative;
    margin: 0;
    padding-bottom: 0;
}

.comment-respond .comment-reply-title a {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 60%;
    margin-left: 30px;
}

.comment-respond .comment-reply-title a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.commentlist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.commentlist .comment {
    margin-top: 45px;
    margin-bottom: 0;
    vertical-align: top;
    padding: 0;
    list-style: none;
}

.commentlist .gt-comment-info {
    padding: 30px;
    border: 1px solid var(--grey-color);
    position: relative;
    background: var(--grey-color);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.commentlist ol.children {
    padding-left: 60px;
}

.commentlist .gt-comment-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.commentlist .gt-comment-avatar {
    padding-right: 15px;
}

.commentlist .gt-comment-avatar img {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.commentlist .gt-comment-box {
    position: relative;
    display: inline-block;
    width: 100%;
}

.commentlist .gt-comment-box .title:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.commentlist .comment-content p {
    margin: 0;
}

.commentlist .gt-comment-info .reply a {
    position: absolute;
    right: 30px;
    top: 30px;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
}

.commentlist .gt-comment-info .reply a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.no-comments,
.comment-awaiting-moderation {
    font-style: italic;
    margin: 15px 0;
}

/*+++++ Comments Form +++++*/
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
    padding: 0;
    margin: 0 0 30px;
}

.comment-respond .comment-form-comment {
    margin-top: 0;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    float: left;
}

.comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
    float: left;
    width: 32.6%;
    display: inline-block;
    margin: 0 15px 30px 0;
}

.comment-respond .comment-form-url {
    margin-right: 0;
}

.comment-respond .form-submit {
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    float: left;
}

.commentlist .comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
    width: 31.7%;
    float: left;
}

/*+++++ Comments Form +++++*/
ol.commentlist .pingback,
ol.commentlist .trackback {
    margin-left: 25px;
}

ol.commentlist .pingback a,
ol.commentlist .trackback a {
    color: var(--dark-color);
}

ol.commentlist .pingback a:hover,
ol.commentlist .trackback a:hover {
    color: var(--primary-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Header
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.animated {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

header#gt-header {
    position: relative;
    display: inline-block;
    width: 100%;
    clear: both;
    background: var(--white-color);
    z-index: 99;
}

header#gt-header.gt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

/*+++++ Header Top Bar +++++*/
header#gt-header .gt-top-header {
    background: var(--dark-color);
    padding: 0;
    font-size: 14px;
}

header#gt-header .gt-top-header .gt-header-contact.text-right ul {
    float: right;
}

header#gt-header .gt-top-header .gt-header-contact ul {
    margin: 0;
    padding: 0;
}

header#gt-header .gt-top-header .gt-header-contact ul li {
    list-style: none;
    display: inline-block;
    color: var(--white-color);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 7px 20px;
    float: left;
}

header#gt-header .gt-top-header .gt-header-contact ul li:last-child {
    margin-right: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#gt-header .gt-top-header .gt-header-contact ul li i {
    margin-right: 10px;
}

header#gt-header .gt-top-header .gt-header-contact ul li a {
    color: var(--white-color);
}

header#gt-header .gt-top-header .gt-header-contact ul li a:hover {
    color: var(--white-color);
    background: transparent;
}

header#gt-header .gt-top-header .text-right .gt-header-social ul,
header#gt-header .gt-top-header .gt-header-social.text-right ul {
    float: right;
}

header#gt-header .gt-top-header .gt-header-social ul {
    margin: 0;
    padding: 0;
}

header#gt-header .gt-top-header .gt-header-social ul li {
    list-style: none;
    display: inline-block;
    float: left;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header#gt-header .gt-top-header .gt-header-social ul li a {
    color: var(--white-color);
    padding: 6px 20px;
    display: inline-block;
}

header#gt-header .gt-top-header ul li a:hover {
    color: var(--white-color);
    background: var(--primary-color)
}

header#gt-header .gt-top-header .gt-header-social ul li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/*+++++ Logo +++++*/
header#gt-header .gt-bottom-header .navbar .navbar-brand {
    line-height: 80px;
}

header#gt-header .gt-bottom-header .navbar .navbar-brand img {
    height: 70px;
}

/*+++++ Header Navbar Bar +++++*/
header#gt-header .gt-bottom-header {
    min-height: 90px;
}

header#gt-header .gt-bottom-header .navbar {
    padding: 0;
}

header#gt-header .gt-bottom-header .navbar .gt-menu-contain {
    display: inline-block;
    width: 100%;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav {
    float: right;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 30px;
    color: var(--dark-color);
    line-height: 90px;
    font-weight: 400;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li:last-child {
    margin-right: 0;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li a {
    color: var(--dark-color);
    font-size: 16px;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li a:focus,
header#gt-header .gt-bottom-header .navbar .navbar-nav li a:hover,
header#gt-header .gt-bottom-header .navbar .navbar-nav li.current-menu-item a,
header#gt-header .gt-bottom-header .navbar .navbar-nav li.current_page_item a,
header#gt-header .gt-bottom-header .navbar .navbar-nav li:hover a,
header#gt-header .gt-bottom-header .navbar .navbar-nav li.current-menu-ancestor a {
    color: var(--primary-color);
}

/*+++++ Sub Menu Bar +++++*/
header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu {
    display: none;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    display: block;
    background: var(--white-color);
    position: absolute;
    top: 90px;
    left: 0;
    padding-left: 0;
    display: inline-block;
    width: 230px;
    z-index: 999;
    padding: 0;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li {
    line-height: 2;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    color: var(--dark-color);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    border-bottom: 1px solid var(--grey-color);
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li i {
    margin-left: 10px;
    font-size: 12px;
    color: var(--dark-color);
    opacity: 0.5;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li a {
    line-height: 2;
    text-transform: capitalize;
    padding: 8px 15px;
    display: inline-block;
    width: 100%;
    color: var(--dark-color);
    font-size: 16px;
    position: relative;
    overflow: hidden;
    float: left;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a,
header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-parent>a {
    color: var(--primary-color);
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li a:before {
    content: '';
    position: absolute;
    top: calc(50% - 3px);
    height: 5px;
    width: 5px;
    background: var(--primary-color);
    border-radius: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    left: 0;
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li a:hover:before,
header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a:before,
header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-parent>a:before {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu>li:hover,
header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item,
header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-parent {
    padding: 0 15px;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li.active a,
header#gt-header .gt-bottom-header .navbar .navbar-nav li.current_page_item a,
header#gt-header .gt-bottom-header .navbar .navbar-nav li:hover a,
header#gt-header .gt-bottom-header .navbar .navbar-nav li .current-menu-ancestor a {
    color: var(--primary-color);
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.active a {
    background: var(--white-color);
    color: var(--primary-color);
}

@media screen and (max-width:4000px) and (min-width:1023px) {
    header#gt-header .gt-bottom-header .navbar .navbar-nav li:hover>.sub-menu {
        display: block !important;
    }
}

/*+++++ Navigation Sub Menu +++++*/
header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
    display: none;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    background: var(--white-color);
    display: inline-block;
    width: 200px;
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.gt-submenu-icon {
    opacity: 1;
    position: absolute;
    top: 12px;
    right: 15px;
    line-height: 2;
    font-size: 12px;
    color: var(--secondary-color);
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>.gt-submenu-icon,
header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children.current-menu-parent>.gt-submenu-icon {
    color: var(--primary-color);
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover {
    color: var(--primary-color);
}

header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
    color: var(--primary-color);
    transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    -webkit-transition: all 0s ease-in-out;
}

/*+++++ Navigation search +++++*/
header#gt-header .gt-menu-search-block {
    position: relative;
    margin: 0 0 0 30px;
}

header#gt-header .gt-menu-search-block a {
    color: var(--dark-color);
    font-size: 16px;
    width: 18px;
    display: inline-block;
}

header#gt-header .gt-search-form {
    position: absolute;
    top: 59px;
    right: -30px;
    width: 350px;
    padding: 15px;
    z-index: 999;
    display: none;
    background: var(--white-color);
    -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

header#gt-header .gt-button:hover .gt-button-line-left {
    width: calc(15px - 1px);
}

/*+++++ Header Default +++++*/
header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li.active>a {
    color: var(--primary-color);
}

header#gt-header.gt-header-default .gt-bottom-header.gt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    background: var(--white-color);
}

/*+++++ Header Style-1 +++++*/
header#gt-header.gt-header-style-1.gt-has-sticky {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: transparent;
    z-index: 999;
    padding: 15px 0;
    box-shadow: none;
}

header#gt-header.gt-header-style-1.gt-has-sticky.gt-header-sticky {
    position: fixed;
    background: var(--white-color);
    padding: 0;
    -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
}

header#gt-header.gt-header-style-1 .gt-bottom-header {
    min-height: 70px;
}

header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-brand {
    line-height: normal;
    background: var(--white-color);
    padding: 25px 30px;
    position: relative;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li {
    line-height: 95px;
}

header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li>a {
    color: var(--white-color);
}

header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li>a.active {
    color: var(--primary-color);
}

header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
    color: var(--primary-color);
}

header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li i {
    color: var(--white-color);
}

header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    top: 95px;
}

header#gt-header.gt-header-style-1 .gt-header-info-box {
    margin: 0 0 0 30px;
    display: flex;
    color: var(--white-color);
}

header#gt-header.gt-header-style-1 .gt-header-call {
    display: inline-block;
    float: left;
    margin-right: 30px;
    margin-top: 5px;
}

header#gt-header.gt-header-style-1 .gt-header-call a i {
    font-size: 48px;
    margin-right: 15px;
    line-height: 56px;
}

header#gt-header.gt-header-style-1 .gt-header-call a {
    display: flex;
    align-items: flex-start;
}

header#gt-header.gt-header-style-1 .gt-header-call a .gt-call-info {
    flex: 1;
    text-transform: capitalize;
    font-size: 14px;
    color: var(--dark-color);
}

header#gt-header.gt-header-style-1 .gt-header-call a .gt-call-info span {
    width: 100%;
    float: left;
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    line-height: normal;
}

header#gt-header.gt-header-style-1 .gt-header-call a .gt-call-info h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: var(--white-color);
}

header#gt-header.gt-header-style-1 .gt-button {
    background: var(--primary-color);
}

header#gt-header.gt-header-style-1 .gt-button:hover {
    background: var(--dark-color);
}

header#gt-header.gt-header-style-1.gt-header-sticky .gt-bottom-header .navbar .navbar-nav li>a,
header#gt-header.gt-header-style-1.gt-header-sticky .gt-header-call a .gt-call-info h5 {
    color: var(--dark-color);
}

header#gt-header.gt-header-style-1.gt-header-sticky .gt-bottom-header .navbar .navbar-nav li i {
    color: var(--dark-color);
}

header#gt-header.gt-header-style-1.gt-header-sticky .gt-header-call a .gt-call-info span {
    color: var(--primary-color);
}

header#gt-header .gt-button:before,
header#gt-header .gt-button:after {
    display: none;
}

/*+++++ Header Style-2 +++++*/
header#gt-header.gt-header-style-2 .gt-top-header {
    background: var(--dark-color);
}

header#gt-header.gt-header-style-2 .gt-header-diff-block .navbar-brand img {
    height: 35px;
}

header#gt-header.gt-header-style-2 {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: var(--white-color);
    padding: 0;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#gt-header.gt-header-style-2 .navbar-brand {
    background: var(--primary-color);
    padding: 15px 30px;
    margin: 0;
    line-height: 5.1;
    text-align: center;
    width: 100%;
}

header#gt-header.gt-header-style-2 .gt-bottom-header {
    min-height: auto;
}

header#gt-header.gt-header-style-2 .gt-bottom-header .navbar .navbar-nav li {
    line-height: 75px;
}

header#gt-header.gt-header-style-2 .gt-header-info-box {
    display: flex;
}

header#gt-header.gt-header-style-2 .gt-menu-search-block {
    line-height: 76px;
    padding: 0 30px;
    background: var(--white-color);
    border-left: 1px solid var(--grey-color);
    color: #fff;
    font-size: 20px;
}

header#gt-header.gt-header-style-2 .gt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    top: 75px;
}

header#gt-header.gt-header-style-2 .gt-search-form {
    top: 77px;
}

/*Header Style-2 sticky*/
header#gt-header.gt-header-style-2.gt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
}

header#gt-header.gt-header-style-2.gt-header-sticky .gt-top-header {
    display: none;
}

header#gt-header.gt-header-style-2.gt-header-sticky .navbar-brand {
    line-height: 2.44444;
}

/*+++++Ttoggle Side Bar +++++*/
header#gt-header.gt-header-style-2 .gt-toggle-btn {
    line-height: 75px;
    padding: 22px 25px;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    z-index: 9;
}

header#gt-header.gt-header-style-2 .gt-toggle-btn a:before,
header#gt-header.gt-header-style-2 .gt-toggle-btn a:after {
    transform-origin: 50% 0%;
}

.buttons ol li:before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 23vw;
    height: 20vw;
    content: "";
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.buttons ol li:after {
    position: absolute;
    top: 38%;
    right: 7vw;
    transform: rotate(-90deg);
    z-index: 1;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    content: counter(list-counter, decimal-leading-zero);
    font-family: Helvetica;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    opacity: 0.15;
    transition: color 0.35s;
    will-change: color;
}

header#gt-header.gt-header-style-2 .gt-toggle-btn a {
    position: relative;
    display: block;
    top: 15px;
    width: 30px;
    height: 2px;
    margin: 0 auto;
    border: none;
    cursor: pointer;
    background: currentColor;
    color: inherit;
    font-size: 0;
    transition: 0.35s;
}

header#gt-header.gt-header-style-2 .gt-toggle-btn a:before,
header#gt-header.gt-header-style-2 .gt-toggle-btn a:after {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 0.35s;
}

header#gt-header.gt-header-style-2 .gt-toggle-btn a:before {
    transform: translate(-50%, -10px);
}

header#gt-header.gt-header-style-2 .gt-toggle-btn a:after {
    transform: translate(-50%, 10px);
}

/*++++++++++*/
header#gt-header.gt-header-default .gt-btn-container {
    margin: 0 0 0 30px;
}

header#gt-header.gt-header-default .gt-toggle-btn {
    padding: 0;
    margin: 0 0 0 30px;
}

header#gt-header.gt-header-default .gt-toggle-btn a {
    position: relative;
    display: inline-block;
    padding: 0;
    font-size: 38px;
    background: var(--primary-color);
    color: #fff;
    line-height: 64px;
    width: 60px;
    height: 60px;
    text-align: center;
    -webkit-border-radius: 9000px;
    -moz-border-radius: 9000px;
    border-radius: 9000px;
}

header#gt-header.gt-header-default .gt-menu-search-block {
    margin: 0 0 0 30px;
}

/*+++++ Header Style-1 +++++*/
.admin-bar header#gt-header.gt-header-sticky,
.admin-bar header#gt-header.gt-header-style-2,
.admin-bar header#gt-header.gt-header-style-1 {
    top: 32px;
}

.admin-bar header#gt-header.gt-header-default .gt-bottom-header.gt-header-sticky {
    top: 32px;
}

@media(max-width:767px) {

    .admin-bar header#gt-header.gt-header-sticky,
    .admin-bar header#gt-header {
        top: 0;
    }

    .admin-bar header#gt-header.gt-header-style-2.gt-header-sticky,
    .admin-bar header#gt-header.gt-header-style-1.gt-header-sticky {
        top: 0;
    }
}

@media only screen and (min-device-width:601px) and (max-device-width:768px) {

    .admin-bar header#gt-header.gt-header-sticky,
    .admin-bar header#gt-header.gt-header-style-2,
    .admin-bar header#gt-header.gt-header-style-1,
    .admin-bar header#gt-header.gt-header-default .gt-bottom-header.gt-header-sticky {
        top: 46px;
    }

    .admin-bar header#gt-header.gt-header-style-2.gt-header-sticky,
    .admin-bar header#gt-header.gt-header-style-1.gt-has-sticky.gt-header-sticky {
        top: 46px !important;
    }
}

@media(max-width:1599px) {
    header#gt-header .gt-bottom-header .navbar .navbar-nav li {
        margin-right: 20px;
    }
}

@media(max-width:1399px) {
    header#gt-header.gt-header-style-1 .gt-header-info-box {
        margin: 0 0 0 20px;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li {
        margin-right: 20px;
    }

    header#gt-header.gt-header-style-2 .gt-header-diff-block .navbar-brand img {
        height: 34px;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
        left: inherit;
        right: 100%;
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-brand {
        padding: 20px 15px;
    }
}

@media(max-width:1365px) {
    header#gt-header .gt-bottom-header .navbar .navbar-nav li {
        font-size: 14px;
        margin-right: 15px;
    }

    header#gt-header .gt-top-header .gt-header-social ul li a {
        font-size: 12px;
        padding: 10px 15px;
    }

    header#gt-header .gt-top-header .gt-header-contact ul li {
        font-size: 12px;
        padding: 10px 15px;
    }

    header#gt-header.gt-header-default .gt-btn-container {
        margin: 0 0 0 15px;
    }

    header#gt-header.gt-header-default .gt-toggle-btn {
        margin: 0 0 0 15px;
    }

    header#gt-header.gt-header-style-2 .navbar-brand {
        padding: 15px 10px;
        line-height: 3.22222;
    }

    header#gt-header.gt-header-style-2 .gt-header-diff-block .navbar-brand img {
        height: 25px;
    }

    header#gt-header.gt-header-style-2 .gt-bottom-header .navbar .navbar-nav li {
        margin-right: 30px;
    }

    header#gt-header.gt-header-style-2 .gt-menu-search-block {
        margin-left: 30px;
    }

    header#gt-header.gt-header-style-2 .gt-bottom-header .navbar .navbar-nav li {
        line-height: 51px;
    }

    header#gt-header.gt-header-style-2 .gt-menu-search-block {
        line-height: 51px;
        padding: 0 20px;
        margin-left: 0;
    }

    header#gt-header.gt-header-style-2 .gt-search-form {
        top: 53px;
    }

    header#gt-header.gt-header-style-2 .gt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        top: 52px;
    }

    header#gt-header.gt-header-style-2 .gt-toggle-btn {
        line-height: 51px;
        padding: 10px 20px;
    }

    header#gt-header.gt-header-style-2 .gt-toggle-btn a {
        width: 25px;
    }

    header#gt-header.gt-header-style-2 .gt-toggle-btn a:before {
        transform: translate(-50%, -10px);
    }

    header#gt-header.gt-header-style-2 .gt-toggle-btn a:after {
        transform: translate(-50%, 10px);
    }

    header#gt-header.gt-header-style-2.gt-header-sticky .navbar-brand {
        line-height: 1.455;
    }

    header#gt-header.gt-header-style-2.gt-header-sticky .gt-bottom-header .navbar .navbar-nav li {
        line-height: 57px;
    }

    header#gt-header.gt-header-style-2.gt-header-sticky .gt-menu-search-block,
    header#gt-header.gt-header-style-2.gt-header-sticky .gt-toggle-btn {
        line-height: 57px;
    }

    /*+++++ Header Style-1 +++++*/
    header#gt-header.gt-header-style-1 .gt-header-call {
        display: none;
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li {
        line-height: 85px;
    }
}

@media(max-width:1023px) {

    /*+++++ Button Toggler +++++*/
    header#gt-header .gt-bottom-header .navbar-toggler {
        font-size: 20px;
        padding: 10px 15px;
        line-height: normal;
        float: right;
        outline: none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        margin: 0 0 0 15px;
        color: #ffffff;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-collapse {
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        max-height: 330px;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-brand {
        line-height: 60px;
    }

    header#gt-header .gt-bottom-header {
        min-height: 60px;
    }

    header#gt-header .gt-search-form {
        top: 51px;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav {
        float: left;
        width: 100%;
        display: inline-block;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li {
        float: left;
        width: 100%;
        display: inline-block;
        line-height: normal;
        position: relative;
        font-size: 16px;
        position: relative;
        border-bottom: 1px solid var(--grey-color);
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li a {
        width: 100%;
        display: inline-block;
        padding: 15px;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li i {
        margin-left: 0;
        opacity: 1;
        font-size: 16px;
        position: absolute;
        right: 0;
        margin-top: 0;
        top: 0;
        padding: 22px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        background: #f5f5f5;
        box-shadow: none;
        display: inline-block;
        width: 100%;
        float: left;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.gt-submenu-icon {
        opacity: 1;
        position: absolute;
        top: 0;
        right: 0;
        line-height: 2;
        font-size: 12px;
        padding: 12px 30px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li a {
        padding: 10px 15px;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li>a:hover,
    header#gt-header .gt-bottom-header .navbar .navbar-nav li:hover>a {
        background: var(--primary-color);
        color: var(--white-color);
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
        background: var(--primary-color);
        color: var(--white-color);
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>.gt-submenu-icon,
    header#gt-header .gt-bottom-header .navbar .navbar-nav li:hover>.gt-submenu-icon {
        color: var(--white-color);
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
        position: relative;
        top: 0;
        left: 0;
        background: transparent;
        display: inline-block;
        width: 100%;
        float: left;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu>li>a {
        background: #f5f5f5;
        color: var(--secondary-color);
    }

    header#gt-header .gt-top-header .gt-header-contact ul li {
        padding: 10px 10px;
    }

    header#gt-header.gt-header-default .gt-menu-search-block {
        margin-left: auto !important;
    }

    header#gt-header.gt-header-default .gt-btn-container {
        display: none;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu>li:hover,
    header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item,
    header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-parent {
        padding: 0;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a,
    header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
    header#gt-header .gt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-parent a {
        margin-left: 15px;
    }

    /*+++++ Header Style-2 +++++*/
    header#gt-header.gt-header-style-2 {
        position: relative;
    }

    .admin-bar header#gt-header.gt-header-style-2 {
        top: 0;
    }

    .admin-bar header#gt-header.gt-header-style-2.gt-header-sticky {
        top: 32px;
    }

    header#gt-header.gt-header-style-2 .gt-top-header,
    header#gt-header.gt-header-style-2 .gt-toggle-btn {
        display: none;
    }

    header#gt-header.gt-header-style-2 .navbar-brand {
        padding: 20px 10px;
        line-height: normal;
    }

    header#gt-header.gt-header-style-2 .gt-header-info-box {
        margin-left: auto !important;
    }

    header#gt-header.gt-header-style-2 .gt-bottom-header .navbar-toggler {
        margin: 0 15px 0 0;
    }

    header#gt-header.gt-header-style-2 .gt-menu-search-block {
        line-height: 66px;
        margin-left: 0;
        margin-right: 0;
        float: right;
        display: inline-block;
    }

    header#gt-header.gt-header-style-2 .gt-bottom-header .navbar .navbar-nav li {
        line-height: normal;
        margin-right: 0;
    }

    header#gt-header.gt-header-style-2 .gt-bottom-header .navbar .navbar-collapse {
        top: 68px;
    }

    header#gt-header.gt-header-style-2 .gt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        top: 0;
    }

    header#gt-header.gt-header-style-2.gt-header-sticky .gt-bottom-header .navbar .navbar-nav li {
        line-height: normal;
    }

    /*+++++ Header Style-1 +++++*/
    header#gt-header.gt-header-style-1.gt-has-sticky {
        top: 0;
        padding: 0;
        position: relative;
        background: var(--white-color);
    }

    header#gt-header.gt-header-style-1.gt-has-sticky.gt-header-sticky {
        top: 0;
        background: var(--white-color);
    }

    .admin-bar header#gt-header.gt-header-style-1.gt-has-sticky.gt-header-sticky {
        top: 32px;
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-brand {
        padding: 18px 0;
    }

    header#gt-header.gt-header-style-1 .gt-header-call {
        margin-top: 0;
        margin-right: 15px;
        display: flex;
    }

    header#gt-header.gt-header-style-1 .gt-header-info-box {
        margin-left: auto;
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
        color: var(--white-color);
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li {
        line-height: normal;
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li>a,
    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li {
        color: var(--dark-color);
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        top: 0;
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li>a:hover,
    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li:hover>a {
        color: var(--white-color);
    }

    header#gt-header.gt-header-style-1.gt-has-sticky.gt-header-sticky .gt-bottom-header .navbar .navbar-collapse {
        top: 100%;
    }

    header#gt-header.gt-header-style-1 .gt-header-call a .gt-call-info h5,
    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li i {
        color: var(--dark-color);
    }

    header#gt-header.gt-header-style-1 .gt-header-call a .gt-call-info span {
        color: var(--primary-color);
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-nav li.menu-active i {
        color: var(--white-color);
    }
}

@media(max-width:767px) {
    header#gt-header.gt-header-style-2 .navbar-brand {
        padding: 20px 15px;
        line-height: normal;
        text-align: left;
        display: inline-block;
        width: auto;
    }

    header#gt-header.gt-header-style-2 .gt-menu-search-block {
        display: none;
    }

    header#gt-header.gt-header-style-2 .gt-bottom-header .navbar .navbar-collapse {
        top: 0;
    }

    header#gt-header.gt-header-style-2 .gt-bottom-header .navbar-toggler,
    header#gt-header.gt-header-style-2 .gt-menu-search-block {
        margin-top: -68px;
    }

    header#gt-header.gt-header-style-1 .gt-header-call {
        display: none;
    }

    header#gt-header.gt-header-style-1.gt-has-sticky.gt-header-sticky .gt-bottom-header .navbar .navbar-brand {
        padding: 18px 18px 18px 0;
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-brand {
        padding: 18px 0;
    }

    .admin-bar header#gt-header.gt-header-style-2.gt-header-sticky {
        top: 0;
    }

    header#gt-header.gt-header-default .gt-top-header,
    header#gt-header.gt-header-default .gt-btn-container {
        display: none !important;
    }

    .admin-bar header#gt-header.gt-header-style-1.gt-has-sticky.gt-header-sticky,
    .admin-bar header#gt-header.gt-header-default .gt-bottom-header.gt-header-sticky {
        top: 0;
    }
}

@media(max-width:479px) {

    .gt-menu-search-block,
    .gt-sidebar,
    .gt-toggle-btn,
    header#gt-header.gt-header-style-1 .gt-header-info-box {
        display: none !important;
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar .navbar-brand {
        padding: 0;
    }

    header#gt-header.gt-header-style-1 .gt-bottom-header .navbar {
        padding: 10px 0;
    }

    header#gt-header.gt-header-style-1.gt-has-sticky.gt-header-sticky .gt-bottom-header .navbar .navbar-brand {
        padding: 0;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Sidebar Menu
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    z-index: 9999;
    opacity: 0.8;
    display: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-siderbar-open .gt-background-overlay {
    display: block;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-siderbar-open .gt-sidebar {
    right: 0;
    opacity: 1;
}

.gt-sidebar {
    width: 410px;
    background: var(--white-color);
    opacity: 0;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-sidebar .gt-close-btn .gt-close {
    position: absolute;
    left: -45px;
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    top: 90px;
    font-size: 20px;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.gt-sidebar-block {
    padding: 60px 30px 30px 30px;
    height: 100%;
}

.gt-sidebar-header .gt-sidebar-logo {
    margin-bottom: 15px;
    height: 40px;
}

.gt-sidebar h5 {
    font-size: 36px;
    margin-bottom: 10px;
}

.gt-sidebar ul {
    margin: 0;
    padding: 0;
}

.gt-sidebar ul li {
    list-style: none;
    margin: 0;
    padding: 0 0 10px;
}

.gt-sidebar ul li a {
    color: var(--secondary-color);
}

/*+++++++++++*/
.gt-sidebar-contact {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}

.gt-sidebar-contact li {
    display: flex;
    align-items: flex-start;
}

.gt-sidebar-contact li i {
    line-height: 2;
    color: var(--primary-color);
}

.gt-sidebar-contact li span {
    margin-left: 15px;
    flex: 1;
}

/*+++++++++++*/
.gt-sidebar-social ul {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.gt-sidebar-social ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.gt-sidebar-social ul li:last-child {
    margin-right: 0;
}

.gt-sidebar-social ul li a {
    background: var(--dark-color);
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.gt-sidebar-social ul li a:hover {
    background: var(--primary-color);
}

/*+++++++++*/
.gt-sidebar .widget {
    background: transparent;
    padding: 0;
}

.gt-foote-recent-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.gt-foote-recent-post:last-child {
    margin-bottom: 0;
}

.gt-foote-recent-post .gt-foote-recent-post-media {
    display: none;
}

.gt-foote-recent-post .gt-foote-recent-post-info {
    flex: 1;
    align-self: center;
}

.gt-foote-recent-post .gt-foote-recent-post-info .gt-post-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 22px !important;
    float: left;
    line-height: normal;
    width: 100%;
    display: inline-block;
}

.gt-foote-recent-post .gt-foote-recent-post-info .gt-post-date i {
    color: var(--primary-color);
    margin-right: 10px;
}

.gt-foote-recent-post .gt-foote-recent-post-info h6 {
    color: var(--white-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gt-foote-recent-post .gt-foote-recent-post-info h6 a:hover {
    color: var(--primary-color);
}

/* +++++++*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Breadcrumb
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.gt-breadcrumb {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 90px 0;
    position: relative;
    text-align: center;
}

.gt-breadcrumb:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    opacity: 0.9;
}

.gt-breadcrumb .gt-breadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 0;
    color: var(--white-color);
}

.gt-breadcrumb-container .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.gt-breadcrumb-container .breadcrumb li {
    list-style-type: none;
    margin-right: 15px;
    padding-left: 0;
}

.gt-breadcrumb-container .breadcrumb li.active {
    color: var(--primary-color);
}

.gt-breadcrumb-container .breadcrumb li a {
    color: var(--white-color);
}

.gt-breadcrumb-container .breadcrumb li a:hover {
    color: var(--primary-color);
}

.gt-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f125";
    font-size: 12px;
    font-family: "Ionicons";
    padding-right: 15px;
    color: var(--white-color);
}

.gt-yoest-breadcumbs #breadcrumbs {
    margin: 0;
    padding: 0;
}

.gt-yoest-breadcumbs #breadcrumbs span {
    color: var(--dark-color);
}

.gt-yoest-breadcumbs #breadcrumbs span a {
    padding: 0 5px;
}

.gt-yoest-breadcumbs #breadcrumbs span strong {
    font-weight: 400;
    padding-left: 5px;
}

@media(max-width:1023px) {
    .gt-breadcrumb {
        text-align: center;
    }

    .gt-breadcrumb .gt-breadcrumb-title h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .gt-breadcrumb-container .breadcrumb {
        display: inline-flex;
    }

    .gt-breadcrumb-img.text-right {
        text-align: center !important;
    }
}

@media(max-width:767px) {
    .gt-breadcrumb .gt-breadcrumb-title h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .gt-breadcrumb-container .breadcrumb li,
    .gt-breadcrumb-container .breadcrumb li i {
        font-size: 14px;
    }

    .gt-breadcrumb-container .breadcrumb li {
        margin-right: 10px;
    }

    .gt-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        padding-right: 10px;
        font-size: 12px;
    }
}

@media(max-width:479px) {
    .gt-breadcrumb .gt-breadcrumb-title h1 {
        font-size: 30px;
        line-height: 38px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Blog Sidebar
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.widget {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    float: left;
    position: relative;
    padding: 30px;
    background: var(--white-color);
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.widget:last-child {
    margin-bottom: 0;
}

/*+++++ Widget Title +++++*/
.widget .widget-title {
    margin-bottom: 15px;
    padding: 0 0 8px;
    font-size: 28px;
    position: relative;
    line-height: 36px;
    position: relative;
}

.widget .widget-title::before {
    content: "";
    width: 60px;
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background: var(--primary-color);
}

/*+++++ SideBar - Search +++++*/
.search-form {
    position: relative;
}

.search-form label {
    width: 100%;
    margin-bottom: 0;
    float: left;
    width: 100%;
}

.search-submit {
    background: var(--dark-color);
    border: none;
    padding: 0;
    position: absolute;
    text-align: center;
    color: var(--white-color) !important;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.search-submit:before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.search-submit:hover {
    color: var(--white-color) !important;
    background: var(--dark-color);
    outline: none;
}

/*+++++ widget-menu +++++*/
.widget ul {
    padding: 0;
    margin: 0;
}

.widget ul li {
    list-style: none;
    margin: 0 0 15px 0;
}

.widget ul li:last-child {
    margin-bottom: 0;
}

.widget ul ul.children {
    padding-left: 25px;
    margin-top: 15px;
}

.widget ul li a {
    padding: 0 0 0 20px;
    color: var(--secondary-color);
    position: relative;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    position: relative;
}

.widget ul li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.widget.widget_archive ul li>a:before,
.widget.widget_categories ul li>a:before,
.widget.widget_meta ul li a:before,
.widget.widget_recent_comments ul li:before,
.widget.widget_recent_entries ul li>a:before,
.widget.widget_nav_menu ul li>a:before,
.widget.widget_pages ul li a:before {
    position: absolute;
    content: '\f054';
    left: 0;
    font-size: 12px;
    top: 6px;
    color: inherit;
    font-family: "Font Awesome 5 Free";
    line-height: normal;
    font-weight: 900;
    color: var(--primary-color);
}

/*+++++ SideBar - Recent Comments +++++*/
.widget.widget_recent_comments #recentcomments li,
.widget.widget_recent_comments ul li {
    padding-left: 20px;
    position: relative;
}

.widget.widget_recent_comments #recentcomments li.recentcomments span a,
.widget.widget_recent_comments ul li.recentcomments span a {
    color: var(--secondary-color);
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:before,
.widget.widget_recent_comments ul li.recentcomments a:before {
    display: none;
}

.widget.widget_recent_comments #recentcomments li.recentcomments a,
.widget.widget_recent_comments ul li.recentcomments a {
    color: var(--primary-color);
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:hover,
.widget.widget_recent_comments ul li.recentcomments a:hover {
    color: var(--primary-color);
    text-decoration: underline !important;
}

.widget.widget_recent_comments ul li:before,
.widget.widget_recent_comments ul li:before {
    content: '\f27a';
    font-size: 12px;
    top: 8px;
    font-weight: 400;
}

.widget.widget_archive ul>li a:before {
    left: 0;
    top: 8px;
    font-size: 10px;
}

.widget.widget_archive ul li {
    font-weight: 400;
    color: var(--primary-color);
}

/*+++++  SideBar Calendar  +++++*/
.widget_calendar table caption {
    caption-side: inherit;
    padding: 0 0 10px;
    color: var(--dark-color);
    font-weight: 500;
}

.widget_calendar table#wp-calendar {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    background: var(--white-color);
}

.widget_calendar .calendar_wrap td#today {
    background: var(--primary-color);
    color: var(--white-color);
}

.widget_calendar .calendar_wrap td#today a {
    color: var(--white-color);
}

.widget_calendar .calendar_wrap table th {
    background: var(--white-color);
    color: var(--dark-color);
}

.widget_calendar .calendar_wrap table th,
.widget_calendar .calendar_wrap table td {
    padding: 8px;
    text-align: center;
}

/*+++++  widget_categories  +++++*/
.widget.widget_categories ul li>a {
    padding-left: 30px;
}

.widget.widget_categories ul>li a:before {
    left: 0;
    top: 5px;
    content: '\f07c';
    font-weight: 400;
    font-size: 14px;
    color: var(--primary-color);
}

.widget_categories ul>li:last-child {
    margin-bottom: 0;
}

/*+++++  Meta - widget RSS +++++*/
.widget.widget_rss ul li {
    margin-bottom: 30px;
}

.widget.widget_rss ul li:last-child {
    margin-bottom: 0;
}

.widget.widget_rss ul li a {
    padding-left: 0;
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 700;
    font-family: var(--title-fonts);
}

.widget.widget_rss ul li a:hover {
    color: var(--primary-color);
}

.widget.widget_rss ul li a:before {
    display: none;
}

.widget.widget_rss ul li cite {
    font-weight: 700;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

.widget.widget_rss ul li .rss-date {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1;
    float: left;
    display: inline-block;
    width: 100%;
    margin: 5px 0;
}

/*+++++ widget Nav Menu +++++*/
.widget.widget_nav_menu ul li .sub-menu,
.widget ul.menu li .sub-menu {
    display: block !important;
    padding-left: 20px;
    margin-top: 15px;
}

/*+++++  SideBar - widget Recent Entries +++++*/
.widget_recent_entries ul li .post-date {
    font-weight: 700;
    color: var(--dark-color);
}

/*+++++ SideBar - Tags +++++*/
.widget_tag_cloud .tag-cloud-link {
    font-size: 14px !important;
    background: var(--white-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    color: var(--dark-color);
    padding: 2px 12px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid var(--grey-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.widget_tag_cloud .tag-cloud-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

@media(max-width:1023px) {
    .sidebar.widget-area {
        margin-top: 45px;
    }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
sidebar
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.widget.widget-port {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.widget.widget-port .menu {
    margin: 0;
    padding: 0;
}

.widget.widget-port .menu li {
    margin: 0 0 10px;
}

.widget.widget-port .menu li:last-child {
    margin: 0;
}

.widget.widget-port .menu li a {
    padding: 15px 15px 15px 30px;
    border: none;
    background: var(--grey-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.widget.widget-port .menu li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 100%;
    display: inline-block;
    background: var(--dark-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.widget.widget-port .menu li.current_page_item a {
    color: var(--primary-color);
}

.widget.widget-port .menu li:hover a:before {
    content: "";
    position: absolute;
    height: 100%;
    background: var(--primary-color);
}

.widget.widget-port .menu li.current_page_item a:before {
    content: "";
    position: absolute;
    height: 100%;
    background: var(--primary-color)
}


blockquote {
    background: var(--white-color);
    padding: 15px 30px;
    border: 1px solid var(--grey-color);
    border-radius: 0;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 30px;
}

blockquote cite {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
}

blockquote strong {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    font-style: italic;
    text-transform: uppercase;
    font-weight: 700;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Blog
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-blog-post {
    margin-bottom: 30px;
    background: var(--white-color);
    display: inline-block;
    width: 100%;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.gt-blog-post .gt-post-media {
    margin-bottom: 0;
    position: relative;
}

.gt-blog-post .gt-blog-contain {
    padding: 30px;
    display: inline-block;
    position: relative;
    width: 100%;
}

.gt-blog .owl-carousel .gt-blog-post .gt-blog-contain {
    padding-bottom: 15px;
}

.gt-blog-col-3 .gt-blog-post .gt-blog-contain .gt-blog-title {
    font-size: 22px;
    line-height: 30px;
}

.gt-blog-post .gt-blog-contain .gt-blog-title {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 5px;
}

.gt-blog-post .gt-post-meta ul {
    margin: 0 0 15px;
    padding: 0;
    width: 100%;
    display: -ms-flexbox !important;
    display: flex !important;
    justify-content: space-between;
}

.gt-blog-post .gt-post-meta ul li {
    list-style: none;
    margin-right: 15px;
    font-family: var(--title-fonts);
    align-self: center !important;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--dark-color);
}

.gt-blog-post .gt-post-meta ul li:last-child {
    margin-right: 0;
}

.gt-blog-post .gt-post-meta ul li img {
    border-radius: 900px;
    margin-right: 10px;
    width: 32px;
    height: 32px;
}

.gt-blog-post .gt-post-meta ul li a {
    color: var(--dark-color);
}

@media(max-width:1190px) {
    .gt-blog-post .gt-blog-contain {
        padding: 15px;
    }
}

@media (max-width:479px) {
    .gt-blog-post .gt-post-meta ul li a {
        display: inline-block;
        margin-top: 15px;
    }
}

.gt-blog-post .gt-post-meta ul li a:hover {
    color: var(--primary-color);
}

.gt-blog-post .gt-post-meta ul li i {
    margin-right: 5px;
    color: var(--primary-color);
}

.gt-blog-post .gt-post-meta ul li .gt-post-authors {
    display: flex;
}

.gt-blog-post .gt-post-meta ul li .gt-post-authors span {
    flex: 1;
    white-space: nowrap;
    align-self: center;
}

.gt-blog.text-left .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.gt-blog.text-left .owl-item {
    opacity: 0;
    visibility: hidden;
}

.gt-blog.text-left .owl-item.active {
    opacity: 1;
    visibility: visible;
}

/* ++++++++ */
.gt-blog_inner.right-top,
.gt-blog_inner.right-bottom {
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    right: 0;
}

.gt-blog_inner.right-top {
    top: 0;
}

.gt-blog_inner.right-bottom {
    top: 50%;
}

.gt-blog_inner.right-top .gt-blog-body,
.gt-blog_inner.right-bottom .gt-blog-body {
    margin: 0px;
    background: var(--white-color);
    border: 1px solid var(--grey-color);
    padding: 24px 32px;
    width: 50vw;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Blog
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-blog-post .gt-post-media .gt-post-date a {
    position: absolute;
    bottom: -10px;
    z-index: 9;
    left: 30px;
    background: var(--primary-color);
    padding: 5px 15px;
    color: var(--white-color);
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}

.gt-blog .owl-carousel .gt-blog-post {
    margin-bottom: 0;
}

.gt-blog .owl-carousel .gt-blog-post .gt-blog-contain .gt-blog-title {
    font-size: 26px;
    line-height: 34px;
}

.gt-blog .owl-carousel .gt-blog-post .gt-blog-contain .gt-post-meta {
    border-top: 1px solid var(--grey-color);
    padding-top: 15px;
    margin-top: 0;
}

.gt-blog .owl-carousel .gt-blog-post .gt-blog-contain .gt-post-meta ul {
    margin: 0;
}

.gt-blog .owl-carousel .owl-nav button.owl-prev::before,
.gt-blog .owl-carousel .owl-nav button.owl-prev::after,
.gt-blog .owl-carousel .owl-nav button.owl-next::before,
.gt-blog .owl-carousel .owl-nav button.owl-next::after {
    content: "";
    background: var(--dark-color);
}

/* ++++++ */
@media(max-width:1365px) {

    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email,
    .comment-respond .comment-form-url {
        float: left;
        width: 31.66%;
    }
}

@media(max-width:767px) {
    .commentlist ol.children {
        padding-left: 30px;
    }

    .commentlist .gt-comment-info {
        padding: 15px;
    }

    .commentlist .gt-comment-info .reply a {
        right: 15px;
        top: 15px;
    }

    .comment-respond .comment-form-author,
    .comment-respond .comment-form-email,
    .comment-respond .comment-form-url {
        width: 100%;
        margin-right: 0;
    }

    .commentlist .gt-comment-avatar {
        width: 90px;
    }
}

@media(max-width:479px) {
    .commentlist .gt-comment-wrap {
        display: -ms-flexbox;
        display: inline-block;
        -ms-flex-align: start;
        align-items: inherit;
        width: 100%;
    }

    .commentlist .gt-comment-avatar {
        margin: 0 0 15px 0;
    }

    .gt-blog-post .gt-blog-contain {
        padding: 15px;
    }

    .gt-blog-post .gt-post-meta ul {
        display: inline-block !important;
        margin: 0;
    }

    .gt-blog-post .gt-post-meta ul li {
        font-size: 14px;
        margin-bottom: 5px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Pagination
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-pagination {
    margin-top: 15px;
}

.gt-pagination .page-numbers {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gt-pagination .page-numbers li:first-child .page-numbers {
    margin-left: 0;
}

.gt-pagination .page-numbers li .page-numbers {
    position: relative;
    display: block;
    padding: 0px 15px;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    margin: 0 5px;
    color: var(--dark-color);
    background-color: var(--white-color);
    border: 1px solid var(--grey-color);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.gt-pagination .page-numbers li .page-numbers:hover {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 2;
}

.gt-pagination .page-numbers li .page-numbers:focus {
    box-shadow: none;
    outline: 0;
    z-index: 2;
}

.gt-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
    cursor: pointer
}

.gt-pagination .page-numbers li .page-numbers.current {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 1;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.gt-pagination .page-numbers li .next.page-numbers,
.gt-pagination .page-numbers li .prev.page-numbers {
    width: auto;
}

@media(max-width:767px) {

    .gt-pagination .page-numbers li .next.page-numbers,
    .gt-pagination .page-numbers li .prev.page-numbers {
        width: auto;
        display: none;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Error
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-error-block {
    text-align: center;
}

.gt-error-block .gt-errot-text {
    font-size: 420px;
    font-family: var(--title-fonts);
    color: var(--primary-color);
    line-height: 0.8;
    margin-bottom: 30px;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 700;
}

@media(max-width:1023px) {
    .gt-error-block .gt-errot-text {
        font-size: 320px;
    }
}

@media(max-width:767px) {
    .gt-error-block .gt-errot-text {
        font-size: 200px;
    }

    .gt-error-block h2 {
        font-size: 26px;
        line-height: 34px;
    }
}

@media(max-width:479px) {
    .gt-error-block .gt-errot-text {
        font-size: 130px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Footer
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
footer#gt-footer {
    background: var(--dark-color);
    display: inline-block;
    width: 100%;
    float: left;
}

footer#gt-footer .gt-footer-top {
    padding: 60px 0 0;
}

footer#gt-footer .gt-copyright-footer {
    padding: 15px 0;
    background: var(--dark-color);
}

footer#gt-footer .gt-copyright-footer .gt-copyright {
    text-align: center;
    display: inline-block;
    width: 100%;
}

footer#gt-footer .gt-copyright-footer .gt-copyright a {
    color: var(--white-color);
}

footer#gt-footer .gt-copyright-footer .gt-copyright a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

/*===== Footer Widget =====*/
footer#gt-footer .gt-footer1 {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 45px;
}

footer#gt-footer .gt-footer1 .footer-title {
    margin-bottom: 20px;
    padding: 0 0 15px;
    font-size: 26px;
    position: relative;
    line-height: 34px;
}

footer#gt-footer .gt-footer1 .footer-title::before {
    content: "";
    width: 60px;
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background: var(--primary-color);
}

footer#gt-footer .gt-footer1 ul li a {
    padding: 0;
}

footer#gt-footer .gt-footer1 ul li a:hover {
    color: var(--primary-color);
}

footer#gt-footer table td,
footer#gt-footer table th {
    border: 1px solid var(--secondary-color);
}

footer#gt-footer .calendar_wrap table caption {
    caption-side: inherit;
    padding: 0 0 10px;
    font-weight: 500;
}

footer#gt-footer .calendar_wrap td#today {
    background: var(--primary-color);
    color: var(--white-color);
}

footer#gt-footer .calendar_wrap td#today a {
    color: var(--white-color);
}

footer#gt-footer ul li a.rsswidget {
    padding-left: 0;
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 700;
    font-family: var(--title-fonts);
}

footer#gt-footer ul li .rss-date {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1;
    float: left;
    display: inline-block;
    width: 100%;
    margin: 5px 0;
}

footer#gt-footer ul li cite {
    font-weight: 700;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

footer#gt-footer .search-form {
    position: relative;
}

footer#gt-footer .search-form .search-submit {
    background: var(--primary-color);
    border: none;
    position: absolute;
    text-align: center;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

footer#gt-footer .search-form .search-submit:before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

footer#gt-footer .search-form .search-submit:hover {
    background: var(--dark-color);
}

footer#gt-footer .search-form input {
    background: var(--white-color);
    border-color: var(--white-color);
}

/*=========*/
#gt-footer .gt-footer-style-1 {
    background: transparent;
    color: var(--white-color);
    overflow: hidden;
}

footer#gt-footer .gt-footer-style-1 .gt-footer1 .footer-title {
    color: var(--white-color);
}

footer#gt-footer .gt-footer-style-1 .gt-footer1 ul.menu li a,
footer#gt-footer .gt-footer-style-1 .gt-footer2 .gt-service li a,
footer#gt-footer .gt-footer-style-1 .gt-footer1 ul li a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    position: relative;
    border: none;
    padding: 0px;
}

footer#gt-footer .gt-footer-style-1 .gt-footer1 ul li a:hover {
    color: var(--primary-color);
}

footer#gt-footer .gt-footer-style-1 .gt-footer1 ul.menu li a:before {
    background: var(--primary-color);
}

#gt-footer .gt-footer-style-1 .gt-footer1:first-child {
    margin-bottom: 45px;
}

#gt-footer .gt-footer-style-1 .gt-footer-logo {
    height: 60px;
    margin-bottom: 30px;
}

.gt-footer-style-1 .gt-footer1 ul li {
    margin: 0 0 5px 0;
    color: var(--primary-color);
}

.gt-footer1 .menu-portfolio-menu-container {
    margin-left: -6px;
}

/*++++++++*/
#gt-footer .gt-footer-style-1 .gt-footer1:first-child {
    margin-bottom: 45px;
}

#gt-footer .gt-footer-style-1 .gt-footer1 p {
    color: rgba(255, 255, 255, 0.9);
}

#gt-footer .gt-footer-style-1 .gt-footer-logo {
    height: 60px;
    margin-bottom: 30px;
}

/*++++++++*/
.gt-footer-social ul {
    margin: 0;
    padding: 0;
}

.gt-footer-social ul li {
    list-style: none;
    float: left;
    margin-right: 10px;
}

.gt-footer-social ul li:last-child {
    margin-right: 0;
}

.gt-footer-social ul li a {
    background: var(--white-color);
    color: var(--primary-color) !important;
    font-size: 18px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    margin-right: 4px !important;
}

.gt-footer-social ul li a:last-child {
    margin-right: 0px;
}

footer#gt-footer .gt-footer-social ul li a:hover {
    background: var(--white-color);
    color: var(--white-color);
}

/*++++++ footer form css++++++ */
.gt-footer-form {
    position: relative;
}

.gt-footer-form input[type="submit"] {
    position: absolute;
    margin-top: 0;
    right: 0;
    top: 0;
    padding: 12px 15px;
}

/*++++++ gt-footer-bottom++++++*/
footer#gt-footer .gt-footer-style-1 .gt-footer-top .gt-footer-bottom-list {
    background-color: var(--grey-color);
    padding: 15px 30px;
    display: inline-block;
    width: 100%;
}

footer#gt-footer .gt-footer-style-1 .gt-footer-top .gt-footer-bottom-list .gt-footer-items {
    display: flex;
}

footer#gt-footer .gt-footer-style-1 .gt-footer-top .gt-footer-bottom-list .gt-footer-items i {
    align-self: center;
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 28px;
    line-height: 36px;
}

footer#gt-footer .gt-footer-style-1 .gt-footer-top .gt-footer-bottom-list .gt-footer-items .gt-footer-items-info h4 {
    font-size: 24px;
    line-height: 32px;
}

footer#gt-footer .gt-footer-style-1 .gt-footer-top .gt-footer-bottom-list .gt-footer-items .gt-footer-items-info span {
    color: var(--secondary-color);
}

footer#gt-footer .gt-footer-style-1 .gt-footer-img {
    position: absolute;
    left: 75%;
    width: 280px;
    bottom: -20px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Section Title
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-section-title-box.text-center {
    position: relative;
    margin-bottom: 60px;
    padding: 0 15em;
}

.gt-section-title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
    font-family: var(--title-fonts);
    margin: 0px 0px 60px 0px;
}

.gt-section-title1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 46px;
    font-family: var(--title-fonts);
    margin: 0px 0px 0px 0px;
}

.gt-section-title-box .gt-section-sub-title {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.1em;
    font-weight: 500;
    position: relative;
    color: var(--primary-color);
    display: inline-block;
    width: 100%;
    margin: 0 0 10px;
}

.gt-section-title-box .gt-section-title {
    font-size: 42px;
    line-height: 49px;
    font-weight: 700;
    font-family: var(--title-fonts);
    margin: 0 0 5px;
}

@media (max-width:1199px) {
    .gt-section-title-box.text-center {
        padding: 0;
    }
}

@media (max-width:1023px) {
    .gt-section-title-box .gt-section-title {
        font-size: 44px;
        line-height: 52px;
    }
}

@media(max-width:767px) {
    .gt-section-title-box.text-center {
        margin-bottom: 30px;
    }
}

@media(max-width:479px) {
    .gt-section-title-box .gt-section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .gt-icon-box-title span {
        font-size: 19px;
        line-height: 27px;
    }

    .gt-icon-box-style-01 .gt-icon-box-content {
        margin-left: 15px;
        margin-top: 15px;
    }

    .gt-heading .gt-heading-title {
        font-size: 22px;
    }
}

.pt-section-title-margin .gt-section-title-box .gt-section-description {
    margin: 0;
}

/*+++++primary color section left and right ++++++++*/
.red-section-style:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.red-section-style-left::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.white-section-style:after {
    content: "";
    position: absolute;
    right: 100%;
    top: 0px;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--white-color);
}

@media(max-width:1190px) {
    .white-section-style:after {
        content: "";
        display: none;
    }
}

.grey-section-style:after {
    content: "";
    position: absolute;
    right: 100%;
    top: -30px;
    display: inline-block;
    width: 100%;
    height: 134%;
    background: #F4F4F4;
}

.primary-section-style:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

@media(max-width:1190px) {
    .primary-section-style:after {
        content: "";
        display: none;
    }
}

@media(max-width:1190px) {
    .red-section-style:after {
        content: "";
        display: none;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
isotope Portfolio
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-grid-item.visible_item,
.gt-masonry-item.visible_item {
    display: none
}

.gt-filters .gt-filter-button-group ul {
    margin: 0 0 45px;
    padding: 0;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.gt-filters .gt-filter-button-group ul li {
    list-style: none;
    color: var(--dark-color);
    text-transform: capitalize;
    display: inline-block;
    cursor: pointer;
    padding: 10px 30px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.gt-filters .gt-filter-button-group ul li:last-child {
    margin-right: 0;
}

.gt-filters .gt-filter-button-group ul li.active,
.gt-filters .gt-filter-button-group ul li.active:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.gt-filters .gt-filter-button-group ul li:hover {
    color: var(--primary-color);
}

.gt-grid {
    display: inline-block;
    width: 100%;
    float: left;
}

.gt-grid:after {
    content: '';
    display: block;
    clear: both;
}

.gt-col-3 {
    width: 25%;
    padding: 0 15px 30px;
}

.gt-col-6 {
    width: 50%;
    padding: 0 15px 30px;
}

.gt-col-4 {
    width: 33.33%;
    padding: 0 15px 30px;
}

.gt-grid.no-padding .gt-grid-item,
.gt-masonry.no-padding .gt-masonry-item {
    padding: 0;
}

.gt-btn-load-container {
    margin-top: 45px;
    display: inline-block;
    width: 100%;
}

/*++++++++*/
.gt-masonry {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gt-masonry .igt-lg-6 {
    width: 50%;
    padding: 0 15px 30px;
}

.gt-masonry .igt-lg-3 {
    width: 25%;
    padding: 0 15px 30px;
}

.gt-masonry.no-padding .igt-lg-6,
.gt-masonry.no-padding .igt-lg-3 {
    padding: 0;
}

@media(max-width:1365px) {
    .gt-col-3 {
        width: 33.33%;
    }

    .gt-masonry .igt-lg-6 {
        width: 66.66%;
    }

    .gt-masonry .igt-lg-3 {
        width: 33.33%;
    }
}

@media(max-width:1023px) {
    .gt-masonry .igt-lg-6 {
        width: 100%;
    }

    .gt-col-3,
    .gt-col-4,
    .gt-masonry .igt-lg-3 {
        width: 50%;
    }
}

@media(max-width:767px) {
    .gt-filters .gt-filter-button-group ul li {
        margin-right: 0;
        font-size: 14px;
    }

    .gt-col-6,
    .gt-col-4,
    .gt-col-3,
    .gt-masonry .igt-lg-3,
    .gt-masonry .igt-lg-6 {
        width: 100%;
        padding: 0 0 30px;
    }
}

.gt-grid-item {
    float: left;
}

/*+++++++*/
.gt-portfolio-info-box {
    display: inline-block;
    width: 100%;
}

.gt-porfolio-info-header h5 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 10px;
}

.gt-porfolio-info .gt-info-list {
    margin: 0;
    padding: 0;
}

.gt-porfolio-info .gt-info-list li {
    list-style: none;
    float: left;
    margin: 0 0 15px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--grey-color);
    display: inline-block;
    width: 100%;
}

.gt-porfolio-info .gt-info-list li h5 {
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
}

.gt-porfolio-info .gt-info-list li span {
    float: right;
    color: var(--primary-color);
    font-family: var(--title-fonts);
}

.Projects-dts .gt-portfolio-block .gt-portfolio-info {
    padding-bottom: 0;
}

/*+++++++Portfolio-style2+++++++*/
.gt-portfolio-style2 {
    position: relative;
    padding-bottom: 80px;
}

.gt-portfolio-style2 .gt-portfolio-block {
    position: relative;
    overflow: hidden;
}

.gt-portfolio-style2 .gt-portfolio-block .gt-portfolio-info {
    position: absolute;
    background: transparent;
    bottom: 0;
    left: 15px;
    right: 15px;
    border: none;
    z-index: 9;
    transform: translateX(50px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-portfolio-style2 .gt-portfolio-block .gt-portfolio-info h5 {
    color: var(--white-color);
}

.gt-portfolio-style2 .gt-portfolio-block:hover .gt-portfolio-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.gt-portfolio-style2 .gt-portfolio-block .gt-portfolio-info span {
    font-size: 16px;
    line-height: 24px;
    color: var(--white-color);
}

.gt-portfolio-style2 .owl-carousel .owl-dots .owl-dot {
    background: var(--secondary-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Porfolio Box
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-portfolio-block-one .gt-portfolio-img {
    overflow: hidden;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    text-align: center;
}

.gt-portfolio-block-one .gt-portfolio-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.gt-portfolio-block-one:hover .gt-portfolio-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.gt-portfolio-block-one .gt-portfolio-info {
    margin: 15px 0 0;
    text-align: center;
}

.gt-portfolio-block-one .gt-portfolio-info span {
    position: relative;
    color: var(--primary-color);
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-fonts);
    text-transform: uppercase;
}

/*+++++++++*/
.gt-portfoliobox-2 {
    position: relative;
    overflow: hidden;
}

.gt-portfoliobox-2 .gt-portfolio-img {
    overflow: hidden;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.gt-portfoliobox-2 .gt-portfolio-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.gt-portfoliobox-2:hover .gt-portfolio-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.gt-portfoliobox-2 .gt-portfolio-info {
    position: absolute;
    left: 30px;
    bottom: -160px;
    background: var(--white-color);
    padding: 20px 30px;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(32, 43, 76, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(32, 43, 76, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(32, 43, 76, 0.1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.gt-portfoliobox-2:hover .gt-portfolio-info {
    bottom: 30px;
}

.gt-portfoliobox-2 .gt-portfolio-info .gt-portfolio-link a {
    position: relative;
    color: var(--primary-color);
    padding: 0 10px 0 0;
    margin: 0 16px 0 0;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
}

.gt-portfoliobox-2 .gt-portfolio-info .gt-portfolio-link a:after {
    position: absolute;
    top: 0;
    right: -5px;
    content: '/';
    font-size: 12px;
    line-height: inherit;
    color: var(--secondary-color);
}

.gt-portfoliobox-2 .gt-portfolio-info .gt-portfolio-link a:last-child {
    padding: 0;
    margin: 0;
}

.gt-portfoliobox-2 .gt-portfolio-info .gt-portfolio-link a:last-child:after {
    display: none;
}

@media(max-width:1365px) {
    .gt-portfoliobox-2 .gt-portfolio-info {
        padding: 15px;
        left: 15px;
        right: 15px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Portfolio
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-portfolio-block .gt-portfolio-img {
    position: relative;
    overflow: hidden;
}

.gt-portfolio-block .gt-portfolio-img img {
    margin-left: 30px;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.gt-portfolio-block:hover .gt-portfolio-img img {
    margin-left: 0;
}

.gt-portfolio-block .gt-portfolio-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: 9;
    background: var(--dark-color);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-portfolio-block:hover .gt-portfolio-img:before {
    opacity: 0.8;
}

.gt-portfolio-block .gt-portfolio-img a {
    background: var(--primary-color);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    z-index: 9;
    color: var(--white-color);
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 26px;
    opacity: 0;
}

.gt-portfolio-block:hover .gt-portfolio-img a {
    opacity: 1;
}

.gt-portfolio-block .gt-portfolio-img a:hover {
    background: var(--primary-color);
}

.gt-portfolio-block .gt-portfolio-img a::before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(100% + 1px);
    height: 1px;
    bottom: -4px;
    left: 8px;
}

.gt-portfolio-block .gt-portfolio-img a::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(100% + 1px);
    width: 1px;
    top: 8px;
    right: -4px;
}

.gt-portfolio-block .gt-portfolio-img a:hover::before {
    width: calc(0% + 0px);
}

.gt-portfolio-block .gt-portfolio-img a:hover::after {
    height: calc(0% + 0px);
}

.gt-portfolio-block .gt-portfolio-info {
    padding: 15px 0;
    border: 1px solid var(--grey-color);
    background: var(--grey-color);
}

.gt-portfolio-block .gt-portfolio-info span {
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 5px;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-fonts);
}

.gt-masonry .igt-lg-6 .gt-portfolio-block-one .gt-portfolio-img a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*================================================
Background images
===============================================*/
.gt_background_list_wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.gt_background_list_column {
    min-height: 100vh
}

.gt_background_list_wrapper .gt_background_list_column {
    min-height: 650px;
    padding: 45px 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(24, 24, 24, 0.4);
}

.gt_background_list_wrapper .gt_background_list_column.hover {
    opacity: 1;
    background: rgba(24, 24, 24, 0.9);
}

.gt_background_list_wrapper .gt_background_list_column.last {
    border-right: 0
}

.gt_background_list_wrapper .gt_background_list_column .gt_background_list_title span {
    position: relative;
    color: var(--white-color);
    padding: 0;
    margin: 0 0 5px;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-fonts);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.gt_background_list_wrapper .gt_background_list_column .gt_background_list_title .title {
    color: var(--white-color);
}

.gt_background_list_wrapper .gt_background_list_column .gt_background_list_link {
    position: absolute;
    bottom: 45px;
    left: 60px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt_background_list_wrapper .gt_background_list_column.hover .gt_background_list_link {
    opacity: 1;
    left: 30px;
}

.gt_background_list_wrapper .gt_background_list_overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.5;
}

.gt_background_list_wrapper .gt_background_list_overlay {
    visibility: hidden;
    opacity: 0;
    transition: all 1s
}

.gt_background_list_wrapper .gt_background_list_overlay.hover {
    opacity: 1;
    visibility: visible;
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.gt_background_list_wrapper .gt_background_list_overlay img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover
}

.gt_background_list_wrapper .gt_background_list_column:hover .gt_background_list_overlay,
.gt_background_list_wrapper .gt_background_list_column.hover .gt_background_list_overlay {
    max-height: 100%;
    opacity: 1;
    overflow: visible
}

@media(max-width:1023px) {
    .gt_background_list_wrapper .gt_background_list_column {
        padding: 30px 15px;
    }

    .gt_background_list_wrapper .gt_background_list_column .gt_background_list_link {
        position: absolute;
        bottom: 30px;
        left: 60px;
    }

    .gt_background_list_wrapper .gt_background_list_column.hover .gt_background_list_link {
        opacity: 1;
        left: 15px;
    }
}

@media(max-width:1023px) {
    .gt_background_list_wrapper {
        display: block;
    }

    .gt_background_list_wrapper .gt_background_list_column {
        padding: 60px 15px 75px;
        flex: 0 0 100%;
        max-width: 100%;
        min-height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        border-right: none;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Service
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* +++++ service-box style-1 +++++   */

.gt-service-box.gt-service-box-1 {
    cursor: default;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.gt-service-box.gt-service-box-1 .gt-service-banner {
    position: relative;
}

.gt-service-box.gt-service-box-1 .gt-service-banner img {
    height: 300px;
    object-fit: cover;
}

.gt-service-box.gt-service-box-1 .gt-service-banner .gt-service-media {
    position: absolute;
    text-align: center;
    bottom: -30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background: var(--primary-color);
    color: var(--white-color);
}

.gt-service-box.gt-service-box-1 .gt-service-banner .gt-service-media i {
    font-size: 42px;
    line-height: 75px;
}

.gt-service-box.gt-service-box-1 .gt-service-box-info {
    background-color: var(--white-color);
    padding: 30px;
    border: 1px solid var(--grey-color);
    border-top: none;
}

.gt-service-box.gt-service-box-1 .gt-service-box-info .gt-service-title {
    margin: 0px 0px 15px;
    font-size: 28px;
    padding-bottom: 15px;
    line-height: 36px;
    border-bottom: 1px solid var(--grey-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.gt-service-box.gt-service-box-1:hover .gt-service-box-info .gt-service-title {
    border-bottom-color: #00000050;
}

.gt-service-box.gt-service-box-1 .gt-service-box-info .gt-service-description {
    margin-bottom: 15px;
}

@media(max-width:479px) {
    .gt-service-box.gt-service-box-1 .gt-service-box-info {
        padding: 30px 15px;
    }

    .gt-service-box.gt-service-box-1 .gt-service-banner .gt-service-media {
        right: 20px;
        bottom: -20px;
        height: 50px;
        width: 50px;
    }

    .gt-service-box.gt-service-box-1 .gt-service-banner .gt-service-media i {
        font-size: 28px;
        line-height: 50px;
    }
}

/* ++++++++++ */

/* +++++ service-box style-2 +++++   */

.gt-service-box.gt-service-box-2 .gt-service-banner {
    position: relative;
}

.gt-service-box.gt-service-box-2 .gt-service-banner .gt-service-media {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 75px;
    height: 75px;
    font-size: 32px;
    text-align: center;
    line-height: 75px;
    background: var(--primary-color);
    color: var(--white-color);
}

.gt-service-box.gt-service-box-2 .gt-service-box-info {
    background-color: var(--white-color);
    padding: 20px;
}

.gt-service-box.gt-service-box-2 .gt-service-box-info .gt-service-description {
    margin-bottom: 15px;
}

/* ++++++++++ */

/* +++++ service-box style-3 +++++*/

.gt-service-box-3 .gt-service-banner {
    position: relative;
    overflow: hidden;
}

.gt-service-box-3 .gt-service-banner img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-service-box-3:hover .gt-service-banner img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.gt-service-box-3 .gt-service-banner .gt-service-media {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 75px;
    height: 75px;
    font-size: 32px;
    text-align: center;
    line-height: 75px;
    background: var(--primary-color);
    color: var(--white-color);
}

.gt-service-box-3 .gt-service-box-info {
    background-color: var(--white-color);
    padding: 24px;
    border: 1px solid var(--grey-color);
    border-width: 0px 1px 1px;
}

.gt-service-box-3 .gt-service-box-info .gt-service-title {
    margin: 0px 0px 4px;
}

.gt-service-box-3 .gt-service-box-info .gt-service-description {
    margin-bottom: 15px;
}

/*++++++gt-service-box-4++++++*/
.gt-service-box.gt-service-box-4 {
    position: relative;
}

.gt-service-box.gt-service-box-4 .gt-service-banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gt-service-box.gt-service-box-4 .gt-service-media i {
    font-size: 58px;
    line-height: 66px;
    color: var(--primary-color);
}

.gt-service-box.gt-service-box-4 .gt-service-box-info {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--grey-color);
    border-width: 0px 1px 1px;
    background: var(--white-color);
}

.gt-service-box.gt-service-box-4 .gt-service-box-info .gt-service-title {
    margin: 20px 0 10px;
}

.gt-service-box.gt-service-box-4 .gt-service-box-info .gt-service-description {
    margin: 0;
}

/* ++++++++++++*/

/*+++++++ left and right side boxes css +++++++++*/

.gt-primary-left {
    position: relative;
}

.gt-primary-left::before {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    width: 40%;
    height: 100%;
    top: 0;
    left: -15%;
    z-index: 1;
}

@media(max-width:1499px) {
    .gt-primary-left::before {
        width: 24%;
    }
}

@media(max-width:1190px) {
    .gt-primary-left::before {
        content: "";
        display: none;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Counter
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-counter-1 .gt-counter-info .gt-counter-num-prefix {
    font-size: 40px;
    line-height: 48px;
    color: var(--dark-color);
    font-weight: 700;
    margin-left: 4px;
}

.gt-counterbox-1 {
    display: flex;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.gt-counterbox-1 .gt-counter-media {
    font-size: 72px;
    line-height: 80px;
    color: var(--white-color);
    margin-right: 30px;
}

.gt-counterbox-1 .gt-counter-info .gt-counter-num-prefix {
    display: flex;
}

.gt-counterbox-1 .gt-counter-info .timer {
    color: var(--white-color);
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

.gt-counterbox-1 .gt-counter-info .gt-counter-prefix {
    color: var(--white-color);
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    margin-left: 5px;
}

.gt-counterbox-1 .gt-counter-description {
    margin: 0;
    color: var(--white-color);
    display: inline-block;
    width: 100%;
    float: left;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}

/*+++++ counter 1 css ++++++*/
.gt-counter1:before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(100% + 1px);
    height: 1px;
    bottom: 52%;
    left: 16px;
}

.gt-counter1:after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(51% + 1px);
    width: 1px;
    top: -1%;
    right: 4px;
}

.gt-counter-1 {
    background: var(--grey-color);
    padding: 45px 30px;
    text-align: center;
}

.gt-counter-1 .gt-counter-media i {
    font-size: 62px;
    line-height: 70px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.gt-counter-1 .gt-counter-info .gt-counter-num-prefix {
    display: flex;
    justify-content: center;
    color: var(--dark-color);
    align-items: baseline;
}

.gt-counter-1 .gt-counter-info .gt-counter-num-prefix .timer {
    font-family: var(--title-fonts);
    font-size: 40px;
    line-height: 48px;
    color: var(--dark-color);
    font-weight: 700;
}

.gt-counter-1 .gt-counter-info .gt-counter-num-prefix .gt-counter-prefix {
    font-size: 40px;
    line-height: 48px;
    color: var(--dark-color);
    font-weight: 700;
    margin-left: 4px;
}

.gt-counter-1 .gt-counter-info .gt-counter-description {
    text-transform: uppercase;
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    width: 100%;
    margin: 0;
}

.counter1 {
    position: relative;
    margin-top: -100px;
}

.counter1:before {
    content: "";
    position: absolute;
    left: 72%;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.counter3 {
    position: relative;
    padding: 45px 0;
}

.counter4 .col-md-6:not(:last-child) .counter3 {
    border-right: 1px solid #ffffff50;
}

.counter3 .gt-counter-num-prefix h5 {
    color: #FFFFFF;
    font-family: "Hind Madurai", Sans-serif;
    font-weight: 700;
    font-size: 69px;
    line-height: 1;
}

.counter3 .gt-counter-description {
    color: #FFFFFF;
    font-family: "Hind Madurai", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 24px;
}

.counter4 {
    background-color: var(--primary-color);
}

/*++++++ active counter css +++++++*/
.gt-counter-1.active {
    background: var(--primary-color);
}

.gt-counter-1.active .gt-counter-media i,
.gt-counter-1.active .gt-counter-info .gt-counter-num-prefix .gt-counter-prefix,
.gt-counter-1.active .gt-counter-info .gt-counter-description,
.gt-counter-1.active .gt-counter-info .gt-counter-num-prefix .timer {
    color: var(--white-color);
}

.counter.single-counter {
    margin: 0px 0px 0px 0px;
    padding: 30px 15px;
    background-color: #0F172A;
    border-style: solid;
    border-width: 15px 0px 0px 0px;
    border-color: #FFFFFF;
}

.counter .timer {
    color: var(--white-color);
    font-size: 52px;
    line-height: 73px;
    font-family: "Josefin Sans", Sans-serif;
    font-weight: 700;
}

.counter.single-counter .gt-heading {
    color: var(--white-color);
    font-family: "Josefin Sans", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 24px;
}

.counter .gt-counter-prefix {
    font-size: 52px;
    line-height: 1em;
    font-weight: 700;
    color: var(--white-color);
}

.gt-counter-2 {
    margin: -150px 0px 0px 0px;
    padding: 30px 30px 40px 30px;
    background-color: #0F172A;
    position: absolute;
    display: block;
    right: 20px;
}

.gt-counter-3 {
    color: #FFFFFF;
    font-family: "Hind Madurai", Sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 50px;
}

.gt-counter-3 .gt-counter-number-prefix3 {
    text-align: right;
}

.gt-counter-3.gt-counter-number3 {
    color: #FFFFFF;
    font-family: "Hind Madurai", Sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 50px;
}

.gt-counter-2 .gt-counter-title3 {
    color: #FFFFFF;
    font-family: "Hind Madurai", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 32px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
banner
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.banner-text span {
    color: var(--primary-color);
}

.gt-jost {
    font-family: var(--body-fonts) !important;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++
gt-process-1
++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-process-step.gt-process-1 {
    position: relative;
    text-align: center;
}

.gt-process-step.gt-process-1 .gt-process-info {
    position: relative;
}

.gt-process-step.gt-process-1 .gt-process-media i {
    font-size: 64px;
    color: var(--primary-color);
}

.gt-process-step.gt-process-1 .gt-process-title {
    position: relative;
}

.gt-process-step.gt-process-1 .gt-process-title::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: -4px;
    bottom: -1px;
    height: 9px;
    width: calc(100% + 8px);
    border-radius: 3px;
    opacity: 0;
    transition: 0.4s;
    transform: translateY(7px);
}

.gt-process-step.gt-process-1 span.gt-process-number {
    font-size: 12em;
    line-height: 80px;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: 0.1;
    color: var(--dark-color);
}

/*+++++++++++++*/
.gt-process-step.gt-process-2 {
    text-align: center;
    padding: 0 32px;
}

.gt-process-step.gt-process-2 .gt-process-media {
    background: var(--grey-color);
    position: relative;
    color: var(--primary-color);
    height: 136px;
    width: 136px;
    line-height: 136px;
    font-size: 52px;
    text-align: center;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.gt-process-step.gt-process-2 .gt-process-media::before {
    content: "";
    position: absolute;
    background: var(--dark-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(100% + 1px);
    height: 1px;
    bottom: -8px;
    left: 16px;
}

.gt-process-step.gt-process-2 .gt-process-media::after {
    content: "";
    position: absolute;
    background: var(--dark-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(100% + 1px);
    width: 1px;
    top: 16px;
    right: -8px;
}

.gt-process-step.gt-process-2 .gt-process-number {
    position: absolute;
    top: -16px;
    left: -16px;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--white-color);
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    z-index: 99;
    font-size: 16px;
}

.gt-process-step.gt-process-2 .gt-process-info {
    display: inline-block;
    width: 100%;
    margin-top: 32px;
}

.gt-process-step.gt-process-2 .gt-process-info .gt-process-title {
    font-family: var(--title-fonts);
    margin-bottom: 5px;
}

.gt-process-step.gt-process-2 .gt-process-info .gt-process-description {
    margin-bottom: 0;
}

.gt-process-step.gt-process-2 .gt-before-img {
    position: absolute;
    top: 50%;
    right: -25%;
    margin-top: -85px;
    height: 37px;
}

@media(max-width:767px) {
    .gt-process-step.gt-process-2 .gt-before-img {
        display: none;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Fancy Box
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/*++++Fancybox-1++++*/

.gt-fancybox-box {
    margin-bottom: 45px;
}

.gt-fancybox-box-1 {
    padding: 30px;
    background: var(--white-color);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0px 4px 310px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.gt-fancybox-box-1 .gt-fancy-media {
    position: relative;
    margin-bottom: 30px;
}

.gt-fancybox-box-1 .gt-fancy-info .gt-fancy-box-title {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 1px solid var(--grey-color);
    padding-bottom: 15px;
}

.gt-fancybox-box-1 .gt-fancy-media i {
    font-size: 72px;
    line-height: 80px;
    color: var(--primary-color);
}

.gt-fancybox-box-1 .gt-fancy-media span {
    font-size: 62px;
    line-height: 70px;
    font-weight: 700;
    float: right;
    color: var(--grey-color);
}

.gt-fancybox-box-1 .gt-fancy-info .gt-fancy-title {
    border-bottom: 1px solid var(--grey-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.gt-fancybox-box-1 .gt-button.gt-btn-link {
    transition: color 0s ease;
    color: var(--dark-color);
}

.gt-fancybox-box-1 .gt-button.gt-btn-link:before {
    content: "";
    background: var(--dark-color);
}

.gt-fancybox-box-1 .gt-button:hover .gt-btn-link {
    transition: color 0s ease;
    color: var(--primary-color);
}

/*+++++ +++++*/

/*++++++*/

.gt-fancybox-1 {
    background: var(--white-color);
    padding: 60px 30px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.gt-fancybox-1:hover {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 75, 52, 0.2);
    -moz-box-shadow: 0px 0px 30px 0px rgba(255, 75, 52, 0.2);
    box-shadow: 0px 0px 30px 0px rgba(255, 75, 52, 0.2);
}

.gt-fancybox-1 .gt-fancy-media {
    margin-bottom: 30px;
    font-size: 48px;
    color: var(--primary-color);
}

.gt-fancybox-1 .gt-fancybox-info .gt-fancy-box-title {
    margin-bottom: 10px;
}

/*++++++ Fancy Box-2++++++*/
.gt-fancybox-2 .gt-fancy-media {
    display: flex;
    margin-bottom: 24px;
}

.gt-fancybox-2 .gt-fancy-media i {
    font-size: 52px;
    line-height: 60px;
    color: var(--primary-color);
    margin: 0 16px 0 0;
}

.gt-fancybox-2 .gt-fancy-media .gt-fancy-heeading .gt-fancybox-sub-title,
.gt-fancy-box-title,
.gt-fancybox-2 .gt-fancybox-info .gt-fancybox-description {
    color: var(--white-color);
}

.gt-fancybox-2 .gt-fancy-media .gt-fancy-heeading .gt-fancybox-sub-title {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
}

.gt-fancybox-2 .gt-fancybox-info .gt-fancybox-description span {
    font-size: 14px;
    line-height: 22px;
}

.gt-fancybox-2 .gt-fancybox-info .gt-fancybox-description {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 24px;
    margin: 0;
}

/*+++++ Fancy-box 3++++*/
.gt-fancy-box.gt-fancybox-3 {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.gt-fancy-box.gt-fancybox-3 .gt-fancy-media {
    color: var(--primary-color);
    font-size: 48px;
    line-height: 56px;
}

.gt-fancy-box.gt-fancybox-3 .gt-fancybox-info {
    margin-left: 15px;
}

.gt-fancy-box.gt-fancybox-3 .gt-fancybox-info h5.gt-fancy-box-title {
    color: var(--dark-color);
}

.gt-fancy-box.gt-fancybox-3 .gt-fancybox-info .gt-list-content ul.gt-list-info {
    list-style-type: none;
    color: var(--secondary-color);
    margin: 0;
    padding: 0;
}

/*++++Fancybox-4++++*/
.gt-fancy-box.gt-fancybox-4 {
    position: relative;
    padding: 45px 30px;
    background: var(--primary-color);
    color: var(--white-color);
}

.gt-fancy-box.gt-fancybox-4 .gt-subtitle {
    text-transform: uppercase;
}

.gt-fancy-box.gt-fancybox-4 .gt-title {
    font-size: 34px;
    line-height: 42px;
    font-weight: 400;
    color: var(--white-color);
}

.gt-fancy-box.gt-fancybox-4 .pt-contact-number {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/*++++Fancybox-5++++*/
.gt-fancy-box.gt-fancybox-5 {
    position: relative;
    padding: 45px 30px;
    background: var(--white-color);
    color: var(--white-color);
}

.gt-fancy-box.gt-fancybox-5 .gt-subtitle {
    text-transform: uppercase;
}

.gt-fancy-box.gt-fancybox-5 .gt-title {
    font-size: 34px;
    line-height: 42px;
    font-weight: 400;
    color: var(--white-color);
}

.gt-fancy-box.gt-fancybox-5 .pt-contact-number {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/*++++Fancybox-6++++*/
.gt-fancy-box.gt-fancybox-6 {
    position: relative;
    padding: 45px 30px;
    background: var(--dark-color);
    color: var(--white-color);
}

.gt-fancy-box.gt-fancybox-6 .gt-subtitle {
    text-transform: uppercase;
}

.gt-fancy-box.gt-fancybox-6 .gt-title {
    font-size: 34px;
    line-height: 42px;
    font-weight: 400;
    color: var(--white-color);
}

.gt-fancy-box.gt-fancybox-6 .pt-contact-number {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/*++++++ fancybox slider style 1  css +++++ */
.gt-fancy-box-slider.gt-fancy-box-slider-1 .gt-fancybox-box {
    background: var(--white-color);
    padding: 45px 30px;
    position: relative;
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .gt-fancybox-box .gt-fancy-media {
    position: relative;
    margin-bottom: 30px;
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .gt-fancybox-box .gt-fancy-media i {
    font-size: 72px;
    line-height: 80px;
    color: var(--primary-color);
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .gt-fancybox-box .gt-fancy-media span {
    font-size: 62px;
    line-height: 70px;
    font-weight: 700;
    float: right;
    color: var(--grey-color);
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .gt-fancybox-box .gt-fancy-info .gt-fancy-title {
    border-bottom: 1px solid var(--grey-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .gt-fancybox-box .gt-button.gt-btn-link {
    transition: color 0s ease;
}

/*+++++ +++++*/
.gt-fancy-box-slider.gt-fancy-box-slider-1 .gt-fancybox-box::before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(0% + 0px);
    height: 1px;
    bottom: -15px;
    left: 30px;
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .gt-fancybox-box::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(0% + 0px);
    width: 1px;
    top: 30px;
    right: -15px;
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .owl-item.active.center .gt-fancybox-box::before {
    width: calc(100% + 1px);
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .owl-item.active.center .gt-fancybox-box::after {
    height: calc(100% + 1px);
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .owl-item.active.center .gt-fancybox-box .gt-button.gt-btn-link {
    color: var(--white-color);
}

/*+++++ +++++*/
.gt-fancy-box-slider.gt-fancy-box-slider-1 .owl-item.active.center .gt-fancybox-box {
    background: var(--primary-color);
    color: var(--white-color);
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .owl-item.active.center .gt-fancybox-box .gt-button.gt-btn-link:before {
    background: var(--white-color);
}

.gt-fancy-box-slider.gt-fancy-box-slider-1 .owl-item.active.center .gt-fancybox-box .gt-fancy-info .gt-fancy-title,
.gt-fancy-box-slider.gt-fancy-box-slider-1 .owl-item.active.center .gt-fancybox-box .gt-fancy-media i {
    color: var(--white-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Video Popup
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-video-icon a {
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 28px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    display: inline-block;
    background-color: var(--white-color);
    margin: 0 auto;
    border-radius: 90%;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2), 0 0 0 90px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2), 0 0 0 90px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2), 0 0 0 90px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0.2), 0 0 0 90px rgba(255, 255, 255, 0);
    }
}

.gt-video-icon a.primary {
    -webkit-animation: rippleprimary 1s linear infinite;
    animation: rippleprimary 1s linear infinite;
}

@-webkit-keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2), 0 0 0 90px rgba(255, 75, 52, 0);
        box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2), 0 0 0 90px rgba(255, 75, 52, 0);
    }
}

@keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2), 0 0 0 90px rgba(255, 75, 52, 0);
        box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 30px rgba(255, 75, 52, 0.2), 0 0 0 60px rgba(255, 75, 52, 0.2), 0 0 0 90px rgba(255, 75, 52, 0);
    }
}

.gt-video-icon a.blue {
    -webkit-animation: rippleblue 1s linear infinite;
    animation: rippleblue 1s linear infinite;
}

@-webkit-keyframes rippleblue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2), 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2), 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2), 0 0 0 90px rgba(67, 78, 255, 0);
        box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2), 0 0 0 90px rgba(67, 78, 255, 0);
    }
}

@keyframes rippleblue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2), 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(67, 78, 255, 0.2), 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2), 0 0 0 90px rgba(67, 78, 255, 0);
        box-shadow: 0 0 0 10px rgba(67, 78, 255, 0.2), 0 0 0 30px rgba(67, 78, 255, 0.2), 0 0 0 60px rgba(67, 78, 255, 0.2), 0 0 0 90px rgba(67, 78, 255, 0);
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
OWL Carousel
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-carousel .owl-nav {
    position: relative;
    cursor: pointer;
    z-index: 99;
    margin-top: 45px;
    text-align: center;
}

.owl-carousel .owl-nav button.owl-prev {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    line-height: 1;
    padding: 15px 30px !important;
    margin: 0 10px;
    background: var(--dark-color);
}

.owl-carousel .owl-nav button.owl-prev i {
    margin-right: 10px;
}

.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    line-height: 1;
    padding: 15px 30px !important;
    margin: 0 10px;
    background: var(--dark-color);
}

.owl-carousel .owl-nav button.owl-next i {
    margin-left: 10px;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-color);
}

/* Dots */
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
    line-height: normal;
    position: relative;
    width: 100%;
    /* display: inline-block; */
    text-indent: inherit;
    text-align: center;
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
    box-shadow: none;
    outline: none;
    background: var(--white-color);
    display: inline-block;
    padding: 0;
    margin: 0px 5px;
    height: 2px;
    width: 32px;
    border: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
    background: var(--primary-color);
}

.owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
}

.owl-carousel .owl-nav button.owl-prev::before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(0%);
    height: 1px;
    top: -8px;
    right: 16px;
}

.owl-carousel .owl-nav button.owl-prev::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(0%);
    width: 1px;
    bottom: 16px;
    left: -8px;
}

.owl-carousel .owl-nav button.owl-next::before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(0%);
    height: 1px;
    bottom: -8px;
    left: 16px;
}

.owl-carousel .owl-nav button.owl-next::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(0%);
    width: 1px;
    top: 16px;
    right: -8px;
}

.owl-carousel .owl-nav button.owl-prev:hover::before {
    content: "";
    width: calc(100% + 1px);
}

.owl-carousel .owl-nav button.owl-prev:hover::after {
    content: "";
    height: calc(100% + 1px);
}

.owl-carousel .owl-nav button.owl-next:hover::before {
    content: "";
    width: calc(100% + 1px);
}

.owl-carousel .owl-nav button.owl-next:hover::after {
    content: "";
    height: calc(100% + 1px);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Team
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-teambox-1 {
    position: relative;
    margin-bottom: 45px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-teambox-1 .gt-team-img {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.gt-teambox-1 .gt-team-img .gt-team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    opacity: 0;
}

.gt-teambox-1:hover .gt-team-img .gt-team-social {
    bottom: 150px;
    opacity: 1;
}

.gt-teambox-1 .gt-team-img .gt-team-social ul {
    margin: 0;
    padding: 0;
}

.gt-teambox-1 .gt-team-img .gt-team-social ul li {
    list-style: none;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
}

.gt-teambox-1 .gt-team-img .gt-team-social ul li a {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--blue-color);
    color: var(--white-color);
    -webkit-border-radius: 700px;
    -moz-border-radius: 700px;
    border-radius: 700px;
}

.gt-teambox-1 .gt-team-img .gt-team-social ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.gt-teambox-1 .gt-team-info {
    position: absolute;
    left: 30px;
    right: 30px;
    z-index: 99;
    bottom: -15px;
    background: var(--white-color);
    padding: 30px 15px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(9, 17, 74, 0.2);
    -moz-box-shadow: 0px 0px 30px 0px rgba(9, 17, 74, 0.2);
    box-shadow: 0px 0px 30px 0px rgba(9, 17, 74, 0.2);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-teambox-1:hover .gt-team-info {
    bottom: 15px;
}

.gt-teambox-1 .gt-team-info .gt-team-designation {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
}

/*++++++++++++++++++++++ Team ++++++++++++++++++++++++++++++++*/
.gt-team-box .gt-team-img {
    position: relative;
    overflow: hidden;
}

.gt-team-box .gt-team-social ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 15px;
    left: -75px;
    display: inline-block;
    width: 60px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-team-box:hover .gt-team-social ul {
    left: 15px;
}

.gt-team-box .gt-team-social ul li {
    list-style: none;
    display: inline-flex;
    margin: 0;
}

.gt-team-box .gt-team-social ul li:last-child {
    margin: 0;
}

.gt-team-box .gt-team-social ul li a {
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.gt-team-box .gt-team-social ul li a:hover {
    background: var(--dark-color);
}

.gt-team-box .gt-team-info {
    background: var(--white-color);
    padding: 20px 10px;
    margin: 0px 30px;
    display: flow-root;
    text-align: center;
    transform: translateY(-30px);
    -moz-transform: translate(-30px);
    -webkit-transform: translate(-30px);
    -o-transform: translate(-30px);
    -ms-transform: translate(-30px);
    transform: translateY(-30px);
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.gt-team-box .gt-team-info:before {
    position: absolute;
    width: 1px;
    height: 0%;
    background: var(--primary-color);
    display: inline-block;
    content: "";
    right: -8px;
    top: 16px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-team-box:hover .gt-team-info:before {
    height: calc(100% + 1px);
}

.gt-team-box .gt-team-info:after {
    position: absolute;
    width: 0%;
    height: 1px;
    background: var(--primary-color);
    display: inline-block;
    content: "";
    left: -16px;
    bottom: -8px;
    margin-left: 30px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-team-box:hover .gt-team-info:after {
    width: calc(100% + 1px);
}

.gt-team-box .gt-team-info h5 {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 5px;
    color: var(--dark-color);
}

.gt-team-box .gt-team-info .gt-team-designation {
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    float: left;
    width: 100%;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--title-fonts);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Testimonial
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.testimonial {
    padding: 40px 0px 170px 0px;
}

.testimonial1 {
    padding: 40px 0px 100px 0px;
}

.testimonial2 {
    padding: 40px 0px 100px 0px;
}

.gt-testimonialbox-1 {
    display: flex;
    align-items: flex-start;
    margin-left: 60px;
    background: var(--white-color);
    padding: 30px 30px 30px 0;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.gt-testimonialbox-1 .gt-testimonial-media {
    margin-left: -60px;
    margin-right: 15px;
    border: 10px solid var(--white-color);
    -webkit-border-radius: 700px;
    -moz-border-radius: 700px;
    border-radius: 700px;
}

.gt-testimonialbox-1 .gt-testimonial-media img {
    display: inline-block;
    width: 100px;
    height: 100px;
    border: 10px solid transparent;
    -webkit-border-radius: 700px;
    -moz-border-radius: 700px;
    border-radius: 700px;
}

.gt-testimonialbox-1 .gt-testimonial-info {
    flex: 1;
}

.gt-testimonialbox-1 .gt-testimonial-info h5 {
    margin-bottom: 5px;
}

.gt-testimonialbox-1 .gt-testimonial-star {
    padding-bottom: 15px;
}

.gt-testimonialbox-1 .gt-testimonial-star i {
    color: var(--primary-color);
}

.gt-testimonial-info h5 span {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    float: left;
    font-family: var(--title-fonts);
}

@media(max-width:767px) {
    .gt-testimonialbox-1 {
        display: block;
        align-items: flex-start;
        margin-left: 0;
        padding: 30px;
    }

    .gt-testimonialbox-1 .gt-testimonial-media {
        margin: 0 0 15px 0;
        border: none;
    }

    .gt-testimonialbox-1 .gt-testimonial-media img {
        border: none;
    }

    .gt-testimonialbox-1 .gt-testimonial-info {
        flex: inherit;
        display: inline-block;
        width: 100%;
    }
}

/*+++++ Testimonial 2 +++++*/
.gt-testimonialbox-2 {
    text-align: center;
}

.gt-testimonialbox-2 .gt-testimonial-media {
    position: relative;
    margin-bottom: 45px;
    display: inline-block;
}

.gt-testimonialbox-2 .gt-testimonial-media img {
    border: 2px solid var(--dark-color);
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.gt-testimonialbox-2 .gt-quote {
    position: absolute;
    height: 60px;
    width: 60px;
    display: inline-block;
    bottom: -15px;
    right: -15px;
    background: var(--primary-color);
    border-radius: 900px;
    line-height: 60px;
    text-align: center;
    color: var(--white-color);
    font-size: 22px;
}

.gt-testimonial-box-2 {
    display: flex;
    align-items: flex-start;
    position: relative;
    background: var(--white-color);
    padding: 60px 60px 60px 30px;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.gt-testimonial-box-2 .gt-testimonial-media img {
    display: inline-block;
    width: 100px;
    height: 100px;
}

.gt-testimonial-box-2 .gt-testimonial-info {
    flex: 1;
    padding-left: 30px;
}

.gt-testimonial-box-2 .gt-testimonial-star {
    position: relative;
    background: var(--primary-color);
    padding: 0 10px;
    float: right
}

.gt-testimonial-box-2 .gt-testimonial-star i {
    color: var(--white-color);
}

.gt-testimonial-box-2 .gt-testimonial-info h5 {
    padding-bottom: 30px;
}

.gt-testimonial-box-2 .gt-testimonial-info h5 span {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color);
    padding: 0;
    display: block;
    position: relative;
    padding-bottom: 15px;
}

.gt-testimonial-box-2 .gt-testimonial-info h5 span:after {
    content: "";
    display: block;
    width: 20%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid #ebf1fd;
}

/*+++++ Testimonial 3 +++++*/
.gt-testimonialbox-3 {
    background: var(--white-color);
    padding: 45px;
    text-align: center;
    position: relative;
    margin-top: 30px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.gt-testimonialbox-3 .gt-quote {
    position: absolute;
    height: 60px;
    width: 60px;
    display: inline-block;
    top: -28px;
    left: 50%;
    background: var(--primary-color);
    border-radius: 900px;
    line-height: 60px;
    text-align: center;
    color: var(--white-color);
    font-size: 22px;
    margin-left: -30px;
}

.gt-testimonialbox-3 .gt-testimonial-info {
    display: inline-block;
}

.gt-testimonialbox-3 .gt-testimonial-img {
    display: flex;
    align-items: flex-start;
}

.gt-testimonialbox-3 .gt-testimonial-img img {
    width: 90px;
    height: 90px;
    display: inline-block;
    float: left;
    margin-right: 15px;
    border: 2px solid var(--grey-color);
    border-radius: 900px;
}

.gt-testimonialbox-3 .gt-testimonial-img .gt-testimonial-meta {
    flex: 1;
    align-self: center !important;
    text-align: left;
}

.gt-testimonialbox-3 .gt-testimonial-img .gt-testimonial-meta h5 {
    font-size: 24px;
}

.gt-testimonialbox-3 .gt-testimonial-img .gt-testimonial-meta p {
    margin-bottom: 0;
    line-height: 1;
}

/*+++++++gt-testimonial-5++++++*/
.gt-testimonial.gt-testimonial-5 {
    position: relative;
    margin-top: 15%;
}

.gt-testimonial-style5 {
    background: var(--white-color);
    padding: 45px;
    position: relative;
}

.gt-testimonial-style5 .gt-sub-title {
    color: var(--primary-color);
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    padding-left: 15px;
    position: relative;
    margin-bottom: 20px;
}

.gt-testimonial-style5 .gt-sub-title:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background: var(--primary-color);
    left: 0;
}

.gt-testimonial-style5 .gt-testimonial-content {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.gt-testimonial-style5 .gt-testimonial-content .gt-media img {
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
    height: 90px;
    width: 90px;
}

.gt-testimonial-style5 .gt-testimonial-content .gt-auther-detail {
    margin-left: 15px;
}

.gt-testimonial-style5 .gt-testimonial-content .gt-auther-detail span {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-color);
}

.gt-testimonial-style5 .gt-testimonial-star {
    position: absolute;
    right: 45px;
    bottom: 75px;
    color: var(--primary-color);
    font-size: 14px;
    line-height: 22px;
}

@media(max-width:479px) {
    .gt-testimonial-style5 {
        padding: 15px;
    }

    .gt-testimonial-style5 .gt-testimonial-star {
        bottom: 5px;
    }
}

/*++owl-nav++*/
.gt-testimonial.gt-testimonial-5 .owl-carousel .owl-nav button.owl-prev,
.gt-testimonial.gt-testimonial-5 .owl-carousel .owl-nav button.owl-next {
    background: var(--white-color);
    color: var(--dark-color);
}

.gt-testimonial.gt-testimonial-5 .owl-carousel .owl-nav button.owl-prev:hover,
.gt-testimonial.gt-testimonial-5 .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--primary-color);
}

.gt-testimonial.gt-testimonial-5 .owl-nav {
    text-align: left;
    color: var(--white-color);
    margin-top: 30px;
}

.gt-testimonial.gt-testimonial-5 .owl-nav .owl-prev {
    margin-left: 0;
}

.gt-testimonial.gt-testimonial-5 .owl-nav .owl-next {
    margin-right: 0;
}

/* +++++ */

/*++++ Testimonial  navigation aerrow +++++*/

.gt-testimonial-3 .owl-carousel .owl-nav,
.gt-testimonial-1 .owl-carousel .owl-nav {
    position: absolute;
    margin-top: 0;
    text-align: center;
    right: 0;
    top: -120px;
}

.gt-testimonial-1 .owl-carousel .owl-nav button.owl-prev::before,
.gt-testimonial-1 .owl-carousel .owl-nav button.owl-prev::after,
.gt-testimonial-1 .owl-carousel .owl-nav button.owl-next::before,
.gt-testimonial-1 .owl-carousel .owl-nav button.owl-next::after {
    content: "";
    background: var(--dark-color);
}

.gt-testimonial-3 .owl-carousel .owl-nav button,
.gt-testimonial-1 .owl-carousel .owl-nav button {
    background: var(--white-color);
    color: var(--dark-color);
}

.gt-testimonial-3 .owl-carousel .owl-nav button:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.gt-testimonial-1 .owl-carousel .owl-nav button:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

@media(max-width:1190px) {

    .gt-testimonial-3 .owl-carousel .owl-nav,
    .gt-testimonial-1 .owl-carousel .owl-nav {
        top: -110px;
    }

    .gt-testimonial-1 .owl-carousel .owl-nav button.owl-prev {
        margin-left: 0;
    }

    .gt-testimonial-1 .owl-carousel .owl-nav button.owl-next {
        margin-right: 0;
    }
}

/*+++++ testimonial slider ++++++*/

/*++++++ Testmonial-style-1 ++++++*/

.gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 {
    display: flex;
    align-items: flex-start;
    background-color: var(--white-color);
    padding: 45px 30px;
    margin-left: 30px;
    position: relative;
}

.gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-media {
    position: relative;
    display: inline-block;
    -moz-transform: translate(0%, 25%);
    -webkit-transform: translate(0%, 25%);
    -o-transform: translate(0%, 25%);
    -ms-transform: translate(0%, 25%);
    transform: translate(0%, 25%);
    margin-left: -60px;
}

.gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-media img {
    display: inline-block;
    width: 100%;
    height: auto;
}

.gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-info {
    flex: 1;
    margin-left: 30px;
}

.gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-info .gt-testimonial-star {
    font-size: 14px;
    line-height: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-info .gt-service-description {
    font-size: 16px;
    line-height: 24px;
}

.gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-info span {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-fonts);
    color: var(--primary-color);
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
}

.gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-media:before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(100% + 1px);
    width: 1px;
    top: 16px;
    right: -8px;
}

.gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-media::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(100% + 1px);
    height: 1px;
    bottom: -8px;
    left: 16px;
}

@media(max-width:479px) {
    .gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 {
        display: block;
        text-align: center;
        margin-left: 0px;
        padding: 30px 15px;
    }

    .gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-media {
        -moz-transform: translate(0%, 0%);
        -webkit-transform: translate(0%, 0%);
        -o-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
        margin-left: 0px;
        margin-right: 0px;
    }

    .gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-info .gt-testimonial-star {
        margin: 15px 0px;
    }

    .gt-testimonial.gt-testimonial-1 .gt-testmonial-style-1 .gt-testmonial-info {
        margin-left: 0;
    }
}

/*++++++ Testmonial-style-2 ++++++*/
.gt-testimonial.gt-testimonial-2 .gt-testmonial-style-2 {
    background: var(--white-color);
    display: block;
    text-align: center;
    position: relative;
    padding: 15px 30px;
    overflow: visible;
    margin: 0px 15px;
    margin-top: 45px;
}

.gt-testimonial.gt-testimonial-2 .gt-testmonial-style-2 .gt-testmonial-media {
    margin-top: -60px;
}

.gt-testimonial.gt-testimonial-2 .gt-testmonial-style-2 .gt-testmonial-media img {
    max-height: 110px;
    width: 110px;
    line-height: 110px;
    border: 2px solid var(--primary-color);
    display: inline-block;
}

.gt-testimonial.gt-testimonial-2 .gt-testimonial-star {
    color: #FF9529;
    margin: 15px 0px;
    display: inline-block;
    padding: 0px 15px;
    font-size: 14px;
    line-height: 22px;
}

.gt-testimonial.gt-testimonial-2 .gt-testmonial-style-2 .gt-testmonial-info .gt-testmonial-content .gt-service-description {
    margin: 0;
}

.gt-testimonial.gt-testimonial-2 .gt-testmonial-style-2 .gt-testmonial-info .gt-testmonial-content .gt-testmonial-title {
    border-top: 1px solid var(--grey-color);
    padding-top: 15px;
    margin-top: 15px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
}

.gt-testimonial.gt-testimonial-2 .gt-testmonial-style-2 .gt-testmonial-info .gt-testmonial-content h5 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}

.gt-testimonial.gt-testimonial-2 .gt-testmonial-style-2 .gt-testmonial-info .gt-testmonial-content span {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

/*++++++ Testmonial-style-3 +++++++*/
.gt-testimonial.gt-testimonial-3 .gt-testmonial-style-3 {
    position: relative;
    background: var(--white-color);
    padding: 45px 30px;
}

.gt-testimonial.gt-testimonial-3 .gt-testmonial-style-3 .gt-testmonial-media {
    display: flex;
}

.gt-testimonial.gt-testimonial-3 .gt-testmonial-style-3 .gt-testmonial-media .gt-testimonial-img {
    position: relative;
    display: inline-block;
    margin-right: 30px;
}

.gt-testimonial.gt-testimonial-3 .gt-testmonial-style-3 .gt-testmonial-media .gt-testimonial-img::before {
    position: absolute;
    content: "";
    background: var(--primary-color);
    height: 1px;
    width: calc(100% + 1px);
    bottom: -8px;
    left: 12px;
}

.gt-testimonial.gt-testimonial-3 .gt-testmonial-style-3 .gt-testmonial-media .gt-testimonial-img::after {
    position: absolute;
    content: "";
    background: var(--primary-color);
    height: calc(100% + 1px);
    width: 1px;
    right: -8px;
    font-family: var(--title-fonts);
    top: 12px;
}

.gt-testimonial.gt-testimonial-3 .gt-testmonial-style-3 .gt-testmonial-media img {
    width: 100px;
    height: 100px;
}

.gt-testmonial-style-3 .gt-testmonial-media>i {
    margin-left: auto;
    font-size: 92px;
    line-height: 100px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.1;
}

.gt-testmonial-style-3 .gt-testmonial-media .gt-testmonial-info span {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    float: left;
    width: 100%;
}

.gt-testmonial-style-3 .gt-testmonial-media .gt-testmonial-info .gt-testimonial-star i {
    color: #FBBF37;
    margin-top: 5px;
    font-size: 12px;
    line-height: 20px;
}

.gt-testmonial-style-3 .gt-testmonial-content .gt-service-description {
    margin: 0;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px dashed var(--grey-color);
}

@media(max-width:1023px) {

    .gt-testimonial-3 .owl-carousel .owl-nav,
    .gt-testimonial-1 .owl-carousel .owl-nav {
        position: relative;
        right: 0;
        top: 0;
        margin-top: 30px;
    }
}

@media(max-width:767px) {
    .gt-testimonial.gt-testimonial-3 .gt-testmonial-style-3 {
        text-align: center;
    }

    .gt-testimonial.gt-testimonial-3 .gt-testmonial-style-3 .gt-testmonial-media {
        display: block;
    }

    .gt-testmonial-style-3 .gt-testmonial-media .gt-testmonial-info {
        margin-top: 15px;
    }

    .gt-testmonial-style-3 .gt-testmonial-content .gt-service-description {
        margin-top: 0px;
    }

    .gt-testmonial-style-3 .gt-testmonial-media>i {
        position: absolute;
        left: 15px;
        top: 15px;
        line-height: 72px;
        font-size: 64px;
    }
}

/****** gt testimonial style 4 ***********/
.gt-testmonial-style-4 {
    padding: 45px 30px;
    background: var(--white-color);
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gt-testmonial-style-4 i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 24px;
    color: var(--white-color);
    background: var(--primary-color);
}

.gt-testmonial-style-4 .gt-testmonial-info h5 {
    font-size: 24px;
    line-height: 32px;
}

.gt-testmonial-style-4 .gt-service-description {
    margin-bottom: 0;
}

.gt-testmonial-style-4 .gt-testmonial-info span {
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 5px 0;
}

.gt-testmonial-style-4 .gt-testmonial-media {
    position: relative;
    display: inline-block;
    margin: 15px 0;
}

.gt-testmonial-style-4 .gt-testmonial-media::before {
    content: "";
    position: absolute;
    right: -4px;
    top: 8px;
    background: var(--dark-color);
    height: calc(100% + 1px);
    width: 1px;
}

.gt-testmonial-style-4 .gt-testmonial-media::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -8px;
    background: var(--dark-color);
    width: calc(100% + 1px);
    height: 1px;
}

.gt-testmonial-style-4 .gt-testmonial-media img {
    width: 90px;
    height: 90px;
    display: inline-block;
    border: 2px solid var(--grey-color);
}

.gt-testmonial-style-4 .gt-testmonial-media .gt-testmonial-content {
    flex: 1;
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.gt-testmonial-style-4 .gt-testmonial-media .gt-testmonial-content span {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-fonts);
    width: 100%;
    float: left;
    color: var(--primary-color);
    text-transform: uppercase;
}

@media(max-width:767px) {
    .gt-testmonial-style-4 {
        padding: 15px;
    }
}

@media(max-width:767px) {
    .gt-testmonial-style-4 i.fa-quote-right {
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
}

/*+++++gt-testmonial-style-1++++*/
.gt-testimonial.gt-testimonial-4 .owl-stage-outer {
    overflow: visible;
}

.gt-testimonial.gt-testimonial-4 .owl-item {
    opacity: 0;
}

.gt-testimonial.gt-testimonial-4 .owl-item.active {
    opacity: 1;
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 {
    padding: 30px;
    -webkit-box-shadow: 0px 4px 310px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 10px 0px rgb(0 0 0 / 10%)
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-media {
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-media .gt-testimonial-auther {
    margin-left: 30px;
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-media .gt-testimonial-auther span {
    text-transform: uppercase;
    color: var(--primary-color);
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-media .gt-testimonial-img {
    position: relative;
    display: inline-block;
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-media .gt-testimonial-img::before {
    content: "";
    position: absolute;
    display: inline-block;
    height: calc(100% + 1px);
    width: 1px;
    top: 16px;
    right: -8px;
    background: var(--dark-color);
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-media .gt-testimonial-img::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: calc(100% + 1px);
    height: 1px;
    left: 16px;
    bottom: -8px;
    background: var(--dark-color);
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-description {
    margin-top: 30px;
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-footer .gt-testimonial-star i {
    color: var(--primary-color);
}

.gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-footer>i {
    font-size: 56px;
    line-height: 64px;
    color: rgb(237 29 36 / 10%);
}

.gt-testimonial.gt-testimonial-4 .owl-nav {
    position: absolute;
    right: 0;
    bottom: 110%;
    color: var(--white-color);
}

@media(max-width:567px) {
    .gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-media {
        text-align: center;
        display: block;
    }

    .gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-media .gt-testimonial-auther {
        margin: 15px 0px 0px;
    }

    .gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 .gt-testimonial-description {
        text-align: center;
    }
}

@media(max-width:479px) {
    .gt-testimonial.gt-testimonial-4 .gt-testmonial-style-4 {
        padding: 30px 5px;
    }
}

/* +++++ */

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
pricebox
+++++++++++++++++++++++++++++++++++++++++++++++*/

.gt-price-block-2 {
    background: var(--white-color);
}

.gt-price-block-2.active .gt-price-detail {
    background: var(--primary-color);
}

.gt-price-block-2 .gt-price-detail {
    position: relative;
    padding: 45px 30px;
    background: var(--dark-color);
    z-index: 9;
    color: var(--white-color);
    overflow: hidden;
}

.gt-price-block-2 .gt-price-detail .gt-price-title {
    letter-spacing: 0.2em;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 28px;
}

.gt-price-block-2 .gt-price-detail .price {
    color: var(--white-color);
    font-size: 60px;
    line-height: 68px;
}

.gt-price-block-2 .gt-price-detail .gt-price-duration {
    color: var(--white-color);
    font-weight: normal;
    margin-bottom: 0;
}

.gt-price-block-2 .gt-bg-effect {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: 0 !important;
    z-index: -1;
    opacity: 0.1;
}

.gt-price-block-2 .gt-list-info {
    margin: 0;
    padding: 30px;
    border: 1px solid var(--grey-color);
    border-top: 0;
    border-bottom: 0;
}

.gt-price-block-2 .gt-list-info li {
    list-style: none;
    line-height: 45px;
}

.gt-price-block-2 .gt-btn-container {
    border: 2px solid var(--grey-color);
    border-top: 0;
}

.gt-price-block-2 .gt-button {
    margin-bottom: 30px;
}

@media(max-width:767px) {
    .gt-price-block-2 .gt-price-detail {
        padding: 30px 15px;
    }

    .gt-price-block-2 .gt-price-detail .price {
        font-size: 48px;
    }

    .gt-price-block-2 .gt-bg-effect {
        width: 135%;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Progressbar
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-progressbar-style-1 .gt-progressbar-content {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.gt-progressbar-style-1 .gt-progressbar-content:last-child {
    margin-bottom: 0;
}

.gt-progressbar-style-1 .progress-title {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    color: var(--dark-color);
    font-weight: 600;
}

.gt-progressbar-style-1 .progress-value {
    color: var(--primary-color);
    margin: 0;
    float: right;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

.gt-progressbar-style-1 .gt-progress-bar {
    display: inline-block;
    width: 100%;
    padding: 0;
    background: var(--grey-color);
    float: left;
    margin-top: 5px;
}

.gt-progressbar-style-1 .gt-progress-bar span {
    height: 5px;
    display: inline-block;
    background: var(--primary-color);
    float: left;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Client
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.client1 {
    padding: 30px 30px;
    background-color: var(--primary-color);
}

.client4 {
    padding: 30px 30px;
    background-color: var(--primary-color);
}

.client {
    position: relative;
    margin-top: -100px;
}

.client2 {
    position: relative;
    padding: 0px 0px 250px 0px;
}

.client3 {
    position: relative;
    padding: 60px 0px 60px 0px;
}

.client1:before {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.client4:before {
    content: "";
    position: absolute;
    left: 79%;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.gt-clientbox-1 .gt-client-img {
    position: relative;
    display: block;
    width: auto !important;
    height: 120px;
    margin: 0 auto;
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    transition: transform .3s ease
}

.gt-clientbox-1 a:hover .gt-client-img {
    -webkit-transform: translateY(125%);
    -moz-transform: translateY(125%);
    transform: translateY(125%)
}

.gt-clientbox-1 a:hover .gt-client-hover-img {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.gt-clientbox-1 .gt-client-hover-img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto !important;
    height: 120px;
    -webkit-transform: translate(-50%, -102%);
    -moz-transform: translate(-50%, -102%);
    transform: translate(-50%, -102%);
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    transition: transform .3s ease
}

/*++++++Clientbox-2+++++*/
.gt-clientbox-2 {
    position: relative;
    text-align: center;
    background: var(--grey-color);
    padding: 45px 0;
}

.gt-clientbox-2:hover {
    background: var(--primary-color);
}

.gt-clientbox-2:hover .gt-img {
    opacity: 0;
}

.gt-clientbox-2 img.gt-img-hover {
    position: absolute;
    height: 100px;
    width: 100px;
    object-fit: cover;
    top: 24%;
    left: 0;
    margin: 0 auto;
    transform: translate(100%);
    opacity: 0;
}

.gt-clientbox-2:hover img.gt-img-hover {
    opacity: 1;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
FAQ
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-accordion-block .gt-accordion-box {
    background: var(--white-color);
    margin-bottom: 30px;
    position: relative;
}

.gt-accordion-block .gt-accordion-box:last-child {
    margin-bottom: 0;
}

.gt-accordion-block .gt-accordion-box .gt-ad-title {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    padding: 15px 30px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.gt-accordion-block .gt-accordion-box .gt-ad-title i {
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 1;
    color: var(--dark-color);
}

.gt-accordion-block .gt-accordion-box .gt-ad-title i.inactive {
    opacity: 0;
}

.gt-accordion-block .gt-accordion-box.gt-active .gt-ad-title i {
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0;
    color: var(--dark-color);
}

.gt-accordion-block .gt-accordion-box.gt-active .gt-ad-title i.inactive {
    opacity: 1;
}

.gt-accordion-block .gt-accordion-box.gt-active .gt-ad-title i {
    color: var(--white-color);
}

.gt-accordion-block .gt-accordion-box .gt-accordion-details {
    padding: 15px 30px;
    border: 1px solid var(--grey-color);
    border-top: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.gt-accordion-block .gt-accordion-box .gt-accordion-details p {
    margin-bottom: 0;
}

.gt-accordion-block .gt-accordion-box.gt-active .gt-ad-title {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.gt-accordion-block .gt-accordion-box.gt-active .gt-ad-title .ad-title-text {
    color: var(--white-color);
}

@media(max-width:767px) {
    .gt-accordion-block .gt-accordion-box .gt-ad-title .ad-title-text {
        font-size: 16px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Quote From
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-form input[type="text"],
.gt-form textarea,
.gt-form input[type="email"] {
    width: 100%;
    margin-bottom: 30px;
}

.gt-form input[type="submit"] {
    width: 100%;
}

.gt-form input[type="submit"]:hover {
    background: var(--dark-color);
}

.quote-from input[type="text"],
.quote-from textarea,
.quote-from input[type="email"] {
    margin-bottom: 30px;
    background: #efefef;
    border: 2px solid var(--white-color);
    width: 100%;
}

.quote-from input:focus,
.quote-from input:hover,
.quote-from textarea:focus,
.quote-from textarea:hover {
    border-color: var(--primary-color);
}

.quote-from input[type="submit"] {
    display: inline-block;
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-block;
    padding: 10px 30px;
    width: auto;
    line-height: 2;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
From
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    background-color: var(--grey-color);
}

.gt-free-seo .wpcf7-form-control.wpcf7-text,
.gt-free-seo .wpcf7-form-control.wpcf7-textarea {
    margin-bottom: 20px;
    background: var(--grey-color);
    border-color: var(--white-color);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Social Sharebox
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-social-sharebox-1 {
    text-align: center;
}

.gt-social-sharebox-1 .first {
    position: relative;
    display: block;
    width: auto;
    margin: 0 auto;
    font-size: 56px;
    color: var(--white-color);
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    transition: transform .3s ease
}

.gt-social-sharebox-1 a:hover .first {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%)
}

.gt-social-sharebox-1 a:hover .last {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.gt-social-sharebox-1 .last {
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 56px;
    color: var(--white-color);
    -webkit-transform: translate(-50%, -150%);
    -moz-transform: translate(-50%, -150%);
    transform: translate(-50%, -150%);
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    transition: transform .3s ease
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Footer Subscribe
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-subscribe {
    margin: 0;
    padding: 45px 0;
    position: relative;
    width: 100%;
    display: inline-block;
    background: var(--primary-color);
}

.gt-subscribe-block i {
    font-size: 56px;
    color: var(--white-color);
    line-height: 1;
}

.gt-subscribe-block .gt-subscribe-img {
    width: 55px;
}

.gt-subscribe-block {
    display: flex;
    align-items: flex-start;
}

.gt-subscribe-block .gt-subscribe-details {
    margin-left: 15px;
    color: var(--white-color);
    flex: 1;
}

.gt-subscribe-block .gt-subscribe-details h6 {
    font-size: 26px;
    color: var(--white-color);
    line-height: 34px;
}

.gt-subscribe-from {
    position: relative;
}

.gt-subscribe-from form input {
    background: var(--white-color);
    color: var(--dark-color);
    border-color: var(--white-color);
}

.gt-subscribe-from form input[type="submit"] {
    position: absolute;
    width: auto;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 9px 45px 8px;
    top: 0;
    right: 0;
    line-height: 2;
    border: 1px solid var(--dark-color);
    text-transform: capitalize;
    font-family: var(--title-fonts);
}

@media(max-width:767px) {
    .gt-subscribe .row {
        padding: 30px 0;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Contact Box
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-contact-box.gt-contact-box-1 {
    background: var(--white-color);
}

.gt-contact-box.gt-contact-box-1 .gt-contact-box-info {
    padding: 30px;
}

.gt-contact-box-1 .gt-contact-info {
    margin: 0;
    padding: 0;
}

.gt-contact-box-1 .gt-contact-box-info .gt-contact-box-title {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 56px;
}

.gt-contact-box-1 .gt-contact-info li {
    list-style: none;
    margin-bottom: 15px;
}

.gt-contact-box-1 .gt-contact-info li:last-child {
    margin-bottom: 0;
}

.gt-contact-box-1 .gt-contact-info li>span {
    display: flex;
    align-items: flex-start;
}

.gt-contact-box-1 .gt-contact-info li i {
    line-height: 2;
    color: var(--primary-color);
    font-size: 20px;
}

.gt-contact-box-1 .gt-contact-info li span>span {
    margin-left: 15px;
    flex: 1;
}

.gt-contact-box-1 .gt-contact-info li span a {
    display: inline-block;
    width: 100%;
    color: var(--secondary-color);
}

.contact-form1 {
    background-color: var(--white-color);
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 45px 45px 45px 45px;
    margin-top: -250px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Tabs
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-tabs-1 .nav-tabs {
    border: none;
    display: flex;
}

.gt-tabs-1 .nav-tabs .nav-item {
    background: var(--grey-color);
    color: var(--blue-color);
    padding: 30px;
    border: none;
    margin-right: 30px;
    position: relative;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    flex: 1;
}

.gt-tabs-1 .nav-tabs .nav-item:last-child {
    margin-right: 0;
}

.gt-tabs-1 .nav-tabs .nav-item i {
    font-size: 62px;
    line-height: 70px;
}

.gt-tabs-1 .nav-tabs .nav-item span {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--dark-color);
}

.gt-tabs-1 .nav-tabs .nav-item.active {
    background: var(--blue-color);
    color: var(--white-color);
    position: relative;
}

.gt-tabs-1 .nav-tabs .nav-item.active span {
    color: var(--white-color);
}

.gt-tabs-1 .nav-tabs .nav-item:nth-child(even) {
    background: #fff5f4;
    color: var(--primary-color);
}

.gt-tabs-1 .nav-tabs .nav-item.active:nth-child(even) {
    background: var(--primary-color);
    color: var(--white-color);
    position: relative;
}

.gt-tabs-1 .nav-tabs .nav-item:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 75, 54, 0);
    border-top-color: var(--white-color);
    border-width: 15px;
    margin-left: -15px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.gt-tabs-1 .nav-tabs .nav-item.active:after {
    opacity: 1;
    border-top-color: var(--blue-color);
}

.gt-tabs-1 .nav-tabs .nav-item.active:nth-child(even):after {
    opacity: 1;
    border-top-color: var(--primary-color);
}

/*++++++++*/
.gt-tabs-1 .tab-content {
    margin-top: 60px;
}

.gt-tabs-1 .tab-content .gt-tab-info h2 {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 15px;
}

.gt-tabs-1 .tab-content .gt-tab-info ul {
    margin: 0;
    padding: 0;
}

.gt-tabs-1 .tab-content .gt-tab-info ul li {
    list-style: none;
    margin: 0;
    padding: 10px 0 0;
}

.gt-tabs-1 .tab-content .gt-tab-info ul li:before {
    font-family: "Ionicons";
    content: "\f382";
    color: var(--primary-color);
    margin-right: 10px;
}

.gt-tabs-1 .tab-content .gt-tab-info .gt-button-block {
    margin: 30px 0 0;
}

@media(max-width:1365px) {
    .gt-tabs-1 .nav-tabs .nav-item {
        padding: 30px 15px;
    }
}

@media(max-width:1023px) {
    .gt-tabs-1 .tab-content .gt-tab-info h2 {
        font-size: 38px;
        line-height: 46px;
    }
}

@media(max-width:767px) {
    .gt-tabs-1 .nav-tabs .nav-item {
        padding: 15px;
        margin-right: 15px;
    }

    .gt-tabs-1 .nav-tabs .nav-item i {
        font-size: 40px;
        line-height: 48px;
    }

    .gt-tabs-1 .nav-tabs .nav-item span {
        display: none;
    }

    .gt-tabs-1 .tab-content .gt-tab-info {
        text-align: center;
    }

    .gt-tabs-1 .tab-content .gt-tab-info h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media(max-width:479px) {
    .gt-tabs-1 .nav-tabs .nav-item i {
        font-size: 30px;
        line-height: 38px;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
timeline css 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.timeline {
    list-style-type: none;
    padding: 0;
    margin: 30px 0 0;
}

.timeline .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.timeline .timeline-item:last-child {
    margin-bottom: 0px;
}

.timeline .timeline-item .gt-number {
    position: relative;
    font-size: 18px;
    color: var(--white-color);
    text-align: center;
    margin-right: 30px;
    line-height: 36px;
    height: 36px;
    width: 36px;
    border-radius: 900px;
    box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
    -webkit-box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
    -moz-box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
    background-color: var(--primary-color);
    transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.timeline .timeline-item:hover .gt-number {
    animation: borderexpand 1.2s infinite;
    -webkit-box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
    -moz-box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
    box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
}

@keyframes borderexpand {
    0% {
        -webkit-box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
        -moz-box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
        box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
    }

    50% {
        -webkit-box-shadow: 0px 0px 0px 12px rgba(237, 29, 36, 0.5);
        -moz-box-shadow: 0px 0px 0px 12px rgba(237, 29, 36, 0.5);
        box-shadow: 0px 0px 0px 12px rgba(237, 29, 36, 0.5);
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
        -moz-box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
        box-shadow: 0px 0px 0px 8px rgba(237, 29, 36, 0.5);
    }
}

.timeline .timeline-item .gt-number::after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    height: calc(100% + -5px);
    margin-top: 20px;
    width: 1px;
    left: 50%;
    top: 100%;
}

.timeline .timeline-item:last-child .gt-number::after {
    content: "";
    display: none;
}

.timeline .timeline-item .gt-num-top,
.timeline .timeline-item .gt-num-top .timeline-title {
    color: var(--white-color);
}

.timeline .timeline-item .gt-num-top .timeline-text {
    margin: 0;
}

@media(max-width:767px) {
    .timeline .timeline-item {
        display: block;
        text-align: center;
        margin-bottom: 60px;
    }

    .timeline .timeline-item .gt-number::after {
        content: "";
        position: absolute;
        display: none;
    }

    .timeline .timeline-item .gt-number {
        display: inline-block;
        margin-bottom: 15px;
        margin-right: 0px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
revl-slider
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#rev_slider_14_1_wrapper .hades.tparrows {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.25);
    width: 100px;
    height: 100px;
    position: absolute;
    display: block;
    z-index: 1000
}

#rev_slider_14_1_wrapper .hades.tparrows:before {
    font-family: 'revicons';
    font-size: 30px;
    color: #ffffff;
    display: block;
    line-height: 100px;
    text-align: center;
    transition: background 0.3s, color 0.3s
}

#rev_slider_14_1_wrapper .hades.tparrows.tp-leftarrow:before {
    content: '\e824'
}

#rev_slider_14_1_wrapper .hades.tparrows.tp-rightarrow:before {
    content: '\e825'
}

#rev_slider_14_1_wrapper .hades.tparrows:hover:before {
    color: rgba(0, 0, 0, 0.5);
    background: #ffffff
}

#rev_slider_14_1_wrapper .hades .tp-arr-allwrapper {
    position: absolute;
    left: 100%;
    top: 0px;
    background: #888;
    width: 100px;
    height: 100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -ms-filter: 'progid:dximagetransform.microsoft.alpha(opacity=0)';
    filter: alpha(opacity=0);
    -moz-opacity: 0.0;
    -khtml-opacity: 0.0;
    opacity: 0.0;
    -webkit-transform: rotatey(-90deg);
    transform: rotatey(-90deg);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%
}

#rev_slider_14_1_wrapper .hades.tp-rightarrow .tp-arr-allwrapper {
    left: auto;
    right: 100%;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: rotatey(90deg);
    transform: rotatey(90deg)
}

#rev_slider_14_1_wrapper .hades:hover .tp-arr-allwrapper {
    -ms-filter: 'progid:dximagetransform.microsoft.alpha(opacity=100)';
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transform: rotatey(0deg);
    transform: rotatey(0deg)
}

#rev_slider_14_1_wrapper .hades .tp-arr-iwrapper {}

#rev_slider_14_1_wrapper .hades .tp-arr-imgholder {
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%
}

#rev_slider_14_1_wrapper .hades .tp-arr-titleholder {}

#rev_slider_14_1_wrapper .hades .tp-arr-subtitleholder {}

#rev_slider_15_1_wrapper .hebe.tparrows {
    cursor: pointer;
    background: #ffffff;
    min-width: 70px;
    min-height: 70px;
    position: absolute;
    display: block;
    z-index: 1000
}

#rev_slider_15_1_wrapper .hebe.tparrows:hover {}

#rev_slider_15_1_wrapper .hebe.tparrows:before {
    font-family: 'revicons';
    font-size: 30px;
    color: rgba(0, 0, 0, 0.5);
    display: block;
    line-height: 70px;
    text-align: center;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    z-index: 2;
    position: relative;
    background: #ffffff;
    min-width: 70px;
    min-height: 70px
}

#rev_slider_15_1_wrapper .hebe.tparrows.tp-leftarrow:before {
    content: '\e824'
}

#rev_slider_15_1_wrapper .hebe.tparrows.tp-rightarrow:before {
    content: '\e825'
}

#rev_slider_15_1_wrapper .hebe.tparrows:hover:before {
    color: #000
}

.tp-title-wrap {
    position: absolute;
    z-index: 0;
    display: inline-block;
    background: #000;
    background: rgba(0, 0, 0, 0.75);
    min-height: 60px;
    line-height: 60px;
    top: -10px;
    margin-left: 0px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transform: scalex(0);
    -webkit-transform: scalex(0);
    transform-origin: 0% 50%;
    -webkit-transform-origin: 0% 50%
}

#rev_slider_15_1_wrapper .hebe.tp-rightarrow .tp-title-wrap {
    right: 0px;
    -webkit-transform-origin: 100% 50%
}

#rev_slider_15_1_wrapper .hebe.tparrows:hover .tp-title-wrap {
    transform: scalex(1);
    -webkit-transform: scalex(1)
}

#rev_slider_15_1_wrapper .hebe .tp-arr-titleholder {
    position: relative;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    line-height: 90px;
    white-space: nowrap;
    padding: 0px 20px 0px 90px
}

#rev_slider_15_1_wrapper .hebe.tp-rightarrow .tp-arr-titleholder {
    margin-left: 0px;
    padding: 0px 90px 0px 20px
}

#rev_slider_15_1_wrapper .hebe.tparrows:hover .tp-arr-titleholder {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
    transition-delay: 0.1s;
    opacity: 1
}

#rev_slider_15_1_wrapper .hebe .tp-arr-imgholder {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 100%;
    display: block;
    background-size: cover;
    background-position: center center;
    top: 0px;
    right: -90px
}

#rev_slider_15_1_wrapper .hebe.tp-rightarrow .tp-arr-imgholder {
    right: auto;
    left: -90px
}

#rev_slider_16_1_wrapper .custom.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000
}

#rev_slider_16_1_wrapper .custom.tparrows:hover {
    background: #000
}

#rev_slider_16_1_wrapper .custom.tparrows:before {
    font-family: 'revicons';
    font-size: 15px;
    color: #fff;
    display: block;
    line-height: 40px;
    text-align: center
}

#rev_slider_16_1_wrapper .custom.tparrows.tp-leftarrow:before {
    content: '\e824'
}

#rev_slider_16_1_wrapper .custom.tparrows.tp-rightarrow:before {
    content: '\e825'
}

#rev_slider_18_1_wrapper .erinyen.tparrows {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    min-width: 70px;
    min-height: 70px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 50%
}

#rev_slider_18_1_wrapper .erinyen.tparrows:before {
    font-family: 'revicons';
    font-size: 20px;
    color: #ffffff;
    display: block;
    line-height: 70px;
    text-align: center;
    z-index: 2;
    position: relative
}

#rev_slider_18_1_wrapper .erinyen.tparrows.tp-leftarrow:before {
    content: '\e824'
}

#rev_slider_18_1_wrapper .erinyen.tparrows.tp-rightarrow:before {
    content: '\e825'
}

#rev_slider_18_1_wrapper .erinyen .tp-title-wrap {
    position: absolute;
    z-index: 1;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    min-height: 70px;
    line-height: 70px;
    top: 0px;
    margin-left: 0px;
    border-radius: 35px;
    overflow: hidden;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    opacity: 0
}

#rev_slider_18_1_wrapper .erinyen.tparrows:hover .tp-title-wrap {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible
}

#rev_slider_18_1_wrapper .erinyen.tp-rightarrow .tp-title-wrap {
    right: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-transform-origin: 100% 50%;
    border-radius: 35px;
    padding-right: 20px;
    padding-left: 10px
}

#rev_slider_18_1_wrapper .erinyen.tp-leftarrow .tp-title-wrap {
    padding-left: 20px;
    padding-right: 10px
}

#rev_slider_18_1_wrapper .erinyen .tp-arr-titleholder {
    letter-spacing: 3px;
    position: relative;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transform: translatex(200px);
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    line-height: 70px;
    white-space: nowrap;
    padding: 0px 20px;
    margin-left: 11px;
    opacity: 0
}

#rev_slider_18_1_wrapper .erinyen .tp-arr-imgholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-position: center center;
    background-size: cover
}

#rev_slider_18_1_wrapper .erinyen .tp-arr-img-over {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.51)
}

#rev_slider_18_1_wrapper .erinyen.tp-rightarrow .tp-arr-titleholder {
    transform: translatex(-200px);
    margin-left: 0px;
    margin-right: 11px
}

#rev_slider_18_1_wrapper .erinyen.tparrows:hover .tp-arr-titleholder {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
    transition-delay: 0.1s;
    opacity: 1
}

#rev_slider_19_1_wrapper .erinyen.tparrows {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    min-width: 70px;
    min-height: 70px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 50%
}

#rev_slider_19_1_wrapper .erinyen.tparrows:before {
    font-family: 'revicons';
    font-size: 20px;
    color: #ffffff;
    display: block;
    line-height: 70px;
    text-align: center;
    z-index: 2;
    position: relative
}

#rev_slider_19_1_wrapper .erinyen.tparrows.tp-leftarrow:before {
    content: '\e824'
}

#rev_slider_19_1_wrapper .erinyen.tparrows.tp-rightarrow:before {
    content: '\e825'
}

#rev_slider_19_1_wrapper .erinyen .tp-title-wrap {
    position: absolute;
    z-index: 1;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    min-height: 70px;
    line-height: 70px;
    top: 0px;
    margin-left: 0px;
    border-radius: 35px;
    overflow: hidden;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    opacity: 0
}

#rev_slider_19_1_wrapper .erinyen.tparrows:hover .tp-title-wrap {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible
}

#rev_slider_19_1_wrapper .erinyen.tp-rightarrow .tp-title-wrap {
    right: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-transform-origin: 100% 50%;
    border-radius: 35px;
    padding-right: 20px;
    padding-left: 10px
}

#rev_slider_19_1_wrapper .erinyen.tp-leftarrow .tp-title-wrap {
    padding-left: 20px;
    padding-right: 10px
}

#rev_slider_19_1_wrapper .erinyen .tp-arr-titleholder {
    letter-spacing: 3px;
    position: relative;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transform: translatex(200px);
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    line-height: 70px;
    white-space: nowrap;
    padding: 0px 20px;
    margin-left: 11px;
    opacity: 0
}

#rev_slider_19_1_wrapper .erinyen .tp-arr-imgholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-position: center center;
    background-size: cover
}

#rev_slider_19_1_wrapper .erinyen .tp-arr-img-over {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.51)
}

#rev_slider_19_1_wrapper .erinyen.tp-rightarrow .tp-arr-titleholder {
    transform: translatex(-200px);
    margin-left: 0px;
    margin-right: 11px
}

#rev_slider_19_1_wrapper .erinyen.tparrows:hover .tp-arr-titleholder {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
    transition-delay: 0.1s;
    opacity: 1
}

#rev_slider_17_1_wrapper .persephone .tp-bullet {
    width: 12px;
    height: 12px;
    position: absolute;
    background: #ffffff;
    border: 1px solid #000000;
    cursor: pointer;
    box-sizing: content-box
}

#rev_slider_17_1_wrapper .persephone .tp-bullet:hover,
#rev_slider_17_1_wrapper .persephone .tp-bullet.selected {
    background: #ed1d24
}

/*++++++ custom css +++++++*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
opacity
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.z-index-1 {
    z-index: 1;
}

.mr-b {
    margin-bottom: -90px;
}

.gt-opacity {
    opacity: 0.08;
}

.gt-opacity3 {
    opacity: 0.06;
}

.gt-opacity4 {
    opacity: 0.1;
}

.gt-opacity5 {
    opacity: 0.05;
}

.gt-opacity9 {
    opacity: 0.09;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
icon-box
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-icon-box1 {
    padding: 32px 16px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
}

.gt-icon-box .gt-icon-box-icon .gt-icon i {
    margin-bottom: 16px;
    font-size: 62px;
    fill: #ED1D24;
    color: #ED1D24;
    border-color: #ED1D24;
}

.gt-icon:hover a {
    margin-top: -15px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 33, 85, 0.2);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 33, 85, 0.2);
    box-shadow: 0px 0px 30px 0px rgba(0, 33, 85, 0.2);
}

.gt-icon-box1 {
    margin-top: -100px;
}

.gt-icon-box-icon3 {
    background-color: var(--grey-color);
    align-self: center;
    padding: 15px 15px;
    display: inline-block;
}

.gt-transformy {
    transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.gt-transformy:hover {
    -moz-transform: translate(0px, -15px);
    -webkit-transform: translate(0px, -15px);
    -o-transform: translate(0px, -15px);
    -ms-transform: translate(0px, -15px);
    transform: translate(0px, -15px);
}

.gt-plumber {
    position: absolute;
    top: -110%;
    right: 17px;
    color: #0000001A;
    font-size: 72px;
}

.gt-plumber2 {
    position: absolute;
    top: -110%;
    right: 17px;
    color: #0000001A;
    font-size: 72px;
}

.col-lg-2dot4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 20%;
}

/*++++++    gt-icon-box-style-01    +++++++*/
.gt-icon-box-style-01 {
    display: flex;
}

.gt-icon-box-style-01 .gt-icon-box-icon i {
    font-size: 58px;
    line-height: 66px;
    color: var(--primary-color);
}

.gt-icon-box-style-01 .gt-icon-box-icon i.gt-text-dark {
    color: var(--dark-color) !important;
}

.gt-icon-box-style-01 .gt-icon-box-content {
    margin-left: 15px;
}

.gt-icon-box-style2 {
    position: relative;
}

.gt-icon-box-style-02 {
    display: flex;
    margin: 0px 0px 0px 0px;
    padding: 45px 30px 45px 30px;
    background-color: #FFFFFF;
    transition: all 0.5s ease-in-out;
}

.gt-icon-box-style-02 .gt-icon-box-icon i {
    font-size: 58px;
    line-height: 66px;
    color: var(--primary-color);
    margin-right: 30px;
}

.gt-icon-box-style-02:hover {
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
}

.gt-icon-box-style-03 {
    display: flex;
    margin: 0px 0px 0px 0px;
    padding: 30px 30px 45px 30px;
    background-color: #FFFFFF;
    transition: all 0.5s ease-in-out;
}

.gt-icon-box-style-03 .gt-icon-box-icon i {
    font-size: 58px;
    line-height: 66px;
    color: var(--primary-color);
    margin-right: 30px;
}

.gt-icon-box-style-03:after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(100% + 1px);
    width: 1px;
    top: 16px;
    right: 5px;
}

.gt-icon-box-style-03:before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(100% + 1px);
    height: 1px;
    bottom: -8px;
    left: 16px;
}

.gt-icon-box-icon-style-04 {
    display: flex;
    padding: 0;
}

.gt-icon-box3.gt-icon-box-icon-style-04 .gt-icon-box-icon2 {
    color: var(--primary-color);
    font-size: 62px;
    padding: 0px 15px 0px 0px;
    margin-bottom: 0;
    line-height: 70px;
}

.gt-icon-box.icon-box-icon-style-04 .gt-icon-box-content1 .gt-icon-box-title1 {
    color: var(--dark-color);
    margin-bottom: 0;
}

.gt-icon-box3.gt-icon-box-icon-style-04 .gt-icon-box-icon4 {
    color: var(--primary-color);
    font-size: 45px;
    padding: 0px 20px 0px 0px;
    margin-bottom: 0;
    line-height: 50px;
}

.gt-icon-box-style-05 {
    padding: 35px 30px;
    margin-top: -100px;
}

.gt-icon-box-style-06 {
    display: flex;
}

.gt-icon-box-style-06 .gt-icon-box-icon i {
    font-size: 40px;
    line-height: 48px;
}

.gt-icon-box-style-06 .gt-icon-box-content {
    margin-left: 15px;
}

.gt-icon-box-style-07 {
    display: flex;
    margin: 0px 0px 0px -5px;
}

.gt-icon-box-style-07 .gt-icon-box-icon i {
    font-size: 58px;
    line-height: 66px;
    color: var(--primary-color);
    margin-right: 30px;
}

.gt-icon-box-style-07 .gt-icon-box-title {
    font-size: 20px;
}

.gt-line {
    height: 1px;
    width: 100%;
    color: var(--grey-color);
    padding-bottom: 0px;
    margin-left: 15px;
}

.gt-icon-box-style-08 {
    display: flex;
    margin: 0px 0px 0px -5px;
}

.gt-icon-box-style-08 .gt-icon-box-icon i {
    font-size: 44px;
    padding: 10px 15px;
    color: var(--primary-color);
    margin-right: 20px;
    background-color: var(--primary-color);
}

.gt-icon-box-style-08 .gt-icon-box-title {
    font-size: 25px;
    margin-bottom: 10px;
}

.gt-icon-box-style-08 .gt-icon-box-content {
    margin-top: -15px;
}

.gt-icon-box-1 {
    margin: 0px 0px 0px 0px;
    position: absolute;
    z-index: 1;
    top: 47%;
    left: 96%;
    background-color: #ED1D24;
    border-style: solid;
    border-color: var(--white-color);
    display: inline-block;
}

.gt-icon-box-1 .gt-icon-box-2 {
    text-align: center;
}

.gt-icon-box-1 .gt-icon-icon-box-1 {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 42px;
    padding: 0px 15px;
}

.gt-icon-box-style-09 {
    display: flex;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(32, 43, 76, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(32, 43, 76, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(32, 43, 76, 0.1);
}

.gt-icon-box-style-09 .gt-icon-box-icon i {
    font-size: 58px;
    line-height: 66px;
    color: var(--primary-color);
}

.gt-icon-box-style-09 .gt-icon-box-content {
    margin-left: 15px;
}

.gt-icon-box-style-10 {
    display: flex;
}

.gt-icon-box-style-10 .gt-icon-box-icon i {
    font-size: 58px;
    color: var(--primary-color);
}

.gt-icon-box-style-10 .gt-icon-box-content {
    margin-left: 15px;
}

.gt-icon-box-style-11 {
    margin: 0px 0px 0px 0px;
}

.gt-icon-box-style-11 .gt-icon-box-icon i {
    font-size: 46px;
    padding: 0.5em;
    color: var(--primary-color);
    margin-right: 20px;
    background-color: var(--primary-color);
}

.gt-icon-box-style-11 .gt-icon-box-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.gt-icon-box-style-11 .gt-icon-box-content {
    margin-top: -15px;
}

.gt-icon-box-style-12 {
    display: flex;
    margin: 0px 0px 0px 0px;
    padding: 45px 30px 45px 30px;
    background-color: var(--grey-color);
    transition: all 0.5s ease-in-out;
}

.gt-icon-box-style-12 .gt-icon-box-icon i {
    font-size: 58px;
    line-height: 66px;
    color: var(--primary-color);
    margin-right: 30px;
}

.gt-icon-box-style-12:hover {
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    background-color: var(--white-color);
}

/*================================================
icon-list
================================================*/
.pt-icon-list-items {
    padding-left: 0px;
}

.pt-icon-list-items .pt-icon-list-item {
    margin-bottom: 10px;
    list-style-type: none;
}

.pt-icon-list-items .pt-icon-list-item .pt-icon-list-icon i {
    color: var(--primary-color);
}

.pt-icon-list-items1 .pt-icon-list-item1 {
    margin-bottom: 10px;
    list-style-type: none;
}

.pt-icon-list-items1 .pt-icon-list-item1 .pt-icon-list-icon1 i {
    color: var(--white-color);
}

.pt-icon-list-items1 .pt-icon-list-item1 .pt-icon-list-icon2 i {
    color: var(--primary-color);
}

.gt-icon-list-items2 .gt-icon-list-item2 {
    list-style-type: none;
}

.gt-icon-list-items2 .gt-icon-list-item2 .gt-icon-list-icon2 i {
    color: var(--primary-color);
    font-size: 46px;
}

/*================================================
images
================================================*/
.gt-img-0 {
    position: absolute;
    left: 4%;
    bottom: 0%;
    border-top: 15px solid var(--white);
    border-left: 15px solid var(--white);
    border-right: 15px solid var(--white);
}

.gt-bg-img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 165px;
    width: 329px;
    z-index: -1;
}

.gt-img-1 {
    position: relative;
    margin: -90px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 130%;
    max-width: 130%;
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.gt-image-2 {
    width: 100%;
    height: 625px;
    position: relative;
    object-fit: cover;
}

.gt-img-3 {
    width: 650px;
    height: 530px;
}

.gt-img-4 {
    position: relative;
    max-width: 100%;
    height: 600px;
    width: 990px;
    background-size: cover;
    display: inline-block;
    object-fit: cover;
}

.gt-img-5 {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.gt-img-6 {
    position: absolute;
    left: 0;
    top: auto;
    height: 200px;
    width: 200px;
    z-index: 1;
    bottom: 0;
}

.gt-img-7 {
    position: absolute;
    top: 0;
    bottom: 0%;
    left: 10%;
    right: 50%;
    z-index: 1;
    border-radius: 900px;
    height: 80px;
    width: 80px;
}

.gt-img-8 {
    width: 147%;
    max-width: 147%;
    height: 100%;
    position: relative;
    object-fit: cover;
    margin-left: -30%;
}

.gt-img-9 {
    width: 404px;
    height: 600px;
    object-fit: cover;
}

.gt-img-10 {
    height: 100%;
    width: 100%;
}

.gt-img-12 {
    height: 593px;
    width: 310px;
    object-fit: cover;
}

.gt-img-11 {
    position: relative;
    height: 370px;
    width: 297px;
    z-index: -1;
}

.gt-bg-img-10 {
    position: absolute;
    bottom: 0;
    left: 0%;
    height: 121px;
    width: 243px;
    z-index: -1;
}

.gt-img-13 {
    width: 980px;
    max-width: 980px;
    height: 703px;
    object-fit: cover;
}

.gt-img-14 {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.gt-img-15 {
    height: 295px;
    width: 295px;
    object-fit: cover;
}

.gt-img-16 {
    height: 295px;
    width: 295px;
    object-fit: cover;
}

/*---------------heading text----------*/
.gt-heading .gt-heading-title {
    margin: 0px 0px 0px 0px;
    padding: 30px 25px 30px 25px;
    background-color: var(--primary-color);
    border-top: 15px solid var(--white);
    color: var(--white-color);
    display: inline-block;
}

.gt-heading-title {
    padding: 0;
    margin: 0;
    line-height: 1;
}

.gt-heading1 {
    margin-top: 20px;
    border-top: 1px solid #F5F5F5;
    padding-top: 20px;
}

.gt-heading1 .gt-heading-title1 {
    color: #808080;
    font-family: "Jost", Sans-serif;
    font-weight: 400;
    text-transform: capitalize;
}

.gt-heading1 .gt-heading-title2 {
    color: var(--dark-color);
    font-family: "Hind Madurai", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}

.gt-heading3 {
    margin: 45px 0px 0px 0px;
}

.gt-heading3 .gt-heading-title3 {
    text-align: center;
    color: var(--white-color);
    font-family: "Hind Madurai", Sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.gt-heading4 .gt-heading-title4 {
    color: var(--white-color);
    font-family: "Hind Madurai", Sans-serif;
    font-size: 62px;
    font-weight: 700;
}

.gt-heading5 {
    padding: 0;
    margin: 0;
    line-height: 1;
}

.gt-heading5 .gt-heading-title5 {
    color: var(--dark-color);
    font-family: "Hind Madurai", Sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

.gt-form2 {
    background-color: var(--white-color);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 0px;
    padding: 48px 32px 48px 32px;
}

/*==== background image overlay ======*/
.gt-bg-overley {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.gt-bg-overley1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
    background-attachment: scroll;
    background-position: bottom;
}

.gt-bg-overley2 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 15% auto;
    z-index: -1;
}

.gt-bg-overley3 {
    background-position: -90px 500px;
    background-repeat: no-repeat;
    background-size: 20% auto;
    opacity: 1;
    height: 100%;
    width: 91%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
}

.gt-bg-overley4 {
    background-attachment: scroll;
    background-position: 160px 400px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.gt-bg-overley5 {
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.gt-bg-overley6 {
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 10% auto;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.gt-bg-overley7 {
    background-position: 0px 110%;
    background-repeat: no-repeat;
    background-size: auto;
    opacity: 0.05;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.gt-bg-overley8 {
    background-position: 100% 116%;
    background-repeat: no-repeat;
    opacity: 0.05;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.gt-bg-overley9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
}

.gt-bg-overley10 {
    height: 100%;
    width: 100%;
    top: 15%;
    left: 0;
    position: absolute;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 15% auto;
}

/*++++++++++gt-progressbar++++++++++++*/
.gt-progressbar {
    margin-top: -45px;
}

/*==== why-choose-us ======*/
.why-choose-us {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 0px;
    padding: 60px 45px 60px 45px;
    background-color: var(--white-color);
}

/*==== our-skill ======*/
.our-skill {
    margin-top: -120px;
}

.our-skill1 {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 0px;
    padding: 60px 60px 60px 60px;
    background-color: var(--white-color);
}

.our-skill1:after {
    content: "";
    position: absolute;
    right: 100%;
    top: 0px;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--white-color);
}

/*==== outstanding-residential ======*/
.outstanding-residential {
    padding: 30px 0px;
}

.outstanding-residential1 {
    margin: 0px 0px 0px 0px;
    padding: 0px 15px 0px 45px;
}

.outstanding-residential:before {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    width: 40%;
    height: 100%;
    top: 0;
    left: -15%;
    z-index: 1;
}

/*==== video ======*/
.video {
    padding: 30px 0px 210px 0px;
}

.video2 {
    padding: 30px 0px;
}

/*==== facilities ======*/
.facilities1 {
    padding: 62px 0px;
}

.facilities {
    margin-bottom: -100px;
    z-index: 1;
}

.facilities:before {
    left: 30%;
    content: "";
    height: 64%;
    width: 100%;
    position: absolute;
    width: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
}

/*==== request-services ======*/
.request-services1 {
    padding: 45px 30px;
    border: 1px solid var(--grey-color);
    border-width: 1px 1px 1px 0px;
}

.request-services {
    margin-top: -100px;
    z-index: 1;
}

.request-services::before {
    content: "";
    position: absolute;
    background-color: #ffff;
    width: 100%;
    height: 100%;
    top: 0;
    right: 60%;
    z-index: -1;
    border: 1px solid var(--grey-color);
    border-width: 1px 0px 1px 0px;
}

@media(max-width:1190px) {
    .request-services::before {
        display: none;
    }

    .request-services1 {
        border-width: 1px 1px 1px 1px;
    }
}

/*==== image-box-content ======*/
.image-box-content {
    margin-left: -60px;
    margin-top: 10px;
}

.gt-image-box {
    margin: 0px;
    align-items: center;
    display: flex;
    position: absolute;
    left: -38%;
    top: 0;
}

.gt-image-box .gt-image-box-img img {
    width: 90%;
    margin: 0;
    display: inline-block;
}

.gt-image-box .gt-image-box-content {
    width: 100%;
    margin-left: 15px;
}

.gt-image-box .gt-image-box-content .gt-image-box-title {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: capitalize;
    font-weight: 700;
    margin: 0;
}

.gt-image-box .gt-image-box-content .gt-image-box-description {
    margin: 0;
    color: var(--primary-color);
    font-family: "Jost", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 22px;
}

/*==== iframe ======*/
iframe.pt-video-iframe {
    width: 100%;
    height: 345px;
}

.gt-ifrm {
    width: 100%;
    height: 500px;
    border: 0px;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px 0px 0px 0px;
}

/*====get-in-touch ======*/
.get-in-touch {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 0px;
    padding: 45px 30px 45px 30px;
}

.get-quote {
    margin: 0px 0px 0px 0px;
    padding: 0px 15px 0px 60px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
sidebar-contact css
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.widget.widget-port-1 ul.gt-contact li {
    position: relative;
}

.gt-form-service input[type=text],
.gt-form-service input[type=email],
.gt-form-service select {
    border: 1px solid var(--grey-color);
    background: var(--white-color);
    margin-bottom: 15px;
}

.gt-form-service select {
    border-radius: 0;
}

.gt-form-service .gt-dest-button {
    width: 100%;
    display: flex;
    justify-content: center;
}

.gt-form-service .gt-dest-button [type=submit] {
    margin: 0px auto;
    padding: 8px 80px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
map chart 
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.map-chart,
#chartdiv {
    height: 382px;
}

/*+++++form service++++++++*/
.pt-form-service select,
.pt-form-service input[type='text'],
.pt-form-service input[type='email'] {
    margin-bottom: 15px;
}

.pt-form-service select {
    background: var(--grey-color);
    color: inherit;
    text-transform: capitalize;
    border-width: 0px;
}

.pt-form-service .pt-dest-button {
    margin: 15px 15px 0px;
    width: 100%;
}

.pt-form-service .pt-dest-button input[type="submit"] {
    width: 100%;
}

.page-id-9259 #gt-footer {
    display: none;
}

/*++++++ pt-form-carpenter +++++++*/
.pt-form-carpenter input[type="text"],
.pt-form-carpenter input[type="email"],
.pt-form-carpenter textarea {
    margin-bottom: 30px;
}

.pt-form-carpenter input[type="submit"] {
    width: 100%;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++
Border-effect
+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.gt-border-effect::before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    width: calc(100% + 1px);
    height: 1px;
    bottom: -8px;
    left: 16px;
}

.gt-border-effect::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    height: calc(100% + 1px);
    width: 1px;
    top: 16px;
    right: -8px;
}

/* dark-border effect   */
.gt-border-effect.dark::before,
.gt-border-effect.dark::after {
    background: var(--dark-color);
}

.gt-border-effect.dark:hover::before {
    width: calc(0% + 0px);
}

.gt-border-effect.dark:hover::after {
    height: calc(0% + 0px);
}

/* white-border effect   */
.gt-border-effect.white::before,
.gt-border-effect.white::after {
    background: var(--white-color);
}

.gt-border-effect.white:hover::before {
    width: calc(0% + 0px);
}

.gt-border-effect.white:hover::after {
    height: calc(0% + 0px);
}

/*+++++ Transform Up effect ++++*/
.gt-transformy {
    transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.gt-transformy:hover {
    -moz-transform: translate(0px, -15px);
    -webkit-transform: translate(0px, -15px);
    -o-transform: translate(0px, -15px);
    -ms-transform: translate(0px, -15px);
    transform: translate(0px, -15px);
}

/* services   */
.gt-services {
    background-color: transparent;
    background-image: linear-gradient(180deg, #F4F4F4 54%, #FFFFFF 50%);
}

.our-services {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.gt-section {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 0px;
    padding: 90px 45px 90px 15px;
}

.our-services1 {
    padding: 130px 0px;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 130px 0px 130px 0px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #F5F5F5 62.75%, #FFFFFF 48.5%);
}

.gt-year1 {
    padding: 30px 45px 30px 45px;
    display: inline-block;
    background-color: #ED1D24;
    border-style: solid;
    border-width: 8px 8px 8px 8px;
    border-color: #FFFFFF;
    position: absolute;
    top: 40%;
    left: -9%;
}

.contect-us .gt-img-left {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
    animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.mfp-iframe-holder .mfp-close {
    top: 0;
}


.floting-bar-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
}

.floting-bar-wrap.active,
.floting-bar-wrap.active .floting-bar-overlay {
    opacity: 1;
    visibility: visible;
}

.floting-bar-wrap,
.floting-bar-wrap .floting-bar-widget-area .widget-title,
.floting-bar-social-wrap .floting-bar-social-title h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #000;
}

.floting-bar-wrap .floting-bar-overlay {
    position: fixed;
    content: "";
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    visibility: hidden;
    background: #00000080;
    transition: all 0.3s ease-in-out 0s;
}

.floting-bar-wrap .floting-bar-wrap-inner {
    position: fixed;
    top: 0;
    right: -400px;
    z-index: 8;
    width: 450px;
    height: 100%;
    padding: 100px 50px;
    transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    opacity: 0;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    background-color: #fff;
}

.floting-bar-wrap.active .floting-bar-wrap-inner {
    right: 0px;
    visibility: visible;
    opacity: 1;
    overflow-y: scroll;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
    opacity: 1;
    z-index: 10;
}

.gt-header-sticky .floting-bar-wrap .floting-bar-wrap-inner {
    height: 100vh;
}

.floting-bar-wrap .floting-bar-widget-area img {
    max-height: 60px;
    width: auto;
    margin: 0 0 50px 0;
}

.floting-bar-wrap .floting-bar-social-wrap {
    margin: 50px 0 0 0;
}

.gt-footer-newsletter {
    position: relative;
}

.floting-bar-wrap .gt-footer-newsletter .gt-btn {
    width: 100%;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.floting-bar-social-wrap .gt-social-links li:not(:last-child) {
    margin-right: 10px;
}

.floting-bar-social-wrap .gt-social-links li {
    padding: 0 !important;
}

.floting-bar-social-wrap .gt-social-links li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 6px;
    color: #fff;
    background-color: #000;
}

.floting-bar-social-wrap .gt-social-links li a:hover {
    background-color: var(--primary-color);
}

.floting-bar-social-wrap .gt-social-links li a i {
    font-size: 16px;
    line-height: 40px;
}

.floting-bar-wrap .closepanel {
    position: absolute;
    z-index: 600;
    right: 0;
    top: 30px;
    display: block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    cursor: pointer;
    z-index: 9999;
    color: #000;
    background-color: var(--primary-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: translate(0%, -50%) rotate(0deg);
    transform: translate(0%, -50%) rotate(0deg);
}

.floting-bar-wrap .closepanel svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.floting-bar-wrap .floting-bar-wrap-inner .gt-widget-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
}

.floting-bar-wrap .floting-bar-social-wrap .gt-social-links {
    display: flex;
    list-style: none;
    padding: 0;
}

.outstanding-residential3 .pt-image-box-title {
    margin-bottom: 0;
}






.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 37, 64, 0.92),
            rgba(10, 37, 64, 0.70),
            rgba(10, 37, 64, 0.35));
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 73%;
    display: flex;
    align-items: center;
}

.slide-text {
    width: 100%;
    max-width: 750px;

}

.slide-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 650px;
}

.btn-primary-hero {
    background: linear-gradient(to right, #1E90FF, #00C2A8);
    color: #fff;
    border: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.btn-outline-hero {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-3px);
}

/* TEXT ANIMATION */
.carousel-item.active .slide-text {
    animation: fadeInUp 0.9s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ARROWS FIX */
.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    opacity: 1;
    z-index: 10;
}

.carousel-control-prev {
    justify-content: flex-start;
    padding-left: 25px;
}

.carousel-control-next {
    justify-content: flex-end;
    padding-right: 25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-size: 22px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #1E90FF;
    transform: scale(1.1);
}

/* INDICATORS */
.carousel-indicators {
    bottom: 35px;
    z-index: 11;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
    background-color: #00C2A8;
    transform: scale(1.2);
}


.hero-slider {
    height: 85vh;
}


.carousel-item.active .slide-text {
    padding-top: 100px;

}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {

    .hero-slider {
        height: 90vh;
    }

    .slide-text {
        text-align: center;
        margin: auto;
        padding-top: 70px;
    }

    .slide-content h1 {
        font-size: 2.3rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
    }

    .carousel-control-prev {
        padding-left: 10px;
    }

    .carousel-control-next {
        padding-right: 10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {

    .hero-slider {
        height: 85vh;
    }

    .slide-content h1 {
        font-size: 1.9rem;
    }

    .slide-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-primary-hero,
    .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }

    .d-flex.gap-3 {
        gap: 15px !important;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-brand img {
        height: 49px;
    }

    header#gt-header .gt-bottom-header .navbar .navbar-nav li a {
        width: 100%;
        display: inline-block;
        padding: 12px;
    }

    .gt-img-12 {
        height: 337px;
        width: 310px;
        object-fit: cover;
    }
}

.menu-quick {
    padding-left: 90px;
}

@media (max-width: 767px) {
    section {
        padding: 25px 0px;
    }

    .menu-quick {
        padding-left: 20px;
    }

    .gt-section-title-box .gt-section-title {
        font-size: 23px;
        line-height: 34px;
    }

    .gt-icon-box-style-02 {
        display: flex;
        margin: 0px 0px 0px 0px;
        padding: 20px 30px 18px 30px;
        background-color: #FFFFFF;
        transition: all 0.5s ease-in-out;
    }

    .testimonial {
        /* padding: 18px 0px 104px 0px; */
    }

    #gt-footer .gt-footer-style-1 .gt-footer-logo {
        height: 73px;
        margin-bottom: 30px;
    }

    section {
        padding: 40px 0px;
    }

    .gt-section-description {
        margin-bottom: 10px;
    }

    .Client .gt-section-sub-title {
        text-align: center;
    }

    .Client .gt-section-title {
        text-align: center;
    }

    .btn-primary-hero,
    .btn-outline-hero {
        padding: 8px 19px;
    }

    .hero-slider {
        height: 69vh;
    }

    .slide-text {
        text-align: center;
        margin: auto;
        padding-top: 103px;
    }
}

.carousel-indicators {
    display: none;
}

/* =========================
   HERO SLIDER ARROW DESIGN
========================= */

.carousel-control-prev,
.carousel-control-next {
    width: 90px;
    opacity: 1 !important;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
}

/* LEFT */
.carousel-control-prev {
    left: 25px;
    justify-content: flex-start;
}

/* RIGHT */
.carousel-control-next {
    right: 25px;
    justify-content: flex-end;
}

/* REMOVE DEFAULT ICON */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;

    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);

    border: 2px solid rgba(255, 255, 255, 0.20);

    transition: all 0.4s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);
}

/* CUSTOM ARROWS */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: "";
    width: 16px;
    height: 16px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
}

/* LEFT ARROW */
.carousel-control-prev-icon::after {
    transform: rotate(-135deg);
    margin-left: 6px;
}

/* RIGHT ARROW */
.carousel-control-next-icon::after {
    transform: rotate(45deg);
    margin-right: 6px;
}

/* HOVER EFFECT */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background: linear-gradient(135deg,
            #00C2A8,
            #1E90FF);

    transform: scale(1.12);

    border-color: transparent;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35);
}

/* ACTIVE CLICK */
.carousel-control-prev:active .carousel-control-prev-icon,
.carousel-control-next:active .carousel-control-next-icon {
    transform: scale(0.95);
}



.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    padding-right: 112px;
}


.gaf {
    gap: 30px;
}

.gt-clientbox-1 .gt-client-hover-img {
    border-radius: 13px;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    border-radius: 13px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:991px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after {
        width: 12px;
        height: 12px;
    }
}
.navbar .container, .navbar .container-fluid, .navbar .container-lg, .navbar .container-md, .navbar .container-sm, .navbar .container-xl {
   
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: initial;
   
}

.side-box h3{
    color:white;
}
@media(max-width:576px) {

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 45px;
        height: 45px;
    }
}