@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
    background-color: #101a24;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}


/***** Font Files *****/

@font-face {
    font-family: 'Jersey';
    src: url(../fonts/Jersey-M54.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Blender_Pro';
    src: url(../fonts/fonnts.com-Blender_Pro_Medium.ttf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}





.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Jersey';
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Jersey';
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Jersey';
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Jersey';
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Jersey';
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;

}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

.container-fluid {
    padding: 0 4%;
}

/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec .row {
    align-items: center;
}

.menuSec ul li a {
    color: #fff;
    font-size: 15px;
    padding: 35px 30px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Blender_Pro';
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    background-color: #da322f42;
}

.menuSec ul li a::before {
    left: 0;
    bottom: 0;
    width: 0px;
    height: 5px;
    content: '';
    right: 100%;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: #da332f;
}

.menuSec ul li a.active::before,
.menuSec ul li a:hover::before {
    left: 0;
    right: 0;
    width: 100%;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSec ul li a:not(:hover)::before {
    left: auto;
    right: 0;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}

.menuSec ul li:last-child a {
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #fff;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.theme-btn-1 {
    color: #fff;
    font-size: 15px;
    padding: 20px 50px;
    position: relative;
    font-family: 'Blender_Pro';
    text-transform: uppercase;
    background-color: #da332f;
    display: inline;
}

.theme-btn-1 span {
    z-index: 1;
    position: relative;
}

.theme-btn-1:hover {
    color: #da332f;
    background-color: #fff;
}


.theme-btn-1::before {
    bottom: 2px;
    left: 2px;
    width: 10px;
    content: '';
    height: 10px;
    position: absolute;
    transition: ease-in;
    background-color: #fff;
    transition-duration: 0.5s;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    transform: rotate(273deg);
    overflow: hidden;
}

.theme-btn-1::after {
    right: 2px;
    top: 2px;
    width: 10px;
    content: '';
    height: 10px;
    position: absolute;
    transition: ease-in;
    background-color: #fff;
    transition-duration: 0.5s;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    transform: rotate(265deg);
    overflow: hidden;
}

header:before {
    position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 290px;
    height: 382px;
    background-image: url(../images/head-bf.png);
    z-index: -1;
    left: -45px;
    top: -60px;
    filter: blur(10px);
    background: radial-gradient(circle, rgb(209 48 41 / 58%) 0%, rgb(209 48 41 / 56%) 14%, rgb(209 48 41 / 3%) 82%, rgb(209 48 41 / 26%) 100%);
    background-size: cover;
    background-position: -20px -40px;
    background-repeat: no-repeat;
}

/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

header {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
}

/*banner css start */
section.banner {
    padding: 200px 0px 100px;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-position: right;
    margin-bottom: 100px;
}

.banner-txt h1 {
    font-size: 77px;
    line-height: 1;
    margin-bottom: 0px;
}

.banner-txt h2 {
    color: #fff;
    font-size: 77px;
    line-height: 1;
    margin-bottom: 20px;
}

.banner-txt h2 span {
    color: #da332f;
    border-bottom: 1px solid #d13029;
    line-height: 0;
}

.main-ban-sm-bx:before {
    position: absolute;
    top: 125px;
    left: 0;
    content: '';
    background-image: url(../images/ban-sm-bf.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 197px;
    width: 258px;
    z-index: 0;
}

.banner-txt p {
    font-size: 14px;
    color: #fff;
    width: 71%;
    margin-bottom: 30px;
}

.main-ban-sm-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 89%;
    position: relative;
}

.ban-sm-img {
    height: 198px;
    width: 168px;
    border: 1px solid #fff;
    position: relative;
    z-index: 1;
}

section.banner::before {
    left: 0;
    bottom: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 80px;
    position: absolute;
    background-color: #da332f;
    clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
    animation: line 5s infinite;
}

@keyframes line {
    0% {
        clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
    }

    100% {
        clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
    }
}

.ban-sm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bn-sm-2-txt {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bn-sm-2-txt h5 {
    margin: unset;
    color: #fff;
    font-family: 'Blender_Pro';
    text-transform: uppercase;
}

.ban-sm-img h5 {
    color: #fff;
    text-align: justify;
    letter-spacing: 3px;
    padding: 10px 10px;
    border-top: 1px solid #fff;
    border: 1px solid #fff;
    margin: 0;
}

.ban-social-icon {
    margin-top: 170px;
}

.ban-social-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 87%;
}

.ban-social-icon ul {
    display: flex;
    gap: 10px;
    position: relative;
    margin: unset;
}

.ban-social-icon ul li a {
    perspective: 800px;

}

.ban-social-icon ul li a i {
    font-size: 20px;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    border: 1px solid #fff;
    transition-duration: 0.8s;
}

.ban-social-icon ul li a i:hover {
    transition: ease-in;
    transition-duration: 0.8s;
    transform: rotateY(360deg);
}

.ban-social-icon h5 {
    color: #fff;
    font-size: 15px;
    font-family: 'Blender_Pro';
    text-transform: uppercase;
    margin: unset;
}

.ban-social-icon ul::before {
    position: absolute;
    top: 25px;
    right: -310px;
    width: 56px;
    content: '';
    background-color: #fff;
    height: 1px;
    left: 0;
    margin: 0 auto;
}

.banner-txt {
    position: relative;
    z-index: 1;
}

/*banner css end */


/* Footer Start */

section.footer {
    position: relative;
    padding: 60px 0% 0px;
    /* background: var(--headingColor); */
    background-color: #17232e;
}

section.footer:before {
    position: absolute;
    top: 0;
    content: '';
    left: 0;
    width: 100%;
    background-color: #da332f;
    height: 58px;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 20%);
}

section.footer p {
    font-size: 14px;
    color: #717171;
    font-weight: 600;
}

ul.adrs-links li a {
    gap: 8px;
    display: flex;
    color: #969696;
    font-size: 14px;
    font-weight: 500;
    align-items: center;
    padding-bottom: 15px;
    transition: 0.7s ease-in-out;
    font-family: "Montserrat", sans-serif;
}

ul.adrs-links li a i {
    color: #a9a9a9;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    font-family: 'FontAwesome';
}

li.boader a {
    border: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

ul.adrs-links {
    margin-bottom: 0 !important;
}

ul.adrs-links li {
    line-height: 1.1;
    margin-bottom: 15px;
}

ul.social-links {
    gap: 15px;
    display: flex;
    justify-content: center;
}

ul.adrs-links li a:hover {
    color: var(--theme-3);
}

section.footer h2 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 0px;
    text-transform: uppercase;
    border-bottom: 1px solid #3a3a3a;
    width: 77%;
}

ul.linkList li a {
    font-size: 14px;
    transition: 0.5s;
    color: #626262;
    font-weight: 600;
    font-family: 'Montserrat';
    text-transform: capitalize;
}

ul.linkList li a i {
    color: #ffffff94;
}

.foot1 {
    padding: 0 0% 0 0;
    margin-top: 30px;
    position: relative;
}

.foot1 .w-100 {
    position: relative;
    margin-bottom: 28px;
}

.foot1 .w-100 img {
    /* background: #fff; */
    /* width: 50%; */
    /* padding: 12px 15px; */
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
}

.foot1 h4 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 400 !important;
}

