@import url('../css/fonts.css');

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

head title {
    display: none !important;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a,
button,
input {
    outline: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
}

b,
strong {
    font-weight: 600;
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

p {
    margin: 0 0 15px;
}

*::-moz-selection {
    background: #2354a1;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #2354a1;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #2354a1;
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-shadow: none;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
select {
    font-family: Inter Tight;
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    -moz-transition: border linear .2s, box-shadow linear .2s;
    -o-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 30px;
    vertical-align: middle;
    width: 100%;
    color: #566e7c;
    padding: 11px 160px 10px 30px;
    border-radius: 0;
    font-weight: 400;
    background-color: #fff;
    border: 0px solid rgba(0, 43, 92, 0.08);
    font-size: 14px;
    line-height: 25px;
    outline: none;
    letter-spacing: 0px;
    border-radius: var(--base-border-radius-30);
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    padding: 14px 30px 13px;
    border: 0px solid transparent;
    border-radius: 30px;
    color: #fff;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    cursor: pointer;
    outline: none;
    -webkit-font-smoothing: antialiased;
    background-color: var(--base-dark);
    position: absolute;
    right: 0;
    left: 75%;
    top: -61px;
    color: var(--base-white);

}

.rs-layer input[type="email"] {
    border-color: transparent !important;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 0px !important;
    padding-right: 50px !important;
}

button:focus {
    box-shadow: none;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
    border: 1px solid transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: searchfield;
    appearance: searchfield;
}


input[type="range"],
input[type="range"] {
    display: block;
    width: 100%;
    height: 25px;
    -webkit-appearance: none;
    appearance: none;
    margin: 15px 0;
    color: #1a1a1a;
    text-transform: capitalize;
}

input[type=range]::-webkit-slider-runnable-track,
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 7px;
    cursor: pointer;
    box-shadow: 0;
    background: var(--base-black);
    border-radius: 0;
    border: 1px solid var(--base-black);
}

input[type=range]::-webkit-slider-thumb,
input[type=range]::-webkit-slider-thumb {
    box-shadow: 0;
    border: 1px solid var(--base-black);
    height: 25px;
    width: 25px;
    border-radius: 50px;
    background: var(--base-black);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -10px;
}

span#slidervalue {
    color: var(--base-black);
    font-size: 18px;
    font-weight: 500;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

textarea::placeholder,
textarea::-moz-placeholder,
textarea::-webkit-input-placeholder,
select::placeholder,
select::-moz-placeholder,
input::placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-webkit-input-placeholder {
    color: var(--body-font-color) !important;
}

menu,
ol,
ul {
    margin: 16px 0;
    padding: 0 0 0 25px;
}

/** Typography Variable **/
:root {
    --base-bodyfont: "Inter Tight", sans-serif;
    --base-bodyfont-Size: 16px;
    --base-bodyfont-color: #000000;
    --base-skin: #2354a1;
    --base-dark: #c2032c;
    --base-black: #000000;
    --base-grey: #EFF3FA;
    --base-dark-grey: #afafaf;
    --base-white: #ffffff;
    --base-first-gradientcolor: #fc953b;
    --base-second-gradientcolor: #ff6469;
    --base-headingfont: "Inter Tight", serif;
    --base-headingfont-color: #c2032c;
    --base-headingfonttwo: 'Inter Tight', serif;
    --base-border-radius-10: 10px;
    --base-border-radius-15: 15px;
    --base-border-radius-20: 20px;
    --base-border-radius-25: 25px;
    --base-border-radius-32: 32px;
    --base-border-radius-30: 30px;
    --base-border-radius-50: 50px;
    --base-border-radius50: 50%;
    --base-border-color: rgba(0, 25, 76, 0.15);
    --base-border-color-white: #ffffff;
    --base-shadow: 0 0 16px 7px rgba(83 20 173 / 0.07);
    --base-gradient: linear-gradient(to right, var(--base-first-gradientcolor) 28%,
            var(--base-second-gradientcolor) 100%);
}

/** Typo Colors **/
.border-color {
    color: rgba(255, 255, 255, 0.15);
}

.bodyfont-color {
    color: var(--base-bodyfont-color);
}

.headingfont-color {
    color: var(--base-headingfont-color);
}

/** Background Colors **/
.bg-base-skin {
    background-color: var(--base-skin);
}

.bg-base-grey {
    background-color: var(--base-grey);
}

.bg-base-lightgrey {
    background-color: var(--base-lightgrey);
}

.bg-base-white {
    background-color: var(--base-white);
}

.text-base-white {
    color: var(--base-white);
}

/** Bg-layer Colors **/
.bg-base-skin>.prt-bg-layer {
    background-color: var(--base-skin);
}

.bg-base-dark>.prt-bg-layer {
    background-color: var(--base-dark);
}

.bg-base-black>.prt-bg-layer {
    background-color: var(--base-darkblack);
}

.bg-base-grey>.prt-bg-layer {
    background-color: var(--base-grey);
}

.bg-base-lightgrey>.prt-bg-layer {
    background-color: var(--base-lightgrey);
}

.bg-base-white>.prt-bg-layer {
    background-color: var(--base-white);
}

.bg-base-black>.prt-bg-layer {
    background-color: var(--base-black);
}

.bg-base-skin>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-skin);
}

