﻿@charset "utf-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
caption,
select,
input,
option,
ul,
li,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    box-sizing: border-box;
    list-style-type: none;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    color: var(--primary);
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"],
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

a:hover {
    text-decoration: none;
}

a:hover {
    outline: none;
    cursor: pointer;
}

a:focus {
    outline: none;
    cursor: pointer;
}

:focus {
    outline: none;
}

/* End Clearfix */

/* For IE 6/7 (trigger hasLayout) */
a,
button,
.btn {
    outline: none !important;
    transition: all 0.3s ease-in-out 0s;
    text-decoration: none !important;
}


/* Mulish font familiy */

@font-face {
    font-family: "Mulish";
    src: url('../fonts/Mulish-ExtraLight.ttf');
    font-weight: 200;
}

@font-face {
    font-family: "Mulish";
    src: url('../fonts/Mulish-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: "Mulish";
    src: url('../fonts/Mulish-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: "Mulish";
    src: url('../fonts/Mulish-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: "Mulish";
    src: url('../fonts/Mulish-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: "Mulish";
    src: url('../fonts/Mulish-ExtraBold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: "Mulish";
    src: url('../fonts/Mulish-Black.ttf');
    font-weight: 900;
}


/* Playfair Display font familiy */

@font-face {
    font-family: "Playfair Display";
    src: url('../fonts/PlayfairDisplay-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: "Playfair Display";
    src: url('../fonts/PlayfairDisplay-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: "Playfair Display";
    src: url('../fonts/PlayfairDisplay-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: "Playfair Display";
    src: url('../fonts/PlayfairDisplay-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: "Playfair Display";
    src: url('../fonts/PlayfairDisplay-ExtraBold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: "Playfair Display";
    src: url('../fonts/PlayfairDisplay-Black.ttf');
    font-weight: 900;
}


/* Felidae font familiy */

@font-face {
    font-family: "Felidae";
    font-style: normal;
    font-weight: normal;
    src: local("Felidae Regular"), url("../fonts/felidae-regular.woff") format("woff");
}

@font-face {
    font-family: "Felidae";
    font-style: normal;
    font-weight: normal;
    src: local("Felidae Regular"), url("../fonts/felidae-regular.woff2") format("woff2");
}

/* MuseoModerno Display font familiy */

@font-face {
    font-family: "MuseoModerno";
    src: url('../fonts/MuseoModerno-ExtraLight.ttf');
    font-weight: 200;
}


:root {
    --primary: #001E5A;
    --secondary: #212529;
    --Mulish: 'Mulish', sans-serif;
    --PlayfairDisplay: 'Playfair Display', serif;
    --Felidae: 'Felidae', serif;
    --MuseoModerno: 'MuseoModerno', serif;
}


body {
    font-family: var(--Mulish);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--secondary);
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

.secbg {
    background-color: #F7F7F7 !important;
}

/*************************** COMMON CSS START *****************************/
.border-top {
    border-top: none !important;
    position: relative;
}

.border-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, rgba(217, 217, 217, 0.1), rgba(217, 217, 217, 0.5), rgba(217, 217, 217, 0.1));
}

.border-bottom {
    border-bottom: none !important;
    position: relative;
}

.border-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, rgba(217, 217, 217, 0.1), rgba(217, 217, 217, 0.5), rgba(217, 217, 217, 0.1));
}

.border-start {
    border-left: none !important;
    position: relative;
}

.border-start::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(217, 217, 217, 0.1), rgba(217, 217, 217, 0.5), rgba(217, 217, 217, 0.1));
}

.border-end {
    border-right: none !important;
    position: relative;
}

.border-end::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(217, 217, 217, 0.1), rgba(217, 217, 217, 0.5), rgba(217, 217, 217, 0.1));
}

.btn {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: none !important;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.btn i {
    font-size: 16px;
}

.btn.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn.btn-border {
    color: var(--secondary);
    background-color: transparent;
    border: 1px solid var(--primary);
}

.btn.btn-border:hover,
.btn.btn-border:focus {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}


.btn.btn-white {
    color: var(--primary);
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn.btn-white:hover,
.btn.btn-white:focus {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color: #FFFFFF;
}



.btn::before,
.btn::after {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100px) skewX(-15deg);
    content: "";
}

.btn::before {
    width: 60px;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(30px);
    opacity: 0.5;
}

.btn::after {
    width: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(5px);
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover::before,
.btn:hover::after {
    transform: translateX(800px) skewX(-15deg);
    transition: all 0.9s ease;
}



* {
    scrollbar-width: thin;
    scrollbar-color: rgba(36, 37, 92, 0.5) transparent;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(36, 37, 92, 0.5);
}




.form-group {
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.05em;
    color: #001E5A;
}

.form-control {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0;
    color: #878499;
    height: 50px;
    border: 1px solid #CFCFCF;
    border-radius: 0px;
    padding: 10px 15px;
    box-shadow: none !important;
    border-radius: 5px;
}

.form-control:focus {
    border-color: var(--primary);
}

textarea {
    height: auto !important;
    min-height: auto !important;
    resize: none;
}

.red_border {
    background-color: #fff0f0 !important;
    box-shadow: 0 0 0 1.3px #FF5555 !important;
}



.dropdown-toggle::after {
    content: "\f078";
    border: none;
    color: #4A4A4A;
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 12px;
    margin-left: 10px;
}

.Loader-main {
    background: rgba(51, 63, 104, 0.7);
    background-size: 25vmin;
    background-repeat: no-repeat;
    background-position: center 40%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
}

.loader-logo {
    position: absolute;
    height: 75px;
    width: 75px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.ctmtab {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.ctmtab li {
    color: #001E5A;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.05em;
    flex: 1;
    white-space: nowrap;
    margin-right: 15px;
}

.ctmtab li:last-child {
    margin-right: 0;
}

.ctmtab li .flagicon {
    width: 56px;
    height: 37px;
    display: inline-block;
    border-radius: 6px;
    overflow: hidden;
}

.ctmtab li .flagicon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctmtabcontent {
    display: none;
}

.ctmtabcontent.active {
    display: block;
}


p {
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 15px;
    text-align: justify;
    letter-spacing: 1px;
}


.p-0 {
    padding: 0 !important;
}

.ptb-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.plr-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.p-5 {
    padding: 5px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.ptb-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.plr-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}


.p-10 {
    padding: 10px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.ptb-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.plr-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}



.p-15 {
    padding: 15px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.ptb-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.plr-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.ptb-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.plr-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}


.p-25 {
    padding: 25px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.ptb-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.plr-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}


.p-30 {
    padding: 30px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.ptb-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.plr-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}


.p-35 {
    padding: 35px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.ptb-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.plr-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
}


.p-40 {
    padding: 40px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.ptb-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.plr-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}


.p-45 {
    padding: 45px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pl-45 {
    padding-left: 45px !important;
}

.pr-45 {
    padding-right: 45px !important;
}

.ptb-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.plr-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
}


.p-50 {
    padding: 50px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.ptb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.plr-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}


.pt-55 {
    padding-top: 55px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pl-55 {
    padding-left: 55px !important;
}

.pr-55 {
    padding-right: 55px !important;
}

.ptb-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.plr-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
}


.pt-60 {
    padding-top: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.ptb-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.plr-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}


.pt-65 {
    padding-top: 65px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pl-65 {
    padding-left: 65px !important;
}

.pr-65 {
    padding-right: 65px !important;
}

.ptb-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}



.pt-70 {
    padding-top: 70px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.ptb-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}


.pt-75 {
    padding-top: 75px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pl-75 {
    padding-left: 75px !important;
}

.pr-75 {
    padding-right: 75px !important;
}

.ptb-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
}


.pt-80 {
    padding-top: 80px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.ptb-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}


.pt-85 {
    padding-top: 85px !important;
}

.pb-85 {
    padding-bottom: 85px !important;
}

.pl-85 {
    padding-left: 85px !important;
}

.pr-85 {
    padding-right: 85px !important;
}

.ptb-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
}


.pt-90 {
    padding-top: 90px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.ptb-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}


.pt-100 {
    padding-top: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.ptb-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}



/* Margin */

.m-0 {
    margin: 0px !important;
}

.mtb-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.mlr-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mtb-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.mlr-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}


.mt-10 {
    margin-top: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mtb-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mlr-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}


.mt-15 {
    margin-top: 15px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mtb-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.mlr-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}


.mt-20 {
    margin-top: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mtb-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.mlr-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}


.mt-25 {
    margin-top: 25px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mtb-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.mlr-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}


.mt-30 {
    margin-top: 30px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mtb-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.mlr-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}


.mt-35 {
    margin-top: 35px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mtb-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

.mlr-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
}


.mt-40 {
    margin-top: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mtb-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.mlr-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}


.mt-45 {
    margin-top: 45px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.ml-45 {
    margin-left: 45px !important;
}

.mr-45 {
    margin-right: 45px !important;
}

.mtb-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
}

.mlr-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
}


.mt-50 {
    margin-top: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mtb-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.mlr-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}


.mt-55 {
    margin-top: 55px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.ml-55 {
    margin-left: 55px !important;
}

.mr-55 {
    margin-right: 55px !important;
}

.mtb-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}

.mlr-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
}


.mt-60 {
    margin-top: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mtb-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.mlr-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
}


.mt-70 {
    margin-top: 70px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mtb-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
}


.mt-75 {
    margin-top: 75px !important;
}

.mb-75 {
    margin-bottom: 75px !important;
}

.mtb-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
}


.mt-80 {
    margin-top: 80px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mtb-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}


.mt-85 {
    margin-top: 85px !important;
}

.mb-85 {
    margin-bottom: 85px !important;
}

.mtb-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
}