.foot4 {
    padding: 30px 0% 0px 21px;
}

.copyrite-txt {
    z-index: 1;
    padding: 23px 0;
    margin-top: 65px;
    position: relative;
    border-top: 1px solid #323232;
    text-align: center;
}

.copyrite-txt p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #777a7c;
    font-family: 'Montserrat';
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    25% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

ul.adrs-links li a:hover i {
    animation: float 1s ease-in-out infinite;
    font-size: 20px;
}

.foot2 {
    padding-right: 0px;
    margin-top: 32px;
    padding-left: 15px;
}

form.footerForm button {
    border-radius: 0;
}

form.footerForm button:hover {
    color: #000;
}

form.footerForm button::before,
form.footerForm button::after {
    border-radius: 0;
}

ul.adrs-links li:first-child,
ul.adrs-links li:last-child {
    gap: 12px;
    display: flex;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    align-items: center;
    font-family: 'Montserrat';
    transition: 0.7s ease-in-out;
}

ul.adrs-links li i {
    color: #a9a9a9;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    font-family: 'FontAwesome';
}

ul.footer-social li a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    color: #ffffff;
    transition: 0.5s;
    border-radius: 50%;
    align-items: center;
    display: flex;
    transition: ease-out;
    justify-content: center;
    transition-duration: 0.5s;
    background-repeat: no-repeat;
    background-size: cover;
    background: #d13029;
}


ul.footer-social li a:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background: linear-gradient(0deg, var(--theme-3) 0%, var(--theme-2) 80%, var(--theme-1) 100%);
}

.social-icon ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 0 0 0 0%;
}

.social-icon h5 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0px;
    font-family: 'Montserrat';
}

.quick-links-ft ul {
    column-count: 1;
    line-height: 38px;
}

ul.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.payment-card {
    float: inline-end;
}

section.copyrite-txt .row {
    align-items: center;
}

.social-icon ul li a:hover {
    background: #fff;
}

.footer-copyright-button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99999;
}


.footer-copyright-button a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 71px;
    background: #f44c00;
    display: none;
}

ul.adrs-links li p {
    font-size: 13px;
    margin-bottom: 0px;
    line-height: 20px;
}

/*Footer End*/
/*about start*/
section.about {
    padding: 100px 0px;
}

.abt-img img {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.abt-txt {
    text-align: left;
    margin-top: -60px;
    position: relative;
}

.abt-txt h4 {
    font-size: 70px;
    line-height: 1.2;
    color: #fff;
    text-align: end;
}

.abt-txt p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 30px;
}