.bg-base-dark>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-dark);
}

.bg-base-black>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-darkblack);
}

.bg-base-grey>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-grey);
}

.bg-base-lightgrey>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-lightgrey);
}

.bg-base-white>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-white);
}

.bg-base-black>.prt-bg-layer>.prt-col-wrapper-bg-layer-inner {
    background-color: var(--base-black);
}

.text-base-white h1:not(.text-base-skin, .text-base-dark),
.text-base-white h2:not(.text-base-skin, .text-base-dark),
.text-base-white h3:not(.text-base-skin, .text-base-dark),
.text-base-white h4:not(.text-base-skin, .text-base-dark),
.text-base-white h5:not(.text-base-skin, .text-base-dark),
.text-base-white h6:not(.text-base-skin, .text-base-dark),
.text-base-white a:not(.text-base-skin, .text-base-dark),
.bg-base-dark h1,
.bg-base-dark h2,
.bg-base-dark h3,
.bg-base-dark h4,
.bg-base-dark h5,
.bg-base-dark h6,
.bg-base-black h1,
.bg-base-black h2,
.bg-base-black h3,
.bg-base-black h4,
.bg-base-black h5,
.bg-base-black h6,
.bg-base-skin h1,
.bg-base-skin h2,
.bg-base-skin h3,
.bg-base-skin h4,
.bg-base-skin h5,
.bg-base-skin h6,
.bg-base-gradient h1,
.bg-base-gradient h2,
.bg-base-gradient h3,
.bg-base-gradient h4,
.bg-base-gradient h5,
.bg-base-gradient h6 {
    color: var(--base-white);
}

.bg-base-dark .text-base-white a:not(.text-base-skin, .text-base-dark) {
    color: var(--base-skin);
}

.bg-base-dark .section-title h3 {
    color: #fff;
}

.bg-base-dark .section-title h3:before,
.bg-base-dark .section-title h3:after {
    color: #fff;
}

.bg-base-dark,
.bg-base-skin {
    color: rgba(255, 255, 255, .50);
}

.bg-base-dark.text-base-white,
.bg-base-skin.text-base-white {
    color: rgba(255, 255, 255, .950);
}

.bg-color1 {
    background-color: #f2f9d8;
}

.bg-color2 {
    background-color: #F7D8F9;
}

.bg-color3 {
    background-color: #F9D8D8;
}

.bg-color4 {
    background-color: #D8EDF9
}

.prt-bg-color-transparent {
    background-color: rgba(0, 0, 0, 0.020) !important;
}


body {
    font-family: var(--base-bodyfont);
    font-weight: 400;
    font-size: var(--base-bodyfont-Size);
    line-height: 26px;
    color: var(--base-bodyfont-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--base-headingfont);
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--base-headingfont-color);
}

h1 {
    font-size: 174px;
    line-height: 184px;
}