.mt-90 {
    margin-top: 90px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mtb-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
}


.mt-100 {
    margin-top: 100px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mtb-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.mtb-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}


.sectitle {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
}

.sectitle .title {
    font-family: var(--PlayfairDisplay);
    font-size: 35px;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 2px;
}

.sectitle .title.borderleft {
    position: relative;
    padding-left: 15px;
}

.sectitle .title.borderleft::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 80%;
    background-color: var(--primary);
    transform: translateY(-50%);
}

.sectitle p {
    color: var(--secondary);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 auto;
    margin-top: 15px;
    text-align: center;
    width: 56%;
}


.sectitle.whitetxt .title,
.sectitle.whitetxt p {
    color: #FFFFFF;
}

.owl-prev {
    position: absolute;
    top: 40%;
    left: -5%;
    transform: translateY(-40%);
}

.owl-prev i {
    background-color: var(--primary);
    font-size: 25px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
}

.owl-next {
    position: absolute;
    top: 40%;
    right: -5%;
    transform: translateY(-40%);
}

.owl-next i {
    background-color: var(--primary);
    font-size: 25px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
}

.custom-bottom-arrow {
    text-align: center;
    margin-top: 0;
}

.custom-bottom-arrow button {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border: 0;
    margin-right: 10px;
}

.custom-bottom-arrow button:last-child {
    margin-right: 0;
}

