/* ====================================================
    # Varible CSS
============================================== */
:root {
    --primary-color: #1fa2ff;
    --secondary-color: #df042c;
    --white-color: #ffffff;
    --black-color: #000000;
    --font-color: #424242;
    --section-color: #dfe2ef;
    --primary-font: "Raleway", sans-serif;
    --secondary-font: "Poppins", sans-serif;
}

/* ====================================================
	# Normalize CSS
============================================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.825em;
    font-family: var(--secondary-font);
    color: var(--font-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    margin-top: 0;
}

p {
    font-family: var(--secondary-font);
    margin-top: 0;
}

/*======================
Common style
======================*/
.site {
    background: var(--white-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    z-index: 6;
}

.openNav .overlay {
    display: block;
}

/*======================
Font Sizes
======================*/
.xl-title {
    font-size: 46px;
    line-height: 64px;
    font-weight: 600;
    color: var(--font-color);
}

.lg-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
    color: var(--font-color);
}

.md-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    color: var(--font-color);
}

.sm-title {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: var(--font-color);
}
@media (max-width: 768px) {
    .sm-title {
        font-size: 18px;
    }
}

.ls-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--font-color);
}

.xs-title {
    font-size: 15px;
    line-height: 28px;
    color: var(--font-color);
}

.ts-title {
    font-size: 12px;
    line-height: 16px;
    color: var(--font-color);
}

.font-w-semi {
    font-weight: 600;
}

.bg-main {
    background: var(--primary-color);
}

.bg-section {
    background: var(--section-color);
}

.text-black {
    color: var(--black-color);
}

.text-main {
    color: var(--primary-color);
}

.text-sec {
    color: var(--secondary-color);
}

.flex-g-1 {
    flex: 1 0 0;
}

.box-shadow-1 {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.box-shadow-2 {
    box-shadow: 0px 6px 21px 3px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.box-shadow-2:hover {
    box-shadow: 0px 23px 21px 3px rgba(0, 0, 0, 0.1);
}

.border-b-primary {
    border-bottom: 1px solid var(--primary-color);
}

.border-b-secondary {
    border-bottom: 1px solid var(--secondary-color);
}

.border-b-white {
    border-bottom: 1px solid var(--white-color);
}

.left-two-border {
    position: relative;
    padding-left: 28px;
}
.left-two-border:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--primary-color);
    height: 8px;
    width: 8px;
}

.after-left-border-white,
.after-left-border-primary,
.after-left-border-secondary {
    position: relative;
    padding-left: 66px;
}
.after-left-border-white:before,
.after-left-border-primary:before,
.after-left-border-secondary:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 2px;
    width: 50px;
}

.after-left-border-white:before {
    background: var(--white-color);
}

.after-left-border-primary:before {
    background: var(--primary-color);
}

.after-left-border-secondary:before {
    background: var(--secondary-color);
}

.after-border-b-primary,
.after-border-b-secondary,
.after-border-b-white {
    position: relative;
    padding-bottom: 40px;
}
.after-border-b-primary:before,
.after-border-b-secondary:before,
.after-border-b-white:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    height: 2px;
    width: 70px;
}

.after-border-b-primary:before {
    background: var(--primary-color);
}

.after-border-b-secondary:before {
    background: var(--secondary-color);
}

.after-border-b-white:before {
    background: var(--white-color);
}

.after-cent-border-b-primary,
.after-cent-border-b-secondary,
.after-cent-border-b-white {
    position: relative;
    padding-bottom: 54px;
}
.after-cent-border-b-primary:before,
.after-cent-border-b-secondary:before,
.after-cent-border-b-white:before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 50px;
    height: 2px;
    width: 55px;
}

.after-cent-border-b-primary:before {
    background: var(--primary-color);
}

.after-cent-border-b-secondary:before {
    background: var(--secondary-color);
}

.after-cent-border-b-white:before {
    background: var(--white-color);
}

.list-none {
    list-style: none;
    padding: 0;
    margin: 0;
}

.py-80 {
    padding: 80px 0;
}

.pt-80 {
    padding: 80px 0;
}

.my-80 {
    padding: 80px 0;
}