h2 {
    font-size: 54px;
    line-height: 64px;
}

h3 {
    font-size: 32px;
    line-height: 42px;
}

h4 {
    font-size: 20px;
    line-height: 30px;
}

h5 {
    font-size: 18px;
    line-height: 28px;
}

h6 {
    font-size: 16px;
    line-height: 26px;
}

.container-fluid {
    padding: 0 15px;
}

.container {
    max-width: 1330px;
    padding: 0 15px;
}

.row:not(.g-0) {
    margin-left: -15px;
    margin-right: -15px;
}

.row:not(.g-0)>[class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
}

.blog-one-column .container {
    max-width: 930px;
}

.w-500 {
    width: 500px;
}


/** Extra-outer **/
body .page {
    overflow: hidden;
    position: relative;
    z-index: 10;
}

body .site-main {
    position: relative;
    z-index: 1;
}

body .page.sidebar-true .site-main {
    padding: 0;
    background-color: var(--base-dark);
}

a {
    color: var(--base-headingfont-color);
}

a:hover {
    color: var(--base-skin);
}

a,
img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

label {
    font-size: 14px;
}

.box-shadow {
    box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10)
}

.border-rad_10 {
    border-radius: var(--base-border-radius-10);
}

.border-rad_30 {
    border-radius: var(--base-border-radius-30);
}

/* ===============================================
    Spacing
------------------------*/
/** Padding **/
.spacing-1 {
    padding: 70px 70px 70px 70px;
}


.spacing-3 {
    padding: 100px 0px 0px 30px;
}


.spacing-9 {
    padding: 0px 15px 206px;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-2 {
    padding-right: 2px ! important;
}

.pr-5 {
    padding-right: 5px ! important;
}



.pr-15 {
    padding-right: 15px ! important;
}

.pr-20 {
    padding-right: 20px ! important;
}

.pr-100 {
    padding-right: 100px ! important;
}


.pl-2 {
    padding-left: 2px ! important;
}

.pl-3 {
    padding-left: 3px ! important;
}

.pl-15 {
    padding-left: 15px ! important;
}

.pl-20 {
    padding-left: 20px ! important;
}

.pl-30 {
    padding-left: 30px ! important;
}

.pl-35 {
    padding-left: 35px ! important;
}



.pl-50 {
    padding-left: 50px ! important;
}

.pl-95 {
    padding-left: 95px ! important;
}

.pl-100 {
    padding-left: 100px ! important;
}


.pt-0 {
    padding-top: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}


.pb-15 {
    padding-bottom: 15px ! important;
}


.pb-20 {
    padding-bottom: 20px ! important;
}


.pb-30 {
    padding-bottom: 30px ! important;
}


/** Margin **/
.mt-0 {
    margin-top: 0px !important;
}

.mt-5 {
    margin-top: 5px ! important;
}

.mt-10 {
    margin-top: 10px ! important;
}


.mt-15 {
    margin-top: 15px ! important;
}

.mt-20 {
    margin-top: 20px ! important;
}

.mt-30 {
    margin-top: 30px ! important;
}

.mt-50 {
    margin-top: 50px ! important;
}


.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px ! important;
}


.mb-10 {
    margin-bottom: 10px ! important;
}


.mb-15 {
    margin-bottom: 15px ! important;
}


.mb-20 {
    margin-bottom: 20px ! important;
}

.mb-30 {
    margin-bottom: 30px ! important;
}

.mb-35 {
    margin-bottom: 35px ! important;
}


.mb-50 {
    margin-bottom: 50px ! important;
}

.mb-70 {
    margin-bottom: 70px ! important;
}


.mb_15 {
    margin-bottom: -15px ! important;
}

.ml-0 {
    margin-left: 0px !important;
}


.ml-20 {
    margin-left: 20px ! important;
}

.ml-50 {
    margin-left: 50px ! important;
}


.ml-120 {
    margin-left: 120px ! important;
}


.ml_20 {
    margin-left: -20px ! important;
}

.mr-20 {
    margin-right: 20px ! important;
}