.custom-bottom-arrow button i {
    display: inline-block;
    font-size: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    background-color: transparent;
    padding: 0;
    border-radius: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-bottom-arrow button:hover i {
    background-color: var(--primary);
    color: #FFFFFF;
}




.page-title {
    width: 100%;
    display: inline-block;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.page-title h1 {
    color: var(--primary);
    font-size: 25px;
    line-height: 25px;
    font-weight: 600;
    border-radius: 30px;
    background: #F8F8F8;
    padding: 15px 30px;
    display: inline-block;
}

@media (max-width: 767px) {
    .page-title {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}


.preloader {
    /* background-color: #000; */
    background-color: #2b3857;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    overflow: hidden;
}

.preloader .vertical-centered-box {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.preloader .vertical-centered-box:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.preloader .vertical-centered-box .content {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}

.preloader * {
    transition: all 0.3s;
}

.preloader .loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-left: -60px;
    margin-top: -60px;
}

.preloader .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    animation: rotate 1.2s infinite linear;
}

.preloader .loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.preloader #particles-background,
.preloader #particles-foreground {
    left: -51%;
    top: -51%;
    width: 202%;
    height: 202%;
    transform: scale3d(0.5, 0.5, 1);
}

.preloader #particles-background {
    background: #2c2d44;
    background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.preloader [not-existing] {
    zoom: 1;
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.preloader [not-existing] {
    zoom: 1;
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.preloader [not-existing] {
    zoom: 1;
}

@media (min-width: 992px) {

    /* cursor css */
    .cursor {
        width: 45px;
        height: 45px;
        border-radius: 100%;
        border: 1px solid #001E5A;
        transition: all 300ms linear;
        position: fixed;
        pointer-events: none;
        left: 0;
        top: 0;
        transform: translate(calc(-50% + 15px), -50%);
        z-index: 1111;
    }

    .cursor2 {
        width: 13px;
        height: 13px;
        border-radius: 100%;
        background-color: #001E5A;
        opacity: 0.3;
        position: fixed;
        transform: translate(-50%, -50%);
        pointer-events: none;
        transition: width 0.3s, height 0.3s, opacity 0.3s;
        z-index: 1111;
    }

    .hover {
        background-color: #001E5A;
        opacity: 0.5;
        border: 1px solid transparent;
    }

    .cursorinnerhover {
        width: 45px;
        height: 45px;
        opacity: 0.5;
    }
}




.rolling-text:hover .letter,
.rolling-text.play .letter {
    transform: translateY(-100%);
}

.rolling-text .letter {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.letter:nth-child(1) {
    transition-delay: 0s;
}

.letter:nth-child(2) {
    transition-delay: 0.015s;
}

.letter:nth-child(3) {
    transition-delay: 0.03s;
}

.letter:nth-child(4) {
    transition-delay: 0.045s;
}

.letter:nth-child(5) {
    transition-delay: 0.06s;
}

.letter:nth-child(6) {
    transition-delay: 0.075s;
}

.letter:nth-child(7) {
    transition-delay: 0.09s;
}

.letter:nth-child(8) {
    transition-delay: 0.105s;
}

.letter:nth-child(9) {
    transition-delay: 0.12s;
}

.letter:nth-child(10) {
    transition-delay: 0.135s;
}

.letter:nth-child(11) {
    transition-delay: 0.15s;
}

.letter:nth-child(12) {
    transition-delay: 0.165s;
}

.letter:nth-child(13) {
    transition-delay: 0.18s;
}

.letter:nth-child(14) {
    transition-delay: 0.195s;
}

.letter:nth-child(15) {
    transition-delay: 0.21s;
}

.letter:nth-child(16) {
    transition-delay: 0.225s;
}

.letter:nth-child(17) {
    transition-delay: 0.24s;
}

.letter:nth-child(18) {
    transition-delay: 0.255s;
}

.letter:nth-child(19) {
    transition-delay: 0.27s;
}

.letter:nth-child(20) {
    transition-delay: 0.285s;
}

.letter:nth-child(21) {
    transition-delay: 0.3s;
}

@keyframes roted {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rolling-text {
    display: inline-block;
    overflow: hidden;
    height: 20px;
}



/*************************** COMMON CSS END *****************************/



.page_main {
    padding-top: 121px;
}

.page_main.home_page {
    padding-top: 0px;
}


.headermain.fixed-header {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1020;
}

.headermain .headerbg {
    width: 100%;
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    background-color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid var(--primary);
}

.headermain.home_page .headerbg {
    background-color: #FFFFFF;
}

.navbar-brand {
    width: 130px;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
}

.navbar {
    margin: 15px 0 0 0;
    padding: 0;
}


.navbar-nav .nav-item {
    padding-right: 15px;
    padding-left: 15px;
}

.navbar-nav .nav-item .nav-link {
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1px;
    color: var(--secondary);
    padding: 0;
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    background: #fff;
    width: 0%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: all 500ms ease;
}

.navbar-nav .nav-item .nav-link.active::after,
.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
    color: #FFFFFF;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.headermain.fixed-header .nav-item .nav-link::after {
    background: var(--primary);
}


.headermain .head_right {
    display: flex;
    align-content: center;
    padding-left: 15px;
}

.headermain .head_right a:first-child {
    margin-right: 15px;
}




/* .banner_sec .carousel-item .bnrimg {
    height: calc(100vh - 0px);
    object-fit: cover;
    width: 100%;
}

.banner_sec .carousel-item .bnrimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_sec .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    outline: 2px solid #fff !important;
    border: 3px solid transparent;
    background-color: transparent;
    margin-right: 15px;
    margin-left: 0;
    opacity: 1;
}

.banner_sec .carousel-indicators button.active {
    background-color: #fff;
} */





.banner_sec {
    width: 100%;
    height: 100vh;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 1199px) {
    /* .banner_sec {
        height: 800px;
    } */
}

@media (max-width: 991px) {
    /* .banner_sec {
        height: 100vh;
        display: block;
        padding: 300px 0 400px;
    } */
}

@media (max-width: 575px) {
    /* .banner_sec {
        padding: 200px 0 200px;
    } */
}

.banner_sec .swiper-slide {
    overflow: hidden;
}

.banner_sec .swiper-container,
.banner_sec .hero-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.banner_sec .slide-inner,
.banner_sec .hero-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    text-align: left;
}

/* .banner_sec .slide-inner:before,
.banner_sec .hero-inner:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.25);
} */

.banner_sec .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 992px) {
    .banner_sec .swiper-pagination-bullet {
        display: none;
    }
}

.banner_sec .swiper-pagination-bullet-active {
    color: #fff;
    background: #fff;
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 12px;
}

.banner_sec .swiper-container-horizontal>.swiper-pagination-bullets,
.banner_sec .swiper-pagination-custom,
.banner_sec .swiper-pagination-fraction {
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    position: absolute;
    right: 100px;
    top: 50%;
    left: auto;
    width: auto;
    bottom: auto;
}

@media (max-width: 1399px) {

    .banner_sec .swiper-container-horizontal>.swiper-pagination-bullets,
    .banner_sec .swiper-pagination-custom,
    .banner_sec .swiper-pagination-fraction {
        right: 50px;
        font-size: 25px;
    }
}

@media (max-width: 1199px) {

    .banner_sec .swiper-container-horizontal>.swiper-pagination-bullets,
    .banner_sec .swiper-pagination-custom,
    .banner_sec .swiper-pagination-fraction {
        top: 65%;
    }
}

@media (max-width: 575px) {

    .banner_sec .swiper-container-horizontal>.swiper-pagination-bullets,
    .banner_sec .swiper-pagination-custom,
    .banner_sec .swiper-pagination-fraction {
        right: auto;
        left: 20px;
        top: auto;
        bottom: 20px;
    }
}

.banner_sec .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

.banner_sec .swiper-pagination .swiper-pagination-current {
    color: #fff;
}

.banner_sec .swiper-pagination-total {
    color: #FFF;
    font-size: 25px;
    font-weight: 400;
}

.banner_sec .slide-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 10%;
}

@media (max-width: 1199px) {
    .banner_sec .slide-content {
        padding-top: 0;
    }
}

.banner_sec .slide-content h2 {
    font-family: var(--PlayfairDisplay);
    color: var(--primary);
    font-size: 48px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 2px;
    position: relative;
}

@media (max-width: 1199px) {
    /* .banner_sec .slide-content h2 {
        font-size: 90px;
        line-height: 120px;
    } */
}

@media (max-width: 991px) {
    /* .banner_sec .slide-content h2 {
        font-size: 60px;
        line-height: 100px;
    } */
}

@media (max-width: 757px) {
    /* .banner_sec .slide-content h2 {
        font-size: 50px;
        line-height: 80px;
    } */
}

@media (max-width: 575px) {
    /* .banner_sec .slide-content h2 {
        font-size: 40px;
        line-height: 50px;
    } */
}








/* .about-section {
    position: relative;
} */

@media (max-width: 991px) {
    .about-section {
        padding-bottom: 0;
    }
}

.about-section .about-wrap {
    width: calc(100% - 95px);
    margin-left: auto;
    position: relative;
}

@media (max-width: 1599px) {
    .about-section .about-wrap {
        width: calc(100% - 20px);
    }
}

@media (max-width: 575px) {
    .about-section .about-wrap {
        width: 100%;
        padding: 0 10px;
    }
}

.about-section .content {
    max-width: 1110px;
    padding: 50px 260px 50px 0;
}

@media (max-width: 1799px) {
    .about-section .content {
        max-width: 830px;
    }
}


.about-section .content p {
    max-width: 100%;
}

.about-section .about-funfact {
    max-width: 100%;
    margin-left: auto;
}

.about-section .image {
    max-width: 1080px;
}

.about-section .image-1 {
    position: absolute;
    right: 0;
    z-index: -11;
    top: 50px;
    /* transform: translateY(-50%); */
}

@media (max-width: 1399px) {
    .about-section .image-1 {
        right: -260px;
    }
}

@media (max-width: 991px) {
    .about-section .image-1 {
        display: none;
    }
}

.about-funfact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0;
}