.mt-80 {
    padding: 80px 0;
}

.site-header .header-t {
    background: var(--primary-color);
}
.site-header .header-t .wrap {
    color: var(--white-color);
}
.site-header .header-t .wrap svg {
    padding: 5px;
    width: 21px;
    height: 21px;
    background: var(--white-color);
    color: var(--primary-color);
    align-items: center;
    border-radius: 20px;
    vertical-align: middle;
    margin-bottom: 3px;
}
.site-header .header-t .wrap a {
    color: var(--white-color);
}
.site-header .header-t .social-link ul {
    justify-content: flex-end;
}
.site-header .header-t .social-link ul li a {
    width: 24px;
    font-size: 12px;
    height: 24px;
    background: var(--white-color);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    color: var(--primary-color);
}
.site-header .header-t .social-link ul li a:hover {
    border-radius: 0;
}
.site-header .header-t .search {
    cursor: pointer;
}
.site-header .header-t .meta-info .search-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 66;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}
.site-header .header-t .meta-info .search-overlay .close-search-lay {
    position: absolute;
    top: 30px;
    right: 18%;
    font-size: 50px;
    cursor: pointer;
}
@media (max-width: 1024px) {
    .site-header .header-t .meta-info .search-overlay .close-search-lay {
        right: 12%;
        font-size: 36px;
    }
}
.site-header .header-t .meta-info .search-overlay .search-wrapper {
    border-bottom: 1px solid var(--white-color);
    width: 100%;
    z-index: 4;
}
.site-header .header-t .meta-info .search-overlay .search-wrapper .form-control,
.site-header .header-t .meta-info .search-overlay .search-wrapper button {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border: 0;
    height: 100%;
    background: none;
}
.site-header
    .header-t
    .meta-info
    .search-overlay
    .search-wrapper
    .form-control:focus,