/*  ===============================================
    SocialIcon / TooltipTop
------------------------*/
ul.social-icons {
    list-style: none;
    margin: 0px;
    padding: 0px 0 0 40px;
}

ul.social-icons {
    padding-left: 0px;
}

.social-icons li {
    display: inline-block;
    border: none;
    z-index: 1;
    position: relative;
}

.social-icons li {
    margin: 0 2px;
}

.social-icons li a {
    border: 1px solid rgb(255 255 255);
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    display: block;
    font-size: 16px;
    border-radius: var(--base-border-radius-50);
    background-color: transparent !important;

}

.social-icons li a:hover {
    color: var(--base-black);
}

.social-icons.circle li>a {
    border-width: 1px;
    border-style: solid;
    height: 33px;
    width: 33px;
    line-height: 33px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 13px;
    border-radius: var(--base-border-radius50);
}


/*===============================================
    Slick_dots/arrows
------------------------*/

/*===============================================
    Slick_dots/arrows
------------------------*/
.slick-dots {
    bottom: -64px;
    width: auto;
    border: 1px solid rgba(0, 25, 76, 0.15);
    border-radius: 30px;
    padding: 15px 17px 15px;
    right: 15px;
    list-style: none;
    display: flex;
    float: right;
    position: absolute;
}

.slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0px 4px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.slick-dots li button {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    margin: 0 0 0 0;
    position: relative;
    background-color: var(--base-dark);
    line-height: 0;
    padding: 0;
    top: -8px;
    left: 3px;
    opacity: 0.1;
    color: transparent;
}

.slick-dots li.slick-active button {
    background-color: var(--base-skin);
    border-radius: 50%;
    opacity: 1;
}

/*.slick-dotted.slick-slider {
    margin-bottom: 50px;
}*/
.slick-dots li button:before {
    display: none;
}

.tm-bgcolor-skincolor .slick-dots li button,
.tm-col-bgcolor-skincolor .slick-dots li button {
    background-color: rgba(255, 255, 255, .1);
}



.slick-slide {
    border: 0;
    outline: 0;
    padding: 0 15px;
}

.slick_slider.no-gutters .slick-slide {
    padding: 0;
}

.slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current)>div:after {
    position: absolute;
    content: "";
    top: 0;
    left: -15px;
    height: 100%;
    width: 1px;
    background-color: #e4e4e4;
}

.prt-bgcolor-darkgrey .slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current)>div:after,
.prt-bgcolor-skincolor .slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current)>div:after {
    background-color: rgba(255, 255, 255, .3);
}

.slick_slider.slick_slider-opacity_block .slick-list {
    overflow: visible;
}

.slick_slider .slick-arrow {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    z-index: 1;
    border: 0;
    color: var(--base-headingfont-color);
    border: 1px solid var(--base-headingfont-color);
    background-color: white;
    top: 70%;

}


.slick_slider .slick-prev {
    left: -206px;
    right: auto;

}

.slick_slider .slick-next {
    left: -140px;
    right: auto;
}

.slick_slider .slick-prev:hover,
.slick_slider .slick-next:hover {
    background-color: var(--base-dark);
}

.slick_slider .slick-prev:hover:before,
.slick_slider .slick-next:hover:before {
    color: #fff
}