.about-funfact h3 {
    display: flex;
    align-items: end;
}

.about-funfact h3 span {
    font-family: var(--Felidae);
    color: #000000;
    font-size: 80px;
    line-height: 80px;
    font-weight: 400;
    letter-spacing: 10px;
}

@media (max-width: 991px) {
    .about-funfact h3 span {
        font-size: 50px;
        line-height: 50px;
        letter-spacing: 6px;
    }
}

.about-funfact h3 .icon {
    font-size: 50px;
}

.about-funfact h4 {
    font-family: var(--Felidae);
    color: #000000;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 0;
    letter-spacing: 1px;
    padding-left: 15px;
}

.about-section .image-2 {
    position: absolute;
    right: 460px;
    z-index: -1;
    top: 60%;
    transform: translateY(-60%);
    box-shadow: 10px 10px 0px #001E5A;
}

@media (max-width: 1799px) {
    .about-section .image-2 {
        right: 440px;
    }
}

@media (max-width: 1399px) {
    .about-section .image-2 {
        right: 200px;
    }
}

@media (max-width: 1199px) {
    .about-section .image-2 {
        display: none;
    }
}


.ourshape_sec .customrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.ourshape_sec .smboxes {
    flex: 0 0 calc(12% + -0px);
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 25px;
}