.abt-txt h4 span {
    display: block;
}

.abt-txt a {
    display: inline-block;
}

.abt-main-bx {
    position: relative;
    z-index: 1;
}

.abt-main-bx::after {
    position: absolute;
    top: -101px;
    content: '';
    background-color: #17232e;
    height: 610px;
    width: 80%;
    right: -51px;
    z-index: -1;
    clip-path: polygon(96% 0, 100% 8%, 100% 100%, 0 100%, 0 0);
}

.abt-main-bx::before {
    position: absolute;
    top: -110px;
    content: '';
    background-color: #da332f;
    height: 610px;
    width: 81%;
    right: -50px;
    z-index: -1;
}

.abt-txt::before {
    position: absolute;
    left: -40px;
    width: 85%;
    content: '';
    height: 1px;
    background-color: #fff;
    top: 130px;
    z-index: 0;
}

.abt-img {
    position: relative;
    z-index: 1;
}

.abt-txt::after {
    position: absolute;
    right: 72px;
    width: 39px;
    height: 3px;
    background-color: #d13029;
    content: '';
    top: 129px;
}

/*about end*/

/*converstaion start*/
section.conversation {
    margin-bottom: 100px;
    background-image: url(../images/con-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0px 120px;
    position: relative;
}

.conversation-txt h3 {
    font-size: 70px;
    line-height: 1;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
}

.conversation-txt h3 span {
    display: block;
}

.conversation-txt p {
    font-size: 14px;
    color: #ffffff;
    width: 70%;
    margin-bottom: 30px;
}

section.conversation::before {
    left: 0;
    bottom: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 80px;
    position: absolute;
    background-color: #da332f;
    animation: line 5s infinite;
    clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
}


section.conversation::after {
    position: absolute;
    top: 0;
    content: '';
    left: 0;
    width: 100%;
    clip-path: polygon(100% 0, 0 0, 0 20%);
    background-color: #da332f;
    height: 330px;
    z-index: 1;
}

.conversation-txt {
    position: relative;
    margin-bottom: 50px;
}

.conversation-txt::before {
    position: absolute;
    bottom: -40px;
    left: 0;
    content: '';
    width: 84%;
    height: 43px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/shpape-con.png);
}

/*converstaion end*/
/*testimonial_sec start*/

.testimonial_sec {
    padding: 100px 0 80px;
    position: relative;
}

section.testimonial_sec::before {
    position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 220px;
    height: 272px;
    background-image: url(../images/head-bf.png);
    z-index: -1;
    left: -55px;
    bottom: -80px;
    filter: blur(10px);
    background: radial-gradient(circle, rgb(209 48 41 / 58%) 0%, rgb(209 48 41 / 56%) 14%, rgb(209 48 41 / 3%) 82%, rgb(209 48 41 / 26%) 100%);
    background-size: cover;
    background-position: -20px -40px;
    background-repeat: no-repeat;
}

.testimonial_sec .custom-space {
    margin-top: 50px;
}

.testimonial_top_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
}

.testimonial_top_bar p {
    text-align: center;
    color: #666666;
    margin: 0 auto;
    width: 50%;
}

.testimonial_top_bar {
    padding: 30px 0 15px 0;
}

.checked {
    color: #fd8f00;
}

.testimonial_boxspan {
    color: #fd8f00;
}

.testimonial_box {
    padding: 50px 24px;
    height: 320px;
    margin: 25px 0px;
    position: relative;
}

.testimonial_box i {
    position: absolute;
    color: #000000;
    top: -7%;
    opacity: 0;
    padding: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    display: none;
}

.testimonial_box p {
    padding: 0;
    max-height: 100px;
    font-weight: 400;
    color: #8a8b8d;
    /* overflow-y: scroll; */
    font-family: 'Montserrat';
    font-size: 14px;
    line-height: 22px;
}

.profile {
    padding: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.profile_text p {
    margin: 0;
    padding: 0;
    overflow-y: visible;
}

.profile_text h6 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Jersey';
}