.slick_slider .slick-prev:before,
.slick_slider .slick-next:before {
    font-family: 'themify';
    font-size: 20px;
    line-height: 30px;
    line-height: 1;
    color: var(--base-headingfont-color);
    opacity: 1;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick_slider .slick-prev:before {
    content: "\e64a";
}

.slick_slider .slick-next:before {
    content: "\e649";
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: -95px;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

/* style1 */
.slider-for.slick-arrow-style1 .slick-arrow {
    height: 51px;
    width: 51px;
    border-radius: var(--base-border-radius-50);
    z-index: 1;
    color: inherit;
    background-color: var(--base-white);
    overflow: hidden;
}

.slider-for.slick-arrow-style1 .slick-prev:before,
.slider-for.slick-arrow-style1 .slick-next:before {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    color: #000;
}

.slider-for.slick-arrow-style1 .slick-prev:before {
    content: '\e808';
    font-family: 'fontello';
}

.slider-for.slick-arrow-style1 .slick-next:before {
    content: '\e809';
    font-family: 'fontello';
}

.slider-for.slick-arrow-style1 .slick-prev {
    left: 33px;
}

.slider-for.slick-arrow-style1 .slick-next {
    right: 33px;
}



/*  ===============================================
    Header
------------------------*/
/** SiteBrand(logo) **/

.site-branding h1 {
    margin-bottom: 0;
    line-height: 0;
}

.site-branding #logo-img {
    height: 70px;
    width: auto;
}

/** SiteNavigation(Menu) **/

/*social-icons*/
.side ul.social-icons {
    padding-top: 35px;
}

.side .social-icons li a {
    width: 34px;
    height: 34px;
    font-size: 13px;
    line-height: 34px;
    color: var(--base-white);
    border: 1px solid var(--base-white);
    border-radius: var(--base-border-radius-50);
    margin: 14px 0;
}

.side .social-icons li a:hover {
    background-color: var(--base-skin);
    border-color: var(--base-skin);
}

.side p {
    color: var(--base-white);
}

.side aside.widget_text {
    margin: 35px 0 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.side aside.widget_text h3 {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 4px;
}

.side aside.widget_text .wrap-form.cta_form span.text-input {
    margin-bottom: 15px;
}

.side aside.widget_text .wrap-form.cta_form span.text-input input,
.side aside.widget_text .wrap-form.cta_form span.text-input textarea,
.side aside.widget_text .wrap-form.cta_form span.text-input select {
    border-radius: 5px;
    border: 0;
    background-color: #203d71;
    color: rgba(255, 255, 255, .40);
}


.site-branding-wrap,
.header_extra {
    display: flex;
    align-items: center;
}


/* header_extra */



.prt-header-style-01 .header_extra {
    display: inline-block;
    padding-left: 15px;
    position: relative;
    z-index: 1;
    float: right;
    margin-left: 12px;
}

.prt-header-style-01 .site-header {
    position: relative;
}


/* ===============================================
    Footer
------------------------*/
.first-footer {
    padding: 50px 0 0;
    margin-bottom: -1px;
}

.second-footer {
    padding: 50px 0px 55px;
}

.widget p,
.widget.widget_text a {
    color: #fff;
}



/*menu-footer-link*/
.section-footer {
    padding: 65px 0
}

ul.menu-footer-link {
    position: relative;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul.menu-footer-link li {
    position: relative;
    display: block;
    color: var(--base-white);
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 26px;

}

ul.menu-footer-link li a:hover {
    color: var(--base-white);
}


/* ul.prt-list.prt-brand-link li {
    display: inline-block;
    padding: 5px 45px 5px 0;
} */

.footer-widget-box {
    padding-top: 0;
    padding-bottom: 15px;
}


.footer {
    position: relative;
}

/** copyright **/
.copyright {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
}

.copyright .copyright .cpy-text a {
    color: rgba(255, 255, 255, 0.70);
}

.footer-nav-menu li a {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 24px;
}

.footer-nav-menu li:before {
    display: none !important;
}

.copyright .cpy-text a {
    color: rgba(255, 255, 255, 0.74);
}

.copyright .cpy-text a:hover,
.footer-nav-menu li a:hover {
    opacity: 0.8
}

.footer-nav-menu li {
    display: inline-block;
    padding-right: 14px;
}

.footer-nav-menu li:after {
    position: absolute;
    content: "|";
    padding-left: 7px;

}

.footer-nav-menu li:last-child:after {
    content: "";
}

/* footer-nav-menu */
.footer-nav-menu {
    list-style: none;

    text-align: center;
}

/*.menu-footer-link li {
    display: inline-block;
    margin: 0 0 0 15px;
    padding: 0 0 0 15px;
    position: relative;
}*/
.menu-footer-link li a {
    color: #fff;
}

.footer-nav-menu li:first-child {
    margin: 0;
    position: relative;
}

.footer-nav-menu li:before {
    content: "/";
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 255, 255, 0.80);
}

.footer-nav-menu li:first-child:before {
    content: "" !important
}

.widget-title h3 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 30px;
    color: var(--base-white);
    font-weight: 400;
}

.footer .social-links ul.social-icons li {
    margin-right: 0;
    font-size: 15px;
    margin-bottom: 10px;
    position: relative;
    float: left;
    padding: 0 0 0;
    display: inline-block;
    width: calc(50% - 15px);
    padding-bottom: 15px;
}

.footer .social-links ul.social-icons li a {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 8px;
    padding-bottom: 25px;
    color: var(--base-white);
    margin-right: 24px;
    height: auto;
    width: auto;
    font-size: 24px;
    text-transform: capitalize;
    font-family: var(--base-headingfont);

}

.footer .social-links ul.social-icons li a:hover {
    color: var(--base-skin);
    border-color: var(--base-skin);
}

.footer .social-links ul.social-icons li.social-facebook {
    background-color: var(--base-skin);
}

.footer .social-icons li {
    margin-left: 8px;
}

.widget-area {
    position: relative;
}

.footer .social-icons {
    margin-top: 32px;
}

.textwidget.widget-text {
    color: #fff;
}

.widget-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: var(--base-white);
    margin-bottom: 20px;
    font-family: var(--base-headingfont);
}