.site-header .header-t .meta-info .search-overlay .search-wrapper button:focus {
    box-shadow: none;
    outline: none;
}
.site-header
    .header-t
    .meta-info
    .search-overlay
    .search-wrapper
    .form-control {
    padding: 11px 8px;
    color: var(--white-color);
}
@media (max-width: 1024px) {
    .site-header
        .header-t
        .meta-info
        .search-overlay
        .search-wrapper
        .form-control {
        right: 12%;
        font-size: 18px;
        font-weight: 500;
    }
}
.site-header .header-t .meta-info .search-overlay .search-wrapper .sub {
    display: block;
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    align-items: center;
    align-self: center;
}
@media (max-width: 1024px) {
    .site-header .header-t .meta-info .search-overlay .search-wrapper .sub {
        right: 12%;
        font-size: 24px;
    }
}
.site-header .header-b {
    background: var(--bg-white);
}
.site-header .header-b .site-logo img {
    width: 240px;
}
@media (max-width: 768px) {
    .site-header .header-b .site-logo img {
        width: 182px;
    }
}
.site-header .header-b .toggle-menu {
    color: var(--black-color);
}
.site-header .header-b .main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation {
        position: fixed;
        right: 0;
        top: 0;
        height: 100%;
        width: 316px;
        background: var(--white-color);
        z-index: 99;
        border: 1px solid #efefef;
        padding-top: 24px;
        right: -340px;
        -webkit-transition: ease 0.4s;
        -moz-transition: ease 0.4s;
        transition: ease 0.4s;
        display: block;
        overflow-y: scroll;
    }
}
.site-header .header-b .main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    font-size: 15px;
    z-index: 66;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul {
        flex-direction: column;
        padding-top: 8px;
    }
}
.site-header .header-b .main-navigation ul li {
    margin-right: 26px;
    position: relative;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li {
        margin-right: 0;
    }
}
.site-header .header-b .main-navigation ul li a {
    color: var(--font-color);
    text-decoration: none;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li a {
        display: block;
        padding: 8px 6px 6px 24px;
        border-bottom: 1px solid #efefef;
    }
}
.site-header .header-b .main-navigation ul li .drop-icon {
    color: var(--font-color);
    align-items: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    justify-content: center;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li .drop-icon {
        position: absolute;
        top: 9px;
        display: flex;
        background: var(--primary-color);
        color: var(--white-color);
        width: 24px;
        right: 12px;
        height: 24px;
    }
}
.site-header .header-b .main-navigation ul li.rotate > .drop-icon {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}
.site-header .header-b .main-navigation ul li ul {
    position: absolute;
    top: 50px;
    left: 0;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    font-size: 13px;
    width: 200px;
    border: 1px solid #efefef;
    background: var(--white-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li ul {
        position: relative;
        display: none;
        visibility: visible;
        opacity: 1;
        width: 100%;
        top: 0;
        -webkit-transition: unset;
        -moz-transition: unset;
        transition: unset;
        padding-top: 0px;
        border: 0;
    }
}
.site-header .header-b .main-navigation ul li ul li {
    margin-right: 0;
    border-bottom: 1px solid #efefef;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li ul li {
        border-bottom: 0;
    }
}
.site-header .header-b .main-navigation ul li ul li .drop-icon {
    float: right;
    margin: 11px 11px;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li ul li .drop-icon {
        margin: 0 0;
    }
}
.site-header .header-b .main-navigation ul li ul li .drop-icon svg {
    -webkit-transform: rotate(266deg);
    -moz-transform: rotate(266deg);
    transform: rotate(266deg);
    -webkit-transition: ease 0.4s;
    -moz-transition: ease 0.4s;
    transition: ease 0.4s;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li ul li .drop-icon svg {
        -webkit-transform: unset;
        -moz-transform: unset;
        transform: unset;
    }
}
.site-header .header-b .main-navigation ul li ul li a {
    display: inline-block;
    padding: 6px 6px 6px 11px;
    background: var(--white-color);
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li ul li a {
        padding: 6px 6px 6px 24px;
        display: block;
    }
}
.site-header .header-b .main-navigation ul li ul li ul {
    top: 100%;
    left: 80%;
    box-shadow: 0px 6px 21px 3px rgba(0, 0, 0, 0.1);
    line-height: 20px;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li ul li ul {
        box-shadow: unset;
        line-height: 24px;
        left: 0;
    }
}
.site-header .header-b .main-navigation ul li ul li:hover > .drop-icon svg {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    transform: rotate(359deg);
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li ul li:hover > .drop-icon svg {
        -webkit-transform: unset;
        -moz-transform: unset;
        transform: unset;
    }
}
.site-header .header-b .main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
}
.site-header .header-b .main-navigation ul li:hover > a {
    color: var(--primary-color);
}
.site-header .header-b .main-navigation ul li:hover > .drop-icon {
    color: var(--primary-color);
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li:hover > .drop-icon {
        color: var(--white-color);
    }
}
.site-header .header-b .main-navigation ul li:last-child {
    margin-right: 0;
}
.site-header .header-b .main-navigation .btn-wrap {
    margin-left: 16px;
    flex-shrink: 1;
    margin-top: 6px;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation .btn-wrap {
        margin-top: 14px;
    }
}
.site-header .header-b .main-navigation .btn-wrap a {
    display: inline-block;
    padding: 4px 23px;
}
.site-header .header-b.nav-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 6;
    background: var(--white-color);
    z-index: 88;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

.openNav .site-header .header-b .main-navigation {
    right: 0;
}

.openSearchOver .site-header .header-t .meta-info .search-overlay {
    visibility: visible;
    top: 0;
    opacity: 1;
}

.page-banner {
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.6)
        ),
        url("../images/page-banner/img-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 138px 0 80px;
}
.page-banner .container {
    flex-wrap: wrap;
}
.page-banner .page-title {
    color: var(--white-color);
    font-weight: 700;
}
@media (max-width: 768px) {
    .page-banner .page-title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 1px;
        margin-right: 14px;
    }
}
.page-banner .bread-crumbs .active {
    color: var(--primary-color);
}