.profile_text p {
    padding: 0;
    text-transform: uppercase;
    font-family: 'Jersey';
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box i {
    background-color: #ffffff;
    color: #51483f;
    opacity: 1;
}

.testimonial_slider .slick-slide.slick-current.slick-active .profile_text p {
    padding: 0 !important;
    color: #fff
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box h6 {
    color: #fff;
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box p {
    padding: 20px 0 16px 0;
    color: #fff;
    margin-bottom: 0;
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box {
    border-width: 1px;
    /* border-color: rgb(244, 244, 244); */
    border-style: solid;
    border-radius: 0px;
    background-color: #da332f;
    box-shadow: 23.013px 9.768px 59px 0px rgba(193, 193, 193, 0.2);
}

.testimonial_box:hover {
    background-color: #d13029 !important;
    box-shadow: 23.013px 9.768px 59px 0px rgba(193, 193, 193, 0.2);
}

.testimonial_box:hover i {
    opacity: 1;
    background-color: #ffffff;
    color: #51483f;
}

.testimonial_slider .slick-slide.slick-current.slick-active {
    width: 11% !important;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active {
    width: 7% !important;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active {
    width: 7% !important;
}

.testimonial_slider .slick-list.draggable {
    height: 463px;
    padding: 30px 0;
}

.testimonial_slider .slick-active {
    opacity: 1;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active .testimonial_box {
    background-color: #17232e;
    border-radius: 0px;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active .testimonial_box {
    background-color: #fff;
}

.profile i {
    position: relative;
    top: 0;
    left: 0;
    background-color: #000000 !important;
    border: 1px solid #fff;
    color: #fff !important;
}

.testimonial_slider .slick-slide.slick-active+.slick-slide.slick-active .testimonial_box p {
    color: #fff;
    margin: 0 0 10px;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active .testimonial_box {
    background-color: #19232e;
    border-radius: 0px;
}

.testimonial_slider-btn {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.testimonial_slider-btn button {
    height: 60px;
    width: 60px;
    display: flex;
    flex-shrink: 0;
    color: #cccccc;
    border-radius: 50%;
    align-items: center;
    transition: ease-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid #cccccc;
    background-color: transparent;
}

.testimonial_slider-btn button:hover {
    color: #000;
    transition: ease-in;
    border-color: #5a4140;
    transition-duration: 0.5s;
    background-color: #5a4140;
}

.abouttestimonial_sec {
    overflow-x: hidden;
    padding: 80px 5% 100px;
}

.section-heading {
    text-align: center;
}

.section-heading h2 {
    font-size: 70px;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
}

.section-heading p {
    font-size: 14px;
    color: #fff;
    width: 56%;
    margin: 0 auto;
}

.testimonial_slider .slick-slide {
    margin: 0px 20px;
}

/*testimonial_sec end*/
/*clear start*/
.clear-img img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.clear-img {
    width: 90%;
}

.clear-img.on {
    margin: 0 auto;
}

.clear-bx-txt h4 {
    font-size: 70px;
    line-height: 1;
    color: #fff;
}

.clear-bx-txt h4 span {
    display: block;
}

.clear-bx-txt p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 30px;
}

.clear-bx-txt {
    padding: 40px;
    position: relative;
    background-color: #17232e;
    border-top: 10px solid #d13029;
    left: -24px;
}


.clear-bx-txt.on {
    position: relative;
    border-bottom: 10px solid #d13029;
    border-top: inherit;
    left: unset;
}

.clear-bx-txt::before {
    top: -1px;
    right: 0;
    width: 50px;
    content: '';
    height: 50px;
    position: absolute;
    background-color: #d13029;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.clear-bx-txt.on::before {
    bottom: -1px;
    right: 0;
    width: 50px;
    content: '';
    height: 50px;
    position: absolute;
    background-color: #d13029;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    top: inherit;
}

section.clear {
    position: relative;
}

section.clear::before {
    position: absolute;
    content: '';
    width: 450px;
    height: 972px;
    z-index: -1;
    right: -125px;
    top: 50px;
    filter: blur(10px);
    background: radial-gradient(circle, rgb(209 48 41 / 72%) 0%, rgb(209 48 41 / 66%) 14%, rgb(209 48 41 / 3%) 82%, rgb(209 48 41 / 26%) 100%);
    background-size: cover;
    background-position: -20px -40px;
    background-repeat: no-repeat;
}

/*clear end*/
/*porblem start*/
section.problem {
    padding-bottom: 170px;
    position: relative;
}

.problem-txt {
    text-align: center;
    margin-bottom: 40px;
}

.problem-txt h4 {
    font-size: 70px;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

.problem-txt p {
    font-size: 14px;
    color: #ffffff;
    width: 60%;
    margin: 0 auto;
}

.prob-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
}

.pro-sm-txt p {
    font-size: 14px;
    color: #fff;
}

.prob-sm-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.prob-bot-txt ul li img {
    width: 20px;
    height: auto;
}

.pro-sm-bx {
    position: relative;
}

.pro-sm-txt {
    background-color: #17232e;
    padding: 20px;
    margin: 0 auto;
    width: 95%;
    z-index: 1;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    border-bottom: 10px solid #2b3741;
}

.pro-sild .slick-slide {
    margin: 0 10px;
}

.pro-sild .slick-active {
    opacity: 1;
}

.pro-sm-txt h4 {
    font-size: 23px;
    line-height: 1.2;
    color: #fff;
    font-weight: 300;
}

.pro-sm-txt h4 span {
    display: block;
}

.pro-sm-txt:before {
    bottom: -1px;
    right: 0;
    width: 50px;
    content: '';
    height: 50px;
    position: absolute;
    background-color: #2c3741;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    top: inherit;
}

.prob-bot-txt h4 {
    font-size: 23px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

.prob-bot-txt h4 span {
    display: block;
}

.problem-main-bx {
    position: relative;
}

.prob-bot-txt {
    position: absolute;
    bottom: -80px;
    left: 40px;
    width: 56%;
    padding: 30px;
    background-color: #17232e;
    border-bottom: 10px solid #da332f;
}

.prob-bot-txt::before {
    bottom: -2px;
    right: 0;
    width: 50px;
    content: '';
    height: 50px;
    position: absolute;
    background-color: #d13029;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    top: inherit;
}

.prob-bot-txt p {
    font-size: 14px;
    color: #fff;
}

.prob-bot-txt ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
}

.prob-bot-txt ul li h5 {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Blender_Pro';
    margin-bottom: 0;
}

.prob-bot-txt a {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Blender_Pro';
    text-decoration: underline;
}

.pro-sild ul.slick-dots {
    bottom: -62px;
    text-align: end;
}

.pro-sild .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    content: '';
    text-align: center;
    opacity: 1;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #909090;
    border-radius: 50%;
    opacity: 8 !important;
    border: none !important;
}

.pro-sild .slick-dots li.slick-active button:before {
    opacity: 1;
    color: black;
    background: #c82d23 !important;
    opacity: 8 !important;
}

.pro-sild .slick-dots li.slick-active button:after {
    content: "";
    position: absolute;
    border: 1px solid #c82d23;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    left: -9px;
    top: -8px;
}

.pro-sild .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    opacity: 1;
}

section.problem::before {
    position: absolute;
    content: '';
    width: 420px;
    height: 602px;
    z-index: -1;
    left: -125px;
    top: -30px;
    filter: blur(10px);
    background: radial-gradient(circle, rgb(209 48 41 / 72%) 0%, rgb(209 48 41 / 66%) 14%, rgb(209 48 41 / 3%) 82%, rgb(209 48 41 / 26%) 100%);
    background-size: cover;
    background-position: -20px -40px;
    background-repeat: no-repeat;
}

/*section.problem end*/
/*inner-banner start*/


section.banner.inn:before {
    height: 80px;
}

header.in::before {
    display: none;
}

section.banner.inn {
    padding: 180px 0px;
}

.abt-bot-txt h2 {
    font-size: 70px;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
}

.abt-bot-txt p {
    font-size: 14px;
    color: #fff;
}

/* InnerPage Contact Us start */

.contact-pag-form form {
    position: relative;
}

.contact-pag-form .form-group {
    position: relative;
}

.contact-side-bar {
    margin-top: 30px;
}

.contact-pag-form .form-group::after {
    content: "";
    height: 53px;
    width: 10px;
    position: absolute;
    left: 40px;
    top: 5px;
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-pag-form .form-group1::after {
    content: "";
    height: 53px;
    width: 10px;
    position: absolute;
    right: 40px;
    top: 5px;
    left: unset;
    transform: rotate(180deg);
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-pag-form form input.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 15px;
    border: 1px solid #bdbdbd;
    line-height: 0;
    box-shadow: none;
    color: #fff;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    font-family: "Poppins";
    display: flex;
    border-radius: 5px;
}

.contact-pag-form form select.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 25px;
    border: 1px solid #bdbdbd;
    box-shadow: none;
    color: #fff;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    font-family: "Poppins";
    display: flex;
    border-radius: 5px;
}

.contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 8px;
    height: 47px;
    background-repeat: no-repeat;
    left: 40px;
    top: 5px;
}

.contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 50px;
    height: 50px;
}

.contact-pag-form form input.form-control::placeholder {
    color: #909091;
}

.contact-main-sec .them-btn-1:hover {
    background-color: #00006d;
    transition: 0.3s all;
}

.contact-pag-form form textarea.form-control {
    font-size: 15px;
    padding-left: 25px;
    padding-top: 20px;
    border: 1px solid #c6c6c6;
    letter-spacing: 0;
    box-shadow: none;
    resize: unset;
    background-color: transparent;
    margin-top: 20px;
    color: #fff;
    border-radius: inherit;
    border-radius: 6px;
    height: 150px;
    scroll-behavior: unset;
}

.contact-pag-form .email {
    padding: 0;
}

.contact-pag-form h4 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white);
}

.contact-pag-form form textarea.form-control::placeholder {
    color: #909091;
}

.contact-pag-form ::-webkit-select-placeholder {
    color: #909091;
    font-family: 'Montserrat';
}

.contact-pag-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909091;
    font-family: 'Montserrat';
}

.contact-pag-form ::-moz-placeholder {
    /* Firefox 19+ */
    font-family: 'Montserrat';
    color: #fff;
}

.contact-pag-form :-ms-input-placeholder {
    /* IE 10+ */
    font-family: 'Montserrat';
    color: #fff;
}

.contact-pag-form :-moz-placeholder {
    /* Firefox 18- */
    font-family: 'Montserrat';
    color: #fff;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Standard property for modern browsers (currently only works in Firefox) */
input[type=number] {
    appearance: textfield;
}

/* Standard properties for modern browsers (works in Chromium-based browsers) */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}

.cicle-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: transparent;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    color: #da332f;
    background: #f8f8f8;
}

.cicle-icon img {
    margin: 0 auto;
}

.contact-info {
    width: 100%;
    display: flex;
    padding: 40px 20px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: flex-start;
    background-color: #da332f;
    border: 1px solid #da332f;
}

.contact-main-sec h4 {
    font-size: 60px;
    color: #fff;
    font-weight: 400;
    line-height: 42px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.contact-main-sec p span {
    display: block;
}

.contact-main-sec p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--white);
    text-transform: capitalize;
}