.footer-nav-menu li {
    display: inline-block;
    color: #fff;
}

.footer-nav-menu li:first-child:before {
    position: absolute;
    content: "|";
    padding-left: 7px;
    top: 0;
    left: 0;
    color: rgba(255, 255, 255, 0.80);
}

.widget-area .widget_nav_menu .menu-footer-link.style1 li {
    display: inline-block;
    width: calc(50% - 3px);
    margin-bottom: 8px;
}

/* ===============================================
    GoTop BUtton
------------------------*/
#totop {
    font-weight: 900;
    color: #fff;
    display: none;
    position: absolute;
    right: 0px;
    left: 0;
    bottom: 20px;
    z-index: 999;
    height: 0;
    width: 0;
    font-size: 0;
    text-align: center;
    padding-top: 3px;
    line-height: 34px;
    border-radius: 10px;
    transition: .3s ease-in-out;
    left: 0;
    margin-bottom: -30px;
    border-radius: 50px;
    z-index: 3;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 0 auto;
}

#totop.top-visible {
    height: 60px;
    width: 60px;
    font-size: 22px;
    display: inline;
    background-color: #061a3b;
}

#totop.top-visible i {
    color: var(--base-white);
    position: relative;
    top: 13px;
    font-size: 25px;
}


.prt-page-title-row {
    position: relative;
    padding-top: 110px;
    padding-bottom: 80px;
    overflow: hidden;
    z-index: 1;
    color: #fff;
}

/* Background Image */
.prt-page-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Overlay Layer */
.prt-bg-layer {
    position: absolute;
    inset: 0;
    background-color: #234c8f;
    opacity: 0.70;
    z-index: -1;
}


.title-box .page-title-heading h1 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 0px;
    display: inline-block;
    font-weight: 500;
    color: var(--base-white);

}

.title-box .page-title-heading {
    position: relative;
    margin-bottom: 5px;
}

.breadcrumb-wrapper span a {
    color: var(--base-white);
}

.breadcrumb-wrapper span {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 26px;
    color: var(--base-dark);
}

/*breadcrumb-wrapper*/
.breadcrumb-wrapper {
    position: relative;
    z-index: 99;
    margin: 0;
    background-color: rgba(0, 23, 70, 0.50);
    display: inline-block;
    vertical-align: top;
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--base-border-radius-30);

}

.breadcrumb-wrapper span {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    font-family: var(--base-headingfont);
    position: relative;
    color: var(--base-white);

}

.breadcrumb-wrapper span:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcrumb-wrapper span a {
    color: var(--base-white);
}

.breadcrumb-wrapper span a:hover {
    color: var(--base-skin);
}