.pagination ul li {
    margin-right: 14px;
}
.pagination ul li a {
    display: block;
    padding: 7px 18px;
    background: var(--primary-color);
    font-size: 12px;
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.pagination ul li a:hover {
    text-decoration: none;
    background: transparent;
    color: var(--primary-color);
}
.pagination ul li.current {
    background: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 7px 18px;
    color: var(--black-color);
}

.section-content {
    font-size: 14px;
    line-height: 26px;
}

.site-footer {
    background-size: cover;
    background: linear-gradient(
            to right,
            rgba(68, 96, 116, 0.8),
            rgba(31, 162, 255, 0.6)
        ),
        url("../images/footer-01.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.site-footer .footer-t {
    padding: 50px 0 8px;
}
.site-footer .footer-t ul li {
    margin-bottom: 14px;
}
.site-footer .footer-t .social-link ul li a {
    background: #ffffff;
    color: #00a5e6;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.site-footer .footer-t .social-link ul li a:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    transform: translateY(-6px);
}
.site-footer p {
    margin-bottom: 0;
}
.site-footer img {
    width: 200px;
    height: 80px;
    object-fit: contain;
}
.site-footer .footer-content {
    font-size: 13px;
}
.site-footer .social-links {
    margin-top: 16px;
}
.site-footer .social-links ul li svg {
    padding: 11px;
    height: 40px;
    width: 40px;
    background: var(--white-color);
    color: var(--primary-color);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    -webkit-transition: ease 0.6s;
    -moz-transition: ease 0.6s;
    transition: ease 0.6s;
}
.site-footer .social-links ul li svg:hover {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

.to-top {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 16px 22px;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 99;
}
.to-top .fas {
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
@media (max-width: 768px) {
    .to-top {
        font-size: 18px;
        padding: 13px 20px;
    }
}
.to-top:hover .fas {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.button-one-pri {
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-block;
    border: 1px solid var(--primary-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.button-one-pri:hover {
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
}

.button-two-pri {
    padding: 6px 14px;
    background: transparent;
    color: var(--primary-color);
    display: inline-block;
    border: 1px solid var(--primary-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.button-two-pri:hover {
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
}

.button-round-pri {
    padding: 6px 18px;
    display: inline-block;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
    background: var(--primary-color);
    color: var(--white-color);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.button-round-pri:hover {
    text-decoration: none;
}

.button-one-sec {
    padding: 6px 14px;
    background: var(--secondary-color);
    color: var(--white-color);
    display: inline-block;
    border: 1px solid var(--secondary-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.button-one-sec:hover {
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
}

.button-two-sec {
    padding: 6px 14px;
    background: transparent;
    color: var(--secondary-color);
    display: inline-block;
    border: 1px solid var(--secondary-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.button-two-sec:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
}

.button-round-sec {
    padding: 6px 18px;
    display: inline-block;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
    background: var(--primary-color);
    color: var(--white-color);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.button-round-sec:hover {
    text-decoration: none;
}

.button-three {
    z-index: 1;
    overflow: hidden;
    background: transparent;
    position: relative;
    padding: 4px 6px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    display: flex;
    justify-content: center;
}
.button-three.for-hov {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.button-three.for-hov:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}
.button-three.for-hov:hover {
    color: var(--white-color);
    background: var(--primary-color);
    text-decoration: none;
}
.button-three.for-hov:hover:before {
    width: 100%;
}
.button-three svg {
    vertical-align: middle;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    width: 30px !important;
    padding: 5px;
    border: 1px solid var(--primary-color);
    height: 30px;
}
.button-three:hover svg {
    border-color: var(--white-color);
}

.button-four-pri {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: var(--white-color);
    letter-spacing: 1px;
    text-transform: capitalize;
    overflow: hidden;
}
.button-four-pri:hover {
    color: var(--white-color);
    text-decoration: none;
}
.button-four-pri:hover .btn-title {
    color: var(--white-color);
}
.button-four-pri:hover .btn-title:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.button-four-pri .btn-title {
    position: relative;
    display: block;
    z-index: 1;
    padding: 10px 18px;
    font-weight: 400;
    background: var(--primary-color);
    overflow: hidden;
}
@media (max-width: 768px) {
    .button-four-pri .btn-title {
        padding: 7px 15px;
        font-size: 13px;
    }
}
.button-four-pri .btn-title:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    background-color: #25283a;
}

.button-w-icon-one {
    letter-spacing: 1px;
    background: none;
    color: white;
    position: relative;
    outline: none;
    border: none;
    height: 50px;
    width: 190px;
    font-size: 14px;
    z-index: 2;
    transition: 0.01s 0.23s ease-out all;
    overflow: hidden;
}
.button-w-icon-one:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 55%;
    background: #202020;
    z-index: -1;
    transition: 0.3s ease-in all;
}
.button-w-icon-one:after {
    content: "";
    position: absolute;
    left: -5%;
    top: 5%;
    height: 90%;
    width: 5%;
    background: white;
    z-index: -1;
    transition: 0.4s 0.02s ease-in all;
}
.button-w-icon-one:hover {
    cursor: pointer;
    color: transparent;
}
.button-w-icon-one:hover:before {
    left: 100%;
    width: 25%;
}
.button-w-icon-one:hover:after {
    left: 100%;
    width: 70%;
}
.button-w-icon-one:hover .icon-right.after:after {
    left: -80px;
    color: white;
    transition: 0.2s 0.2s ease all;
}
.button-w-icon-one:hover .icon-right.after:before {
    left: -104px;
    top: 14px;
    opacity: 0.2;
    color: white;
}

.icon-right {
    position: absolute;
    top: 0;
    right: 0;
}
.icon-right:after {
    font-family: "FontAwesome";
    content: "\2192";
    font-size: 24px;
    display: inline-block;
    position: relative;
    top: 26px;
    transform: translate3D(0, -50%, 0);
}
.icon-right.after:after {
    left: -250px;
    color: black;
    transition: 0.15s 0.25s ease left, 0.5s 0.05s ease color;
}
.icon-right.after:before {
    content: "Explore";
    position: absolute;
    left: -230px;
    top: 14px;
    opacity: 0;
    transition: 0.2s ease-in all;
}

.footer-modal .modal-dialog {
    max-width: 100%;
}
.footer-modal .close {
    background: #1fa2ff;
    display: flex;
    margin-bottom: 9px;
    width: 40px;
    height: 40px;
    color: #fff;
    font-weight: 400;
    box-shadow: 0;
    border: 0;
}
@media (max-width: 768px) {
    .footer-modal .contact-section .bg-wrapper {
        padding: 20px 10px;
    }
}

.social-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.social-link ul li {
    margin-right: 14px;
}
.social-link ul li a {
    display: flex;
    width: 40px;
    justify-content: center;
    align-items: center;
    height: 43px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
}

.accordion .ac-item .ac-title {
    position: relative;
}

.accordion .ac-item .ac-title:before,
.accordion .ac-item .ac-title:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: #5e5a5a;
}

.accordion .ac-item .ac-title:before {
    right: 22px;
    width: 14px;
    height: 1px;
}

.accordion .ac-item .ac-title:after {
    right: 28px;
    width: 1px;
    height: 14px;
}

.accordion .ac-item.ac-active .ac-title:after {
    display: none;
}

/* PAGES */
.page-content-section .link-wrapper ul li a {
    font-size: 14px;
    display: block;
    color: var(--font-color);
    padding: 11px 0px 11px 15px;
    border-bottom: 1px solid #ececec;
    background: #fff;
}
.page-content-section .link-wrapper ul li a:hover {
    text-decoration: none;
}
.page-content-section .number-wrapper li {
    font-size: 14px;
    line-height: 24px;
    border-bottom: 1px solid #ececec;
    color: var(--font-color);
    padding: 11px 15px;
}
.page-content-section .number-wrapper li svg {
    color: var(--primary-color);
}
.page-content-section .number-wrapper li a {
    color: var(--font-color);
}
.page-content-section .main-content .img-holder {
    height: 344px;
}
@media (max-width: 1024px) {
    .page-content-section .main-content .img-holder {
        height: auto;
    }
}
.page-content-section .main-content .img-holder img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.page-content-section .main-content .content p,
.page-content-section .main-content .content ul {
    font-size: 14px;
    line-height: 28px;
}
.page-content-section .main-content .content h2 {
    font-weight: 600;
}

.banner-section {
    height: 80vh;
}
@media (max-width: 768px) {
    .banner-section {
        height: 16vh;
    }
}
.banner-section .container {
    height: 100%;
}
.banner-section .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 0;
    margin-top: -35px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 1024px) {
    .banner-section .owl-theme .owl-nav {
        display: none;
    }
}
.banner-section .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 40px;
    background: var(--white-color);
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    text-align: center;
    line-height: 70px;
    color: var(--primary-color);
    font-size: 24px;
    border-radius: 0;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 40px;
    background: var(--white-color);
    height: 50px;
    width: 50px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 70px;
    color: var(--primary-color);
    font-size: 24px;
    border-radius: 0;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-section .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    margin: 0;
    bottom: 40px;
    width: 100%;
    text-align: center;
}
@media (max-width: 768px) {
   .banner-section .owl-theme .owl-dots {
        bottom: 0;
    }
}
.banner-section .owl-theme .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0px 4px;
}
.banner-section .owl-theme .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    background: var(--white-color);
    border-radius: 50%;
}
.banner-section .owl-theme .owl-dots .owl-dot:focus {
    outline: none;
    border: 0;
}
.banner-section .owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-color);
}

.banner-carousel {
    position: relative;
    z-index: 1;
}
.banner-carousel .slide-item {
    position: relative;
    display: block;
    color: var(--white-color);
    padding: 50px 0px;
    overflow: hidden;
    height: 80vh;
}
.banner-carousel .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.banner-carousel .active .slide-item .image-layer {
    -webkit-transform: scale(unset);
    -ms-transform: scale(unset);
    transform: scale(unset);
    -webkit-transition: all 7000ms linear;
    -moz-transition: all 7000ms linear;
    -ms-transition: all 7000ms linear;
    -o-transition: all 7000ms linear;
    transition: all 7000ms linear;
}
.banner-carousel .active .content-box .subtitle {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}
.banner-carousel .active .content-box h2 {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}
.banner-carousel .active .content-box .text {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
}
.banner-carousel .active .content-box .links-box {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transition-delay: 1100ms;
    -moz-transition-delay: 1100ms;
    -ms-transition-delay: 1100ms;
    -o-transition-delay: 1100ms;
    transition-delay: 1100ms;
}
.banner-carousel .content-box {
    position: relative;
    display: flex;
    align-items: center;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    padding: 20px 0px;
    z-index: 88;
}
.banner-carousel .content-box .content {
    max-width: 800px;
}
.banner-carousel .content-box .subtitle {
    display: block;
    font-size: 18px;
    line-height: 1.6em;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
}
.banner-carousel .content-box h2 {
    display: block;
    font-size: 70px;
    line-height: 88px;
    color: var(--white-color);
    font-weight: 800;
    opacity: 0;
    margin-bottom: 25px;
    text-transform: capitalize;
    letter-spacing: 0;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
    text-transform: capitalize;
}
@media (max-width: 1900px) {
    .banner-carousel .content-box h2 {
        font-size: 50px;
        line-height: 64px;
    }
}
@media (max-width: 1024px) {
    .banner-carousel .content-box h2 {
        font-size: 40px;
        line-height: 64px;
    }
}
@media (max-width: 768px) {
    .banner-carousel .content-box h2 {
        font-size: 32px;
        line-height: 44px;
    }
}
.banner-carousel .content-box .text {
    display: block;
    font-size: 16px;
    line-height: 1.7em;
    color: var(--white-color);
    font-weight: 400;
    opacity: 0;
    margin-bottom: 42px;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
@media (max-width: 768px) {
    .banner-carousel .content-box .text {
        font-size: 13px;
        line-height: 30px;
        margin-bottom: 26px;
    }
}
@media (max-width: 768px) {
    .banner-carousel .slide-item{
        height: 18vh;
    }
}
.banner-carousel .content-box .links-box {
    position: relative;
    opacity: 0;
    z-index: 5;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}

.banner-section .owl-nav .owl-prev:hover,
.banner-section .owl-nav .owl-next:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.course-section .wrapper {
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -o-border-radius: 14px;
    border-radius: 14px;
}
.course-section .wrapper .img-holder {
    padding: 0px;
}
.course-section .wrapper .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.course-section .content {
    border-left: 1px solid #d2d2d2;
    padding: 11px 20px;
    height: 234px;
}
@media (max-width: 1024px) {
    .course-section .content {
        border-left: 0;
    }
}
.course-section .content p {
    font-size: 13px;
    line-height: 24px;
}
.course-section .btn-wrapper {
    border-top: 1px solid #d2d2d2;
    margin-left: auto;
    border-left: 1px solid #d2d2d2;
    margin-top: -7px;
    padding: 10px 0 4px;
}
@media (max-width: 1024px) {
    .course-section .btn-wrapper {
        border-left: 0;
    }
}
.course-section .btn-wrapper .button-four-pri {
    font-size: 13px;
    line-height: 24px;
}
.course-section .btn-wrapper .button-four-pri .btn-title {
    padding: 8px 14px;
    border-radius: 20px;
}
.course-section .btn-wrap {
    text-align: center;
}
.course-section .btn-wrap .btn-title {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.gallery-section .slider-item {
    height: auto;
}
.gallery-section .slider-item a {
    display: block;
    height: 100%;
}
.gallery-section .slider-item img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.testimonial-section {
    background: linear-gradient(
            to right,
            rgba(4, 43, 70, 0.432),
            rgba(76, 164, 191, 0.25)
        ),
        url("../images/slider/img-3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
}
.testimonial-section .right-wrap {
    padding: 44px 47px;
    background: var(--primary-color);
}
@media (max-width: 1024px) {
    .testimonial-section .right-wrap {
        background: #1fa2ffc4;
    }
}
@media (max-width: 1024px) {
    .testimonial-section .right-wrap {
        padding: 35px 20px;
    }
}
.testimonial-section .right-wrap .after-left-border-primary:before {
    background: var(--white-color);
}
.testimonial-section .right-wrap .testimonial-slider .client-img {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 0 auto;
}
.testimonial-section .right-wrap .testimonial-slider .client-img img {
    width: 100%;
    height: 100%;
}
.testimonial-section .right-wrap .testimonial-slider .qoute {
    position: absolute;
    top: 0;
    right: 0;
}
.testimonial-section .right-wrap .owl-nav {
    position: absolute;
    bottom: -61px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 0;
    margin-top: -35px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
@media (max-width: 1024px) {
    .testimonial-section .right-wrap .owl-nav {
        display: none;
    }
}
.testimonial-section .right-wrap .owl-nav .owl-prev {
    position: absolute;
    right: 90px;
    background: var(--white-color);
    height: 50px;
    width: 50px;
    margin: 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    text-align: center;
    line-height: 70px;
    color: var(--primary-color);
    font-size: 24px;
    border-radius: 0;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section .right-wrap .owl-nav .owl-next {
    position: absolute;
    right: 40px;
    background: var(--white-color);
    height: 50px;
    width: 50px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 70px;
    color: var(--primary-color);
    font-size: 24px;
    border-radius: 0;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-section .right-wrap .owl-dots {
    position: absolute;
    left: 0;
    margin: 0;
    bottom: -40px;
    width: 100%;
    text-align: center;
}
.testimonial-section .right-wrap .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0px 4px;
}
.testimonial-section .right-wrap .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    background: var(--white-color);
    border-radius: 50%;
    border: 1px solid var(--white-color);
}
.testimonial-section .right-wrap .owl-dots .owl-dot:focus {
    outline: none;
    border: 0;
}
.testimonial-section .right-wrap .owl-dots .owl-dot.active span {
    background: transparent;
}
.testimonial-section .right-wrap .btn-holder {
    margin-top: 58px;
}
@media (max-width: 768px) {
    .testimonial-section .right-wrap .btn-holder {
        text-align: center;
    }
}
.testimonial-section .right-wrap .btn-holder .btn-title {
    color: var(--primary-color);
    background: var(--white-color);
}

.video-gallery-section .video-item a {
    position: relative;
    display: block;
}
.video-gallery-section .video-item a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    background: #343b3db4;
    width: 63px;
    height: 45px;
    border-radius: 13px;
    padding: 13px 4px;
    color: var(--white-color);
}
.video-gallery-section .video-item a svg:hover {
    background: #fc2c29;
}

.partner-section .item img {
    height: 82px;
    object-fit: contain;
}

.blog-section .post a {
    color: var(--font-color);
    -webkit-transition: ease 0.4s;
    -moz-transition: ease 0.4s;
    transition: ease 0.4s;
}
.blog-section .post a:hover {
    text-decoration: none;
    color: var(--primary-color);
}
.blog-section .post .img-holder {
    height: 168px;
}
.blog-section .post .img-holder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog-section .post .main-content {
    font-size: 13px;
    line-height: 26px;
}
.blog-section .post .btn-title {
    padding: 7px 6px;
    font-size: 12px;
    line-height: 20px;
    color: var(--white-color);
}

.mfd-page .page-content-section .main-content .img-holder {
    height: auto;
    text-align: center;
}
.mfd-page .page-content-section .main-content .img-holder img {
    height: auto;
    width: auto;
    object-fit: contain;
}

.team-section .img-wrap {
    height: 196px;
}
.team-section .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certificate-section .wrap a {
    height: 350px;
}
.certificate-section .wrap img {
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
    cursor: crosshair;
    height: 100%;
    object-fit: contain;
}
.certificate-section .wrap img:hover {
    opacity: 0.6;
}

.testimonial-page .testimonial-section {
    background: none;
}
.testimonial-page .testimonial-section .content {
    font-size: 13px;
    line-height: 25px;
}

.accordion .ac-item {
    border-bottom: 1px solid #ececec;
    color: var(--font-color);
    padding: 12px 15px;
    cursor: pointer;
    font-family: var(--secondary-font);
}
.accordion .ac-item a {
    color: var(--font-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.accordion .ac-item a:hover {
    text-decoration: none;
    color: var(--primary-color);
}
.accordion .ac-item .ac-title {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--secondary-font);
    margin-bottom: 0;
}
.accordion .ac-item .ac-title.no-icon:after,
.accordion .ac-item .ac-title.no-icon:before {
    display: none;
}
.accordion .ac-item .ac-content ul {
    font-size: 14px;
}
.accordion .ac-item .ac-content ul a {
    display: block;
    padding: 6px 16px;
    margin-top: 17px;
    border-bottom: 1px solid #ececec;
    border-left: 2px solid #fff;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.accordion .ac-item .ac-content ul a:hover {
    color: var(--font-color);
    border-left: 2px solid var(--primary-color);
    background: #efefefaf;
}

.news-page .sticky-top {
    top: 80px;
    z-index: 4;
}

.news-detail-page .blog-section .post .img-holder {
    height: auto;
}

.gallery-album-section .wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.gallery-album-section .image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.gallery-album-section .cover-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #4876a7;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -webkit-transition: ease 0.35s;
    -moz-transition: ease 0.35s;
    transition: ease 0.35s;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.gallery-album-section .wrapper:hover .cover-bg {
    width: calc(100% - 30px);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.gallery-album-section .wrapper:hover .image {
    -webkit-transform: translate3d(85%, 0, 0);
    transform: translate3d(85%, 0, 0);
}
.gallery-album-section .text {
    color: var(--white-color);
    font-size: 12px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    line-height: 22px;
}

.contact-section .bg-wrapper {
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.4)
        ),
        url("../images/contact/img-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100%;
    padding: 53px 44px;
}
@media (max-width: 768px) {
    .contact-section .bg-wrapper {
        padding: 53px 22px;
    }
}
.contact-section .right-wraps {
    padding: 53px 14px;
}
.contact-section .contact-info .icon {
    width: 46px;
    height: 46px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    border: 1px solid var(--white-color);
}
.contact-section .contact-form label {
    margin-bottom: 0;
    font-weight: 600;
}
.contact-section .contact-form .form-control {
    border-radius: 0;
}
.contact-section .contact-form .button-one-pri {
    cursor: pointer;
}

.faq-section .accordion .ac-item {
    font-size: 15px;
    line-height: 32px;
    margin-bottom: 0;
    border: 1px solid #ccc;
}
.faq-section .ac-content {
    font-size: 13px;
    line-height: 28px;
    padding: 15px 0px 0px 25px;
}
.faq-section .right-wraps {
    padding: 0;
}

/*# sourceMappingURL=style.css.map */