.contact-main-sec h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
}

.contact_text p {
    font-size: 22px;
    line-height: 25px;
    padding-top: 0px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact_text p a {
    font-size: 16px;
    display: block;
    margin-top: 3px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    font-family: 'Montserrat';
}

.mailt {
    padding-left: 30px;
}

.contact_text a:hover {
    color: #8b8b8b;
}



.contact-us {
    padding: 6% 0;
}

.contact-head {
    text-align: center;
}

.contact-head h2 {
    font-size: 50px;
    color: var(--black);
    text-transform: uppercase;
}

.lg-btn {
    width: 100%;
}

.cp {
    font-size: 17px;
    line-height: 27px;
}

.contact_heading {
    margin-bottom: 30px;
}

.contact_heading h2 {
    font-size: 45px;
    color: #000000;
    font-weight: bolder;
}

.contact-main-sec {
    padding: 100px 0;
}

.contact-main-sec .them-btn-1 {
    margin-top: 20px;
    border: none;
    padding: 12px 20px;
    background-color: #ff0000;
    color: white;
    border-radius: 25px;
}

.b-img img {
    border-radius: 20px;
}

.contact-pag-form .form-group i {
    top: 20px;
    left: 13px;
    font-size: 18px;
    position: absolute;
    color: var(--headingColor);
    display: none;
}

.contact-pag-form .form-group1 i {
    right: 11px;
    left: unset;
    color: #7f7f7f;
    pointer-events: none;
}

.contact-pag-form {
    margin-top: 0;
}

.contact-pag-form button {
    margin-top: 5%;
}

section.contact-main-sec button {
    border: 1px solid transparent;
}

.salary-range-wrapper .skill-main .skill-wrrap .skill-per {
    height: 12px;
    background: var(--headingColor);
    border-radius: 8px;
    width: 0;
    transition: 1s linear;
    position: relative;
}

.salary-range-wrapper .skill-main .skill-wrrap .skill-per:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid var(--headingColor);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* InnerPage Contact Us end */

section.problem.inn .prob-bot-txt {
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -140px;
    border-bottom: 10px solid #da332f;
}

section.problem.inn .prob-bot-txt h4 {
    margin-bottom: 10px;
}
section.keys-inter::before {
    position: absolute;
    content: '';
    width: 390px;
    height: 322px;
    z-index: -1;
    left: -125px;
    bottom: -110px;
    filter: blur(10px);
    background: radial-gradient(circle, rgb(209 48 41 / 72%) 0%, rgb(209 48 41 / 66%) 14%, rgb(209 48 41 / 3%) 82%, rgb(209 48 41 / 26%) 100%);
    background-size: cover;
    background-position: -20px -40px;
    background-repeat: no-repeat;
}
.problem-main-bx.tw {
    margin-top: 150px;
}

section.problem.inn::before {
    bottom: -60px;
    top: initial;
    height: 350px;
    left: -180px;
}

section.problem.inn::after {
    top: 0;
    right: 0;
    filter: blur(10px);
    background: radial-gradient(circle, rgb(209 48 41 / 72%) 0%, rgb(209 48 41 / 66%) 14%, rgb(209 48 41 / 3%) 82%, rgb(209 48 41 / 26%) 100%);
    content: '';
    width: 420px;
    height: 300px;
    background-size: cover;
    background-position: -20px -40px;
}

section.problem.inn {
    position: relative;
    z-index: 999;
    padding-bottom: 230px;
}


section.problem.inn.det img {
    height: 550px;
    object-position: top;
}

section.problem.inn.det .prob-bot-txt {
    position: relative;
    margin-top: -170px;
}

section.problem.inn.det h4 {
    font-size: 70px;
    line-height: 1;
}

section.problem.inn.det .prob-bot-txt::before {
    top: -2px;
    right: 0;
    width: 50px;
    content: '';
    height: 50px;
    position: absolute;
    background-color: #d13029;
    clip-path: polygon(0 0, 100% 97%, 100% 0);
    bottom: inherit;
}

.news-top-txt {
    text-align: center;
    margin-bottom: 30px;
}

.news-top-txt h3 {
    font-size: 70px;
    line-height: 1;
    color: #fff;
    font-weight: 300;
    margin-bottom: 10px;
}

.news-top-txt p {
    font-size: 14px;
    color: #fff;
    width: 61%;
    margin: 0 auto;
}

.news-img img {
    width: 100%;
    height: 490px;
    object-fit: cover;
}

section.news.inn {
    padding-bottom: 100px;
}

.news-txt-bot {
    width: 90%;
    background-color: #17232e;
    padding: 20px;
    margin-top: -240px;
    position: relative;
    margin-left: 12px;
}

.news-txt-bot h6 {
    font-size: 20px;
    line-height: 29px;
    color: #fff;
}

.news-txt-bot h6 span {
    display: block;
}

.news-txt-bot ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-txt-bot ul li {
    display: flex;
    gap: 20px;
}

.news-txt-bot ul li p {
    font-size: 14px;
    color: #fff;
    margin: unset;
}

.news-txt-bot ul li i {
    font-size: 20px;
    color: #c0312f;
}

.news-txt-bot p {
    font-size: 14px;
    color: #fff;
}

section.International-pathways.inn {
    padding: 0px 0px 40px;
    position: relative;
}

section.keys-inter {
    padding-bottom: 100px;
    position: relative;
}

.keys-inter h3 {
    font-size: 70px;
    line-height: 1;
    color: #fff;
    font-weight: 300;
    margin-bottom: 10px;
}

.keys-inter h3 span {
    display: block;
}

.keys-inter p {
    font-size: 14px;
    color: #fff;
    width: 94%;
}

.main-bx-keys {
    text-align: center;
    padding: 25px;
    background-color: #17232e;
    width: 95%;
    margin: 0 auto;
}

.main-bx-keys h5 {
    margin: 40px 0px 20px;
    font-size: 25px;
    color: #fff;
}

.keys-inter {
    padding: 40px 0px;
}

section.International-pathways.inn::before {
    position: absolute;
    content: '';
    width: 390px;
    height: 322px;
    z-index: -1;
    right: -125px;
    top: -110px;
    filter: blur(10px);
    background: radial-gradient(circle, rgb(209 48 41 / 72%) 0%, rgb(209 48 41 / 66%) 14%, rgb(209 48 41 / 3%) 82%, rgb(209 48 41 / 26%) 100%);
    background-size: cover;
    background-position: -20px -40px;
    background-repeat: no-repeat;
}

/* InnerPage Blog-Detail start */

.blog-detail-wrapper .blog-detail-card-heading-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0px;
}