.breadcrumb-wrapper span:last-child:after {
    display: none;
}

/* ===============================================
    Inner-Pages
------------------------*/

/*------------------------------------------------------------------------------*/
/*  single_team
/*------------------------------------------------------------------------------*/


/* .team-details-list ul li {
    padding: 5px 0px;
} */


.single article.post .entry-content .form-submit.cookies span label {
    position: relative;
    top: 2px;
}


/*------------------------------------------------------------------------------*/
/*  Contact_page
/*------------------------------------------------------------------------------*/

/*error*/
/*404 page*/


.failed {
    color: red;
}

.response .text-info,
.response .success {
    color: var(--base-skin) !important;
}

.layer-content .prt-sidebar-contact-box .prt-sidebar-subheading {
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 5px;
    text-align: center;
    color: var(--base-white);
    word-wrap: break-word;
}

.layer-content .prt-sidebar-contact-box .prt-sidebar-heading {
    font-size: 26px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 30px;
}

.layer-content .prt-sidebar-contact-box .prt-sidebar-phone a {
    padding: 10px 30px 10px 35px;
    background-color: var(--base-skin);
    width: auto;
    display: inline-block;
    border-radius: 2em;
    color: var(--base-white);
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.layer-content .prt-sidebar-contact-box .prt-sidebar-phone a:hover {
    background-color: var(--base-white);
    color: var(--base-dark);
}

.layer-content .prt-sidebar-contact-box .prt-sidebar-phone a i {
    top: 2px;
    position: relative;
    left: -5px;
}

.prt-sidebar-right .post.prt-blog-classic-inner {
    padding: 100px 0 38px;
}

/*Single_service*/
.prt-service-single-content-area {
    position: relative;
    padding-top: 60px;
}


/*portfolio-details*/

.footer .bottom-footer {
    background: #183a71;
}

.bottom-footer .copyright .cpy-text p {
    color: #fff;
}

.menu-footer-community-menu .menu-footer-link li {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

@media screen and (max-width:3300px) {
    .fixed-callout .hidden-xs {
        display: none !important;
    }

    .fixed-callout .visible-xs {
        display: flex;
        align-items: center;
    }

    .fixed-callout .mbtn-callout a {
        display: inline-block;
        font-size: 0 !important;
        margin: 0 6px !important;
        padding: 0 !important;
    }

    .fixed-callout {
        padding: 5px 3px !important;
        width: auto;
    }

    .fixed-callout .what-col img {
        width: 35px !important;
        padding: 0px 0 0px !important;
    }
}

.fixed-callout {
    right: 20px;
    bottom: 57px;
    padding: 13px 18px;
}

.fixed-callout img {
    width: 30px;
}

.fixed-callout h4 {
    font-size: 18px;
}

.fixed-callout {
    padding: 15px 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 30%);
    position: fixed;
    bottom: 20px;
    text-align: center;
    z-index: 9999;
}

.hidden-xs {
    display: block;
}

.mbtn-callout {
    display: none;
}

.fixed-callout .hidden-xs a {
    margin: 8px 0px;
}

.fixed-callout a {
    display: block;
    padding: 2px 0;
    font-size: 16px;
    color: #323232 !important;
    text-decoration: none;
}

@media only screen and (min-width:320px) and (max-width:768px) {
    .fixed-callout {
        display: none;
    }

    .small-screen-call-to-action {
        background: var(--base-skin);
        padding: 10px;
        position: fixed;
        bottom: 0;
        display: inline !important;
        z-index: 999;
        width: 100%;
    }

    .small-screen-call-to-action ul {
        display: flex;
        justify-content: center;
        padding-left: 0;
        margin-bottom: 0;
        margin-top: 0;
    }

    .small-screen-call-to-action ul li {
        background: #fff;
        padding: 5px 8px;
        margin-right: 10px;
        border-radius: 5px;
        width: -webkit-fill-available;
        justify-content: center;
        display: flex;
        font-size: 13px;
        align-items: center;
    }

    .small-screen-call-to-action ul li a i {
        color: var(--accent-color);
        font-size: 20px;
        margin-right: 5px;
        line-height: 0;
    }

    .small-screen-call-to-action ul li:last-child {
        margin-right: 0;
    }

    .small-screen-call-to-action ul li a {
        color: var(--base-skin);
        display: flex;
        align-items: center;
    }
}

.small-screen-call-to-action {
    display: none;
}

.bottom-footer .copyright .cpy-text p a {
    color: #fff;
}

.contact-section .featured-desc p {
    color: #111111 !important;
}

.contact-section .featured-desc p a {
    color: #111111 !important;
}

.contact-section .featured-icon-box.style3 {
    padding: 30px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.sidebar-servce {
    padding-top: 60px !important;
}

.prt-service-description h4 {
    font-size: 20px;
}

.info {
    color: red;
}

#mail-status {
    color: green;
}

.srvce-section .content-area {
    padding-bottom: 60px;
}


/* carousel css */
/*  */
.hero-section-1 {
    position: relative;
    overflow: hidden;
}

.hero-section-1,
.carousel,
.carousel-inner,
.carousel-item {
    width: 100%;
}

body {
    margin: 0;
}

/* Slide wrapper */
.carousel {
    position: relative;
}

/* Hide all slides */
.carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;

}