.ourshape_sec .smbimg {
    width: 130px;
    height: 130px;
    margin: 0 auto;
}

.ourshape_sec .smbimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#OurShapeSec {
    background-color: var(--primary);
}

#OurShapeSec .sectitle h2,
#OurShapeSec .sectitle p {
    color: #fff;
}


.lcl_sec {
    width: 100%;
    display: inline-block;
}

.lcl_sec .grid-container {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    overflow: hidden;
    min-height: 630px;
}

.lcl_sec .grid-item {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex: 1 0 0;
    border-right: 1px solid #FFFFFF;
}

.lcl_sec .grid-item::before {
    content: "";
    background-color: rgba(0, 30, 90, 0.5);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.lcl_sec .grid-item:last-child {
    border-right: none;
}

.lcl_sec .grid-content {
    width: 100%;
    text-align: left;
    padding: 2rem;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
}

.lcl_sec .grid-item h2 {
    font-family: var(--PlayfairDisplay);
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 20px;
}

.lcl_sec .grid-item p {
    color: #ffffff;
}

.lcl_sec .grid-item .arrow {
    color: #ffffff;
    font-size: 20px;
}

.lcl_sec .grid-item .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: rgba(0, 30, 90, 0.8); */
    height: 100%;
    width: 100%;
    padding: 2rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;

}