.blog-detail-wrapper .blog-detail-search-main {
    position: relative;
    width: 80%;
    margin: 0 0 50px 0;
}

.blog-detail-wrapper .blog-detail-card-heading {
    width: 100%;
    padding: 0px 0 0 0;
}

.blog-detail-wrapper {
    margin: 100px 0 100px 0;
}

.blog-detail-card-heading-user ul {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 40%;
}

.blog-detail-card-heading-user ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-detail-wrapper .blog-detail-card-heading-user ul li p {
    font-size: 14px;
    color: #fff;
    margin: unset;
}

.blog-detail-wrapper .blog-detail-card-heading-user ul li i {
    color: #da332f;
}

.blog-detail-card-heading h4 {
    font-size: 29px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

.blog-detail-wrapper .blog-detail-search input {
    width: 100%;
    padding: 0 80px 0 20px;
    height: 60px;
    border: 1px solid #bc1930;
    outline: none;
    border-radius: 0px;
    text-transform: uppercase;
    background-color: unset;
    color: #fff;
}
.blog-detail-wrapper .blog-detail-search input::placeholder {
    color: #fff;
}
.blog-detail-wrapper .blog-detail-search-icon button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border-radius: 5px;
    background-color: #c41d33;
    border: none;
    color: #fff;
    font-size: 20px;
}