/* Show active slide */
.carousel-item.active {
    position: relative;
    opacity: 1;
    z-index: 1;
    pointer-events: auto;

}

/* Image */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 550px;
}

.slide-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65));
    z-index: 1;
}

/* Caption */
.carousel-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
}

.carousel-caption .carousel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .hero-tagline {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.9;
    text-transform: uppercase;
} */
.hero-tagline {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;

    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.carousel-caption h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.carousel-caption p {
    font-size: 18px;
    max-width: 720px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.know-more-btn {
    padding: 12px 28px;
    font-size: 18px;
    border-radius: 30px;
    font-weight: 500;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background: #ffffff;
    color: #af0c0c;
}



/* Arrows */

.carousel-control-1 {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    color: #ffffff;
    border: none;
    /* border-radius: 50%; */
    z-index: 10;
    padding: 0;
    cursor: pointer;
    background: rgba(0, 23, 70, 0.664);
    /* display: block; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-control-1:hover {
    background: rgba(0, 23, 70, 0.425);

}

.carousel-control-1.prev-1 {
    left: 20px;
}

.carousel-control-1.next-1 {
    left: auto;
    right: 20px;
}

.carousel-control-1.next-1::before {
    content: "\e649";
    font-family: 'Themify';
    font-size: 12px;
    color: white;
    line-height: 40px;
    font-weight: 900;
}

.carousel-control-1.prev-1::before {
    content: "\e64a";
    font-family: 'Themify';
    font-size: 12px;
    color: white;
    line-height: 40px;
    font-weight: 900;
}

/* left: 93.5%; */

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 999;
    gap: 10px;
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    margin: 0 5px 0 5px;

    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
}

.carousel-indicators button.active {
    background: #d90000;
}

/* @media only screen and (max-width : 767px) {
    .carousel-caption {
        right: 0 !important;
    }

    .carousel-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0);
        color: #fff;
        border: none;
        font-size: 28px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
    }
} */

@media (max-width: 767px) {
    .carousel-caption h1 {
        font-size: 30px;
    }

    .carousel-caption p {
        font-size: 16px;
    }
}

/* BACK TO TOP */
/* Back to Top Button */
/* .footer {
    position: relative;
} */

#backToTop {
    position: fixed;
    top: 93%;
    left: 49%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #061a3b;
    color: #fff;
    border: none;
    border-radius: 50%;

    font-size: 22px;
    cursor: pointer;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Show button */
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop.not-show {
    visibility: hidden !important;
}

/* Hover */
#backToTop:hover {
    background-color: #0a6fb8;
}

/* Mobile adjustment */
/* @media (max-width: 767px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
} */



/* accordion section */

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #03b5d2;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    right: auto;
    left: auto;
    top: auto;
    border-radius: 0;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;

    color: #111111;

}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: #03b5d2;
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}