.lcl_sec .grid-item:hover .hover-overlay {
    /* opacity: 1;
    transform: translateY(0); */
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.lcl_sec .grid-item:hover::before {
    opacity: 1;
}

.lcl_sec .grid-item:hover .grid-content {
    opacity: 0;
}

.lcl_sec .sliderThumbBox {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
}

.thumb {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.thumb.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.updownitems .owl-item .image-card {
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 30px;
}

.updownitems .owl-item.active.center .image-card {
    margin: 0 auto;
    margin-top: 0;
}

@media (max-width: 991px) {
    .updownitems .owl-item.active.center .image-card {
        margin: 0 auto 30px;
    }
}

.image-card {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .image-card {
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

.image-card .image {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.image-card .image img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 500ms ease;
}

.image-card .image img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
    transition: all 0.4s ease-in-out;
}

.image-card:hover .image img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.image-card:hover .image img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.image-card .content {
    width: 100%;
    margin-top: 20px;
}

/* .image-card .content h2 {
    color: var(--primary);
    font-family: var(--PlayfairDisplay);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 15px;
} */

.image-card .content h2 {
    display: inline-block;
    width: 100%;
    color: var(--primary);
    font-family: var(--PlayfairDisplay);
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.image-card .content h2 a,
.image-card .content h2 span {
    height: 30px;
}

.image-card .content h3 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.image-card .content .destxt {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
}

.image-card .content .destxt::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    transition: all 500ms ease;
}




.sharp_section {
    width: 100%;
    display: inline-block;
    background-color: var(--primary);
}

.srpboxes .srpbox {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.srpboxes .srpimg {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.srpboxes .srpimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.srpboxes .srpcon h3 {
    font-family: var(--PlayfairDisplay);
    color: #ffffff;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

.srpboxes .srpcon p {
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-align: center;
}




.clients_sec .cimgmain {
    width: 100%;
    height: 62px;
    overflow: hidden;
}

.clients_sec .cimginner {
    width: 100%;
    height: 100%;
}

.clients_sec .cimginner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.imgcon_sec .sectitle {
    margin-bottom: 20px;
}

.cousmedia {
    margin-bottom: 10px;
}

.cousmedia:last-child {
    margin-bottom: 0px;
}

.cousmedia i {
    font-size: 18px;
    color: var(--primary);
}

.cousmedia a,
.cousmedia p {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .02em;
    text-align: justify;
    color: var(--secondary);
    margin: 0px;
}


.footermain {
    background-color: var(--primary);
}

.fologo {
    width: 300px;
    margin: 0 auto 20px;
}

.fologo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fodes p {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 20px;
}

.fosocial {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.fosocial li {
    margin-right: 15px;
    margin-bottom: 15px;
}

.fosocial li:last-child {
    margin-right: 0px;
}

.fosocial li a {
    display: flex;
    align-items: center;
}

.fosocial li a .sitxt {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding-left: 10px;
}

.fosocial li a .sibox {
    display: inline-block;
    font-size: 22px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    /* border-radius: 100%;
    background-color: #fff; */
    color: var(--primary);
    border-radius: 5px;
}

.fosocial li a .sibox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: -4px;
}

/* .fosocial li a.facebook .sibox {
    background-color: #1877f2;
    color: #fff;
}

.fosocial li a.instagram .sibox {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f09433", endColorstr="#bc1888", GradientType=1);
    color: #fff;
}

.fosocial li a.twitter .sibox {
    background-color: #1da1f2;
    color: #fff;
}

.fosocial li a.linkedin .sibox {
    background-color: #0077b5;
    color: #fff;
}

.fosocial li a.youtube .sibox {
    background-color: red;
    color: #fff;
}

.fosocial li a.whatsapp .sibox {
    background-color: #25D366;
    color: #fff;
}

.fosocial li a.wechat .sibox {
    background-color: #2F8819;
    color: #fff;
} */

.footermain .boxtitle {
    font-family: var(--PlayfairDisplay);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.fonavmain .fonav li {
    margin-bottom: 10px;
}

.fonavmain .fonav li:last-child {
    margin-bottom: 0px;
}

.fonavmain .fonav li a {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.10rem;
    color: #fff;
    transition: all .4s;
}

.fonavmain .fonav li a:hover {
    padding-left: 10px;
}

.footermain .cousmedia a,
.footermain .cousmedia p {
    color: #fff;
}

.footermain .cousmedia i {
    color: #fff;
}

.Newsletter_form input {
    height: 50px;
    margin-bottom: 20px;
    font-size: 18px;
    background-color: transparent;
    letter-spacing: 1px;
}

.Newsletter_form input::placeholder {
    color: #FFFFFF;
}

.Newsletter_form .btn {
    height: 50px;
    width: 100%;
    font-size: 18px;
    letter-spacing: 1px;
}

.footer_bottom {
    width: 100%;
    text-align: center;
}

.footer_bottom p {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.10rem;
    color: #FFFFFF;
    margin-bottom: 0;
    text-align: center;
}

.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: remixicon !important;
    font-weight: 900;
    content: "\ea76";
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    left: 0;
    top: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    cursor: pointer;
    display: block;
    z-index: 1020;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #5c628b;
    stroke-width: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap {
    -webkit-box-shadow: inset 0 0 0 1px rgba(197, 164, 126, 0.2);
    box-shadow: inset 0 0 0 1px rgba(197, 164, 126, 0.2);
}

.progress-wrap::after {
    color: #5c628b;
}

.progress-wrap svg.progress-circle path {
    stroke: #5c628b;
}

.imgcon_sec .icboxes p:last-child {
    margin-bottom: 0px;
}



.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    max-width: 100%;
    padding-right: 5%;
    padding-left: 5%;
}

.imgcon_sec .icboxes.conbox .btn {
    padding: 16px 21px;
}





/* 28. contact-pg-section */
.contact-pg-section {
    padding-bottom: 0px;
}

.contact-pg-section .contact-title {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .contact-pg-section .contact-title {
        margin-bottom: 30px;
    }
}

.contact-pg-section .contact-title h2 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .contact-pg-section .contact-title h2 {
        font-size: 40px;
    }
}

.contact-pg-section form input,
.contact-pg-section form select,
.contact-pg-section form textarea {
    background: transparent;
    width: 100%;
    height: 45px;
    font-size: 14px;
    font-weight: 400;
    box-shadow: none !important;
    padding-left: 25px;
    border: 1px solid #ebebeb;
}

@media (max-width: 991px) {

    .contact-pg-section form input,
    .contact-pg-section form select,
    .contact-pg-section form textarea {
        height: 45px;
    }
}

.contact-pg-section form input:focus,
.contact-pg-section form select:focus,
.contact-pg-section form textarea:focus {
    border-color: #000;
    background: transparent;
}

.contact-pg-section form textarea {
    height: 180px;
    padding-top: 15px;
}

.contact-pg-section form {
    margin: 0 -15px;
    overflow: hidden;
}

.contact-pg-section form ::-webkit-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.contact-pg-section form :-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.contact-pg-section form ::-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.contact-pg-section form :-ms-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.contact-pg-section form select {
    display: inline-block;
    color: #a9a9a9;
    cursor: pointer;
    opacity: 1;
    padding: 6px 25px;
    font-size: 14px;
    font-weight: 400;
    -webkit-appearance: none;
    -o-appearance: none;
    appearance: none;
    -moz-appearance: none;
    background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
    position: relative;
}

.contact-pg-section form select:focus {
    background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.contact-pg-section form .submit-area {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
}

@media (max-width: 767px) {
    .contact-pg-section form .submit-area {
        margin-bottom: 0;
    }
}

.contact-pg-section form>div {
    width: calc(50% - 30px);
    float: left;
    margin: 0 15px 25px;
}

@media (max-width: 600px) {
    .contact-pg-section form>div {
        width: calc(100% - 25px);
        float: none;
    }
}

.contact-pg-section form .fullwidth {
    width: calc(100% - 25px);
    float: none;
    clear: both;
}

.contact-pg-section .office-info {
    padding-bottom: 50px;
}

@media (max-width: 767px) {
    .contact-pg-section .office-info {
        padding-bottom: 30px;
    }
}

@media (max-width: 1200px) {
    .contact-pg-section .office-info .coinfoboxes {
        margin-bottom: 30px;
    }
}

@media (max-width: 1200px) {
    .contact-pg-section .office-info .coinfoboxes:last-child .office-info-item {
        margin-bottom: 0px;
    }
}

.contact-pg-section .office-info .office-info-item {
    text-align: center;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
    padding: 40px;
    height: 100%;
}

.contact-pg-section .office-info .office-info-item .office-info-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%;
}

.contact-pg-section .office-info .office-info-item .office-info-icon .icon i {
    font-size: 25px;
    color: #001E5A;
}

.contact-pg-section .office-info .office-info-item .office-info-text h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    margin: 10px 0;
    letter-spacing: 1px;
}

.contact-pg-section .office-info .office-info-item .office-info-text p {
    margin-bottom: 0;
    text-align: center;
}

.contact-pg-section .contact-form-area {
    padding: 50px;
    background: #fff;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
    padding-bottom: 0;
    margin-bottom: -125px;
    position: relative;
    z-index: 9;
}

@media (max-width: 767px) {
    .contact-pg-section .contact-form-area {
        padding: 30px;
        padding-top: 50px;
    }
}

.contact-map-section .contact-map {
    height: 550px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    filter: grayscale(100%);
}

.contact-map-section h2.hidden {
    display: none;
}





.cousmedia {
    margin-bottom: 10px;
}

.cousmedia i {
    font-size: 18px;
    color: #001E5A;
}

.cousmedia a,
.cousmedia p {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .02em;
    text-align: justify;
    color: #212529;
    margin: 0px;
}

.addressboxmain {
    width: 100%;
    display: inline-block;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    padding: 20px;
}

.gitouch_sec .boxtitlemain {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
}

.gitouch_sec .boxtitle {
    color: #001E5A;
    font-family: var(--PlayfairDisplay);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.05em;
}


.gitouch_sec .formbox .btn {
    padding: 17px 30px;
    border-radius: 0;
}



/* Coming Soon Page */

.main-area {
    position: relative;
    height: 100vh;
    z-index: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    text-align: center;
}

.cslogo {
    margin-bottom: 50px;
}

.main-area .title {
    font-family: var(--MuseoModerno);
    font-weight: 200;
    font-size: 100px;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 100px;
}

.main-area .customrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.main-area .smboxes {
    flex: 0 0 calc(12% + -0px);
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 25px;
}

.main-area .smbimg {
    width: 130px;
    height: 130px;
    margin: 0 auto;
}

.main-area .smbimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Coming Soon Page */




@media (max-width: 1680.98px) {
    .about-section .content {
        max-width: 600px;
        padding: 50px 30px 50px 0;
    }
}


@media (max-width: 1440.98px) {

    .about-section .content {
        padding-right: 0px;
        max-width: 480px;
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: 100%;
        max-width: 100%;
        padding-right: 5%;
        padding-left: 5%;
    }

    .navbar-nav .nav-item {
        padding-right: 10px;
        padding-left: 10px;
    }

    .banner_sec .slide-content {
        padding-top: 15%;
    }

    .banner_sec .slide-content h2 {
        font-size: 35px;
        line-height: 55px;
    }

    .sectitle .title {
        font-size: 30px;
    }

    .gitouch_sec .boxtitle {
        font-size: 25px;
    }

    p {
        font-size: 14px;
        line-height: 30px;
    }

    .about-funfact h3 span {
        font-size: 70px;
        line-height: 70px;
    }

    .about-funfact h4 {
        font-size: 25px;
        line-height: 30px;
    }

    .lcl_sec .grid-item h2 {
        font-size: 25px;
    }

    /* .lcl_sec .grid-container {
        min-height: 465px;
    } */

    .image-card .content h2 {
        font-size: 25px;
        line-height: 25px;
    }

    .image-card .content h2 a,
    .image-card .content h2 span {
        height: 30px;
    }

    .image-card .content .destxt {
        font-size: 14px;
    }

    .srpboxes .srpcon p {
        font-size: 14px;
        line-height: 28px;
    }

    .gitouch_sec .gitboxes:first-child {
        flex: 0 0 auto;
        width: 45%;
    }

    .form-control {
        height: 40px;
    }

    /* coming soon page */
    .cslogo {
        width: 350px;
        margin: 0 auto 30px;
    }

    .cslogo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .main-area .title {
        font-size: 80px;
        margin-bottom: 80px;
    }

    .main-area .smbimg {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    /* coming soon page */

    .fosocial li:last-child {
        margin-right: 0px;
        margin-bottom: 0px;
    }
}


@media (max-width: 1399.98px) {
    .about-section .content {
        padding-right: 0px;
        max-width: 630px;
    }

    .page_main {
        padding-top: 108px;
    }

    .navbar-brand {
        width: 130px;
    }

    .ourshape_sec .smbimg {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .fologo {
        width: 250px;
        margin: 0 auto 20px;
    }

    .fodes p {
        font-size: 14px;
        line-height: 28px;
    }
}


@media (max-width: 1280.98px) {
    .about-section .content {
        max-width: 550px;
    }

    .headermain .container,
    .headermain .container-fluid,
    .headermain .container-lg,
    .headermain .container-md,
    .headermain .container-sm,
    .headermain .container-xl,
    .headermain .container-xxl {
        width: 100%;
        max-width: 100%;
        padding-right: 3%;
        padding-left: 3%;
    }

    .sharp_section .srpmain {
        flex: 0 0 auto;
        width: 90%;
    }

    .contact-pg-section .copmain {
        flex: 0 0 auto;
        width: 100%;
    }

    .gitouch_sec .gitboxes:first-child {
        flex: 0 0 auto;
        width: 50%;
    }
}


@media (max-width: 1199.98px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 12px;
        line-height: 12px;
    }

    .headermain .head_right .btn {
        font-size: 12px;
        line-height: 12px;
        padding: 10px 10px;
    }

    .headermain .headerbg {
        padding: 10px 15px;
    }

    .about-section .content {
        max-width: 532px;
        padding: 50px 30px 50px 0;
    }

    /* .lcl_sec .grid-item .hover-overlay {
        opacity: 1;
        transform: scale(1);
        transition: opacity 0.3s ease;
        z-index: 2;
        pointer-events: none;
    }

    .lcl_sec .grid-item::before {
        opacity: 1;
    }

    .lcl_sec .grid-content {
        display: none;
    } */

    .lcl_sec .grid-container {
        flex-wrap: wrap;
        min-height: 750px;
    }

    .lcl_sec .grid-item {
        flex: 50% 0 0;
    }

    .fologo {
        width: 200px;
    }

    .gitouch_sec .gtsmain {
        flex: 0 0 auto;
        width: 95%;
    }

    .fosocial li {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}


@media (max-width: 1024.98px) {
    .about-section .content {
        max-width: 454px;
        padding: 50px 20px 50px 0;
    }
}


@media (max-width: 991.98px) {
    .headermain .head_right {
        padding-left: 0;
    }

    .headermain .headerbg {
        padding: 10px 0px;
        border-radius: 0;
        border: none;
    }

    .navbar {
        margin: 0;
        padding: 0;
        background-color: #fff;
    }

    .navbar-toggler {
        border: 0;
        box-shadow: none !important;
        padding: 0;
        background-color: transparent;
    }

    .navbar-toggler span {
        width: 25px;
        height: 3px;
        background: #fff;
        display: block;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        margin-bottom: 4px;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .navbar-toggler span:nth-child(1) {
        width: 16px;
    }

    .navbar-toggler:hover span:nth-child(1) {
        width: 25px;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        width: 25px;
        -webkit-transform: rotate(45deg) translate(5px, 5px);
        -ms-transform: rotate(45deg) translate(5px, 5px);
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        -webkit-transform: rotate(-45deg) translate(5px, -5px);
        -ms-transform: rotate(-45deg) translate(5px, -5px);
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .navbar-toggler span {
        background: #fff;
        background-image: none;
    }


    .navbar-nav {
        margin-bottom: 0 !important;
        margin-top: 15px;
    }

    .navbar-nav .nav-item {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 15px;
    }

    .fixed-header .navbar-toggler span {
        background: var(--primary);
    }

    .page_main,
    .page_main.home_page {
        padding-top: 85px !important;
    }

    .sectitle p {
        width: 100%;
    }

    .headermain.fixed-header .nav-item .nav-link {
        display: inline-block;
    }

    .imgcon_sec .icboxes {
        flex: 0 0 auto;
        width: 100%;
    }

    .imgcon_sec .icboxes.imgbox {
        order: 1;
        margin-bottom: 25px;
    }

    .imgcon_sec .icboxes.imgbox img {
        width: 100%;
    }

    .imgcon_sec .icboxes.conbox {
        order: 2;
    }

    .about-section .about-wrap {
        width: 100%;
    }

    .about-section .content {
        max-width: 100%;
        padding: 50px;
    }

    .updownitems .owl-item .image-card {
        margin-top: 0;
    }

    .footermain .foboxes {
        flex: 0 0 auto;
        width: 50%;
        margin-bottom: 25px;
    }

    .footermain .foboxes.ldbox {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 25px;
    }

    .fosocial li {
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .fosocial li:last-child {
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .footer_top {
        padding-bottom: 10px !important;
    }

    .sharp_section .srpmain {
        flex: 0 0 auto;
        width: 100%;
    }

    .lcl_sec .grid-container {
        flex-wrap: wrap;
        min-height: 1200px;
    }

    .lcl_sec .grid-item {
        flex: 100% 0 0;
    }

    .custom-bottom-arrow button i {
        font-size: 20px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}


@media (max-width: 767.98px) {

    .page_main,
    .page_main.home_page {
        padding-top: 85px !important;
    }


    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        line-height: 14px;
    }

    .headermain .head_right .btn {
        font-size: 14px;
        line-height: 14px;
        padding: 10px 15px;
    }

    .footer_top .foboxes.ldbox {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    .fologo {
        margin: 0 auto 20px;
    }

    .fosocial {
        justify-content: center;
    }

    .footer_top .foboxes {
        flex: 0 0 auto;
        width: 50%;
    }

    section.ptb-50 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .about-section .content {
        padding: 30px;
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x)* .5);
        padding-left: calc(var(--bs-gutter-x)* .5);
    }

    .g-5,
    .gx-5 {
        --bs-gutter-x: 1.5rem;
    }

    .sharp_section .srpboxes {
        margin-bottom: 25px;
    }

    .sharp_section .srpboxes:last-child {
        margin-bottom: 0px;
    }

    .contact-pg-section .office-info .coinfoboxes:last-child {
        margin-bottom: 0;
    }

    .gitouch_sec .gitboxes:first-child {
        margin-bottom: 25px;
    }

    .gitouch_sec .gitboxes:first-child {
        flex: 0 0 auto;
        width: 80%;
    }

    /* coming soon page */
    .main-area .title {
        font-size: 65px;
        margin-bottom: 80px;
    }

    /* coming soon page */
}


@media (max-width: 575.98px) {

    .page_main,
    .page_main.home_page {
        padding-top: 73px !important;
    }

    .navbar-brand {
        width: 100px;
    }

    .banner_sec {
        width: 100%;
        height: 580px;
        display: flex;
        position: relative;
        z-index: 0;
    }

    .about-section .content {
        padding: 30px 0;
    }

    .footer_top .foboxes {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 25px;
    }

    .footer_top .foboxes:last-child {
        margin-bottom: 0px;
    }

    .sectitle .title {
        font-size: 25px;
    }

    .lcl_sec .grid-container {
        flex-wrap: wrap;
        min-height: 1800px;
    }

    .ourshape_sec .smboxes {
        flex: 0 0 calc(33.33% + -0px);
    }

    .ourshape_sec .smbimg {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .contact-pg-section .office-info .office-info-item {
        padding: 20px;
    }

    .addressboxmain {
        padding: 15px;
    }

    .ctmtab li {
        font-size: 12px;
    }

    .ctmtab li .flagicon {
        width: 50px;
        height: 30px;
    }

    .gitouch_sec .gitboxes:first-child {
        flex: 0 0 auto;
        width: 100%;
    }

    /* coming soon page */
    .main-area .title {
        font-size: 50px;
    }

    .cslogo {
        width: 300px;
        margin: 0 auto 30px;
    }

    .main-area .smbimg {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }

    /* coming soon page */
}


@media (max-width: 480.98px) {
    .lcl_sec .grid-container {
        flex-wrap: wrap;
        min-height: 2100px;
    }

    /* coming soon page */
    .main-area .title {
        font-size: 40px;
        margin-bottom: 60px;
    }

    .cslogo {
        width: 250px;
        margin: 0 auto 30px;
    }

    .main-area .smbimg {
        width: 30px;
        height: 30px;
        margin: 0 auto;
    }

    /* coming soon page */
}