.blog-detail-wrapper .blog-detail-search-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.blog-detail-wrapper .blog-detail-recent-main .blog-list-card-img img {
    height: 104px;
    border-radius: 10px;
}

.blog-detail-wrapper .blog-detail-recent-main .blog-list-card-txt h5 {
    font-size: 13px;
    line-height: 22px;
    width: 82%;
    margin: 5px 0;
    font-family: 'Montserrat';
    text-transform: uppercase;
    color: #fff;
}

.blog-detail-wrapper .blog-detail-recent-main .blog-list-card-user-txt h6 {
    font-size: 9px;
    line-height: 12px;
}

.blog-detail-wrapper .blog-detail-recent-main .blog-list-card-user-txt p {
    font-size: 9px;
    line-height: 12px;
}

.blog-detail-wrapper .blog-detail-recent-main .blog-list-card-user {
    gap: 10px;
}

.blog-detail-wrapper .blog-detail-recent-main .blog-list-card {
    box-shadow: 0 0 0 0 #0000;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-detail-wrapper .blog-detail-recent,
.blog-detail-wrapper .blog-detail-tags h5 {
    color: #fff;
}

.blog-detail-recent h5 {
    color: #fff;
}

.blog-detail-wrapper .blog-detail-tags-key span {
    font-size: 10px;
    line-height: 10px;
    color: #fff;
    text-transform: uppercase;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    height: 25px;
    /* background-color: #fafafa; */
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.2s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
        rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    /* background-color: white; */
    margin: 0 0 5px 0;
}

.blog-detail-wrapper .blog-detail-tags-key span:hover {
    background-color: #c41d33;
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.blog-detail-wrapper .blog-detail-recent,
.blog-detail-wrapper .blog-detail-tags {
    margin: 10px 0 20px 0px;
}

.blog-detail-wrapper .blog-detail-card-main {
    padding: 0 40px 0 0;
}

.blog-detail-wrapper .blog-detail-card-img img {
    height: 510px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blog-detail-wrapper .blog-detail-search-recent-tags-main {
    position: relative;
}

.blog-detail-wrapper .blog-detail-search-recent-tags-main::before {
    content: "";
    position: absolute;
    top: -11%;
    left: -6%;
    border-left: 1px solid #0000001c;
    height: 1061px;
}

.blog-detail-wrapper .blog-detail-recent-main {
    position: relative;
}

.blog-detail-wrapper .blog-detail-recent-main::before {
    content: "";
    position: absolute;
    top: -3%;
    left: -6%;
    border-top: 1px solid #0000001c;
    width: 800px;
}

.blog-detail-wrapper .blog-detail-tags-main {
    position: relative;
}

.blog-detail-wrapper .blog-detail-tags-main::before {
    content: "";
    position: absolute;
    top: 22%;
    left: -6%;
    border-top: 1px solid #0000001c;
    width: 800px;
}

.blog-detail-wrapper .inner-banner-box h2 {
    display: grid;
}

.blog-detail-wrapper section.blogs-details {
    padding: 100px 0;
}

.blog-detail-wrapper .blogs-img-text ul li i {
    color: #000000;
    font-size: 20px;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
}

.blog-detail-wrapper .blogs-img-text ul {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 20px;
}

.blog-detail-wrapper .blogs-img-text h5 {
    font-size: 60px;
    margin-top: 15px;
    color: #000000;
    text-transform: uppercase;
    padding-bottom: 0px;
}

.blog-detail-wrapper .blogs-img-text p {
    font-weight: 400;
    font-size: 18px;
    color: #636161;
    line-height: 32px;
    text-align: justify;
    padding: 0px 0;
}

.blog-detail-wrapper .search a {
    width: 100px;
    height: 51px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 17px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #003366;
    color: #fff !important;
}

.blog-detail-wrapper .search {
    position: relative;
    display: flex;
}

.blog-detail-wrapper .search input {
    border: 1px solid #e1e1e1;
    width: 100%;
    padding: 12px 10px;
    border-radius: 10px 0px 0px 10px;
}

.blog-detail-wrapper .blog-categories h4 {
    font-weight: 700;
    font-size: 34px;
    margin-top: 30px;
    padding-bottom: 5px;
    position: relative;
    color: #000;
    text-transform: uppercase;
}

.blog-detail-wrapper .blog-categories a {
    display: block;
    font-family: "Poppins";
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
}

.blog-detail-wrapper .blog-categories p {
    font-weight: 500;
    color: #646464;
    font-size: 14px;
}

.blog-detail-wrapper .postss {
    border-bottom: 1px solid #e1e1e1;
    padding: 20px 0;
    margin-top: 0;
}

.blog-detail-wrapper .postss i {
    color: #000000;
    font-size: 18px;
    margin-right: 10px;
}

.blog-detail-wrapper .postss h6 {
    font-weight: 400;
    font-size: 16px;
    color: #676767;
    margin-bottom: 0;
    margin-top: 4%;
    text-transform: uppercase;
    font-family: "Poppins";
}

.blog-detail-wrapper .blog-categories {
    padding: 0 0px;
}

.blog-detail-wrapper .blogs-img-text img {
    width: 100%;
    border-radius: 10px;
}

.blog-detail-wrapper .postss p {
    color: #000;
    font-size: 17px;
    line-height: 23px;
    text-align: left;
}

.blog-detail-wrapper .postss ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-detail-wrapper .postss ul li p {
    margin-bottom: 0;
}

.blog-detail-wrapper .search button {
    right: 0;
    border: none;
    height: 50px;
    width: 130px;
    background: #098e49;
    font-size: 15px;
    border-radius: 0px 10px 10px 0px;
    padding: 0;
    text-transform: uppercase;
    color: #fff;
}

.blog-detail-wrapper .blog-categories h4:hover:before {
    width: 100%;
    background: #78b921;
}

.blog-detail-wrapper .postss img {
    width: 180px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-detail-card p {
    font-size: 14px;
    color: #fff;
    line-height: 23px;
}

.ban-social-icon ul li a i:hover {
    transition: 1s;
    background-color: #da332f;
}
.contact-pag-form form select.form-control option {
    color: #000;
}
/* InnerPage Blog-Detail end */