@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/***** General CSS *****/

body {
    color: #393939;
    overflow-x: hidden;
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #4d4d4d;
    --themeColor: #16cde6;
    --themeColor2: #0d607f;
    --headingColor: #010101;
    --headingColor2: #131212;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

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;
}

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;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/-webfont.eot);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.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 {
    margin: 0 0 0px;
    font-size: 50px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Oswald';
    text-transform: uppercase;
}

h2 {
    font-size: 50px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Oswald';
    text-transform: uppercase;
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Oswald';
}

h4 {
    font-size: 25px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Oswald';
}

h5 {
    font-size: 20px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Oswald';
}

h6 {
    margin: 0 0 0px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Poppins';
    color: var(--textColor);
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading h2 span {
    color: var(--themeColor);
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 950px;
}

.theme-btn-2 {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    padding: 17px 32px;
    width: fit-content;
    letter-spacing: 1px;
    color: var(--white);
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: var(--themeColor2);
    box-shadow: -3.244px 16.688px 27px 0px rgba(0, 0, 0, 0.23);
}

.theme-btn-2:hover {
    color: var(--white);
    background-color: var(--themeColor);
}

.theme-btn-1:hover {
    color: var(--white);
    background-color: var(--themeColor2s);
}

.theme-btn-1 {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    padding: 17px 25px;
    width: fit-content;
    color: var(--white);
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: var(--themeColor);
    box-shadow: -3.244px 16.688px 27px 0px rgba(0, 0, 0, 0.23);
}




/*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 ul li a {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    color: var(--themeColor2);
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/*.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 {
    padding-right: 0px;
}*/


/* .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: var(--themeColor);
}

.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 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;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.menuSection {
    z-index: 1;
    padding: 20px 4%;
    position: relative;
}

.menuSection .row {
    align-items: center;
}

/*header css start */


/*banner css start */

.main_slider {
    padding: 0px 4%;
    position: relative;
}

.main_slider .add-padding {
    position: relative;
}

.banner_img {
    height: 700px;
}

.banner_img .banner-img-main {
    bottom: 0;
    right: -5%;
    width: 100%;
    height: 110%;
    position: absolute;
    object-fit: contain;
    object-position: bottom right;
}

.banner_img .banner-img-before {
    right: 30%;
    padding: 15px;
    bottom: 320px;
    position: absolute;
    border-radius: 10px;
    background-color: var(--white);
}

.banner_img .banner-img-after {
    right: 0;
    height: 90px;
    bottom: 60px;
    position: absolute;
}

F .banner_text h6 {
    font-size: 16px;
    padding: 20px 30px;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-radius: 50px 0px 0px 50px;
    background: linear-gradient(90deg, rgba(13, 96, 127, 1) 0%, rgba(13, 97, 127, 0.829) 60%, rgba(13, 97, 127, 0) 100%);
}

.banner_text p {
    width: 90%;
    margin-bottom: 25px;
}

.banner_text {
    z-index: 1;
    position: relative;
    margin-bottom: 50px;
}

.banner_text h1 {
    margin-bottom: 5px;
}

.banner_text h1 span {
    color: var(--themeColor);
}

.banner_text ul {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}










/*banner css end*/

/* banner-bottom-sec */

.banner-bottom-box {
    padding: 50px;
    border-radius: 30px;
    position: relative;
    background-color: var(--themeColor2);
}

.banner-bottom-box::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    margin: auto;
    height: 100%;
    position: absolute;
    background: radial-gradient(circle, rgba(22, 206, 230, 0.24) 0%, rgba(22, 206, 230, 0) 100%);
}

.banner-bottom-text {
    z-index: 1;
    position: relative;
}

.banner-bottom-text h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.banner-bottom-text p {
    width: 90%;
    color: var(--white);
    margin-bottom: 20px;
}

.banner-bottom-img {
    z-index: 1;
    display: flex;
    height: 300px;
    min-height: 100%;
    padding: 0px 30px;
    position: relative;
    align-items: center;
    justify-content: flex-end;
}

.banner-bottom-img::before {
    right: 0;
    content: '';
    height: 95%;
    width: 470px;
    opacity: 0.1;
    bottom: -10px;
    position: absolute;
    border-radius: 20px;
    background-color: var(--white);
}

.banner-bottom-img img {
    z-index: 1;
    height: 100%;
    position: relative;
    width: fit-content;
    object-fit: contain;
}


/* banner-bottom-sec */

/* about-sec */

.about-sec {
    padding: 150px 4%;
    background-color: #e6eff2;
}

.about-img {
    width: 100%;
    width: 100%;
    height: 550px;
    min-height: 100%;
    position: relative;
}

.about-img img.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-img img.about-before-img {
    left: -25px;
    width: 381px;
    height: 218px;
    bottom: -50px;
    position: absolute;
    border-radius: 20px;
    object-fit: contain;
    background-color: var(--white);
    box-shadow: -10.607px 10.607px 43px 0px rgba(0, 0, 0, 0.1);
}

.about-text {
    gap: 20px;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-text h2 span {
    color: var(--themeColor);
}

.about-text p {
    color: #7c7c7c;
}


/* about-sec */

/* service-sec */

.service-sec {
    overflow: hidden;
    padding: 100px 4%;
}

.service-box {
    position: relative;
    margin-bottom: 10px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text {
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.service-box:hover .service-box-img span {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.service-box:hover .service-box-text h4 {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text p {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text .detail-btn {
    color: var(--white);
    transition: ease-in;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box-img {
    width: 90%;
    height: 275px;
    display: block;
    overflow: hidden;
    position: relative;
    transition: ease-in;
    border-radius: 20px;
    transition-duration: 0.5s;
}

.service-number {
    bottom: 0;
    left: 11.3%;
    padding: 14px;
    font-size: 25px;
    position: absolute;
    transition: ease-in;
    color: var(--black);
    font-family: 'Oswald';
    transition-duration: 0.5s;
    background-color: var(--white);
    border-radius: 30px 30px 0px 0px;
}

.service-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease-in;
    transition-duration: 0.5s;
}

.service-box-text {
    width: 90%;
    display: block;
    border-radius: 30px;
    transition: ease-in;
    padding: 80px 20px 40px;
    transition-duration: 0.5s;
    margin: -50px 0px 0px auto;
    background-color: var(--white);
    box-shadow: 0px 0px 45.03px 11.97px rgba(0, 0, 0, 0.13);
}

.service-box-text h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: ease-in;
    overflow: hidden;
    display: -webkit-box;
    transition-duration: 0.5s;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.service-box-text p {
    overflow: hidden;
    display: -webkit-box;
    transition-duration: 0.5s;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 15px;
}

.service-box-text .detail-btn {
    color: var(--black);
    transition-duration: 0.5s;
    text-transform: uppercase;
    text-decoration: underline;
}

.serviceSlider .slick-slide {
    opacity: 0;
    margin: 0px 20px;
    transition-duration: 0.5s;
}

.serviceSlider .slick-list {
    overflow: visible;
}

.serviceSlider .slick-active {
    opacity: 1;
}



/* service-sec */

/* bookkeeping-sec */

.bookkeeping-sec {
    padding: 50px 4% 0px;
}

.bookkeeping-main0-box {
    padding: 60px 85px;
    position: relative;
    border-radius: 20px;
    background-color: var(--themeColor2);
}

.bookkeeping-text {
    z-index: 1;
    position: relative;
}

.bookkeeping-text h2 {
    margin-bottom: 10px;
    color: var(--white);
}

.bookkeeping-text p {
    opacity: 0.7;
    color: var(--white);
    margin-bottom: 20px;
}

.bookkeeping-img {
    bottom: 0;
    z-index: 1;
    display: flex;
    right: -10px;
    height: 100%;
    position: absolute;
    align-items: flex-end;
    justify-content: flex-end;
}

.bookkeeping-img img {
    height: 120%;
    width: fit-content;
    object-fit: contain;
}



/* bookkeeping-sec */

/* how-it-sec */

.how-it-sec {
    padding: 100px 4%;
}

.how-it-work-box {
    margin-top: 80px;
    text-align: center;
    transition: ease-in;
    border-radius: 20px;
    padding: 0px 30px 30px;
    transition-duration: 0.5s;
    background-color: var(--white);
    box-shadow: -10.607px 10.607px 43px 0px rgba(0, 0, 0, 0.1);
}

.how-it-work-box:hover {
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.how-it-work-box:hover * {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.how-it-work-box:hover p {
    opacity: 0.7;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.how-it-work-box .how-it-work-box-icon {
    top: -65px;
    width: 130px;
    height: 130px;
    display: flex;
    border-width: 1px;
    position: relative;
    border-radius: 50%;
    align-items: center;
    border-style: solid;
    transition: ease-in;
    margin: 0px auto -40px;
    justify-content: center;
    transition-duration: 0.5s;
    border-color: var(--white);
    background-color: rgb(22, 205, 230);
    box-shadow: -10.607px 10.607px 43px 0px rgba(0, 0, 0, 0);
}

.how-it-work-box:hover .how-it-work-box-icon {
    transition: ease-in-out;
    transition-duration: 0.5s;
    box-shadow: -10.607px 10.607px 43px 0px rgba(0, 0, 0, 0.1);
}

.how-it-work-box h4 {
    font-weight: 600;
    margin-bottom: 5px;
    transition: ease-in;
    font-family: 'Poppins';
    text-transform: uppercase;
    transition-duration: 0.5s;
}

.how-it-work-box p {
    font-size: 12px;
    margin-bottom: 20px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.how-it-work-box a {
    font-weight: 600;
    position: relative;
    color: var(--black);
    transition: ease-in;
    font-family: 'Poppins';
    text-transform: uppercase;
    transition-duration: 0.5s;
}

.how-it-work-box a::before {
    left: 0;
    bottom: 0;
    width: 0px;
    height: 1px;
    content: '';
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.how-it-work-box a:hover::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}


/* how-it-sec */

/* driven-sec */

.driven-sec {
    padding: 0px 4%;
}

.driven-text h2 {
    margin-bottom: 10px;
}

.driven-text h2 span {
    color: var(--themeColor);
}

.driven-text {
    z-index: 2;
    padding: 30px 0px;
    position: relative;
}

.driven-text::before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 124%;
    content: '';
    height: 230px;
    position: absolute;
    background-color: var(--white);
    border-radius: 0px 0px 20px 0px;
}

.driven-text p {
    margin-bottom: 20px;
}

.driven-text ul {
    gap: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.driven-text ul li {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.driven-text ul li h6 {
    font-size: 18px;
}

.driven-text ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.driven-img {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 100%;
}

.driven-img img.driven-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    object-position: right;
}

.driven-img img.driven-img-before {
    width: 330px;
    right: -50px;
    height: 200px;
    bottom: -60px;
    max-width: 70%;
    position: absolute;
    object-fit: contain;
}

/* driven-sec */

/* Why Clients Says About Us Start */

.why-client-says-about-us-sec {
    padding: 100px 4%;
}

.why-client-says-about-us-heading h2 span {
    display: block;
}

.why-client-says-about-us-heading h2 label {
    color: #45722c;
}

.why-client-says-about-us-text p {
    margin-bottom: 18px;
}

.why-client-says-about-us-text {
    margin-left: 100px;
}

.why-client-says-about-us-text a {
    font-size: 14px;
}

.why-client-says-about-us-text a span {
    width: 37px;

    height: 37px;
}

.why-client-says-about-us-text p {
    margin-bottom: 18px;

    color: #4f4b47;

    font-size: 14px;
}

.why-client-says-about-us-head-row {
    border-bottom: 1.8px solid #9f9388;

    padding-bottom: 30px;
}

.why-client-says-about-us-heading h2 {
    margin-bottom: 0;
}

.why-client-says-silder .slick-active {
    opacity: 1.5;
}

.why-client-says-silder-head h2 {
    font-size: 25px;

    margin-bottom: 0;

    font-weight: 600;
}

.why-client-says-silder-head p {
    color: #433e3c;

    font-size: 14px;
}

.why-client-says-silder-text {
    text-align: center;

    margin-top: 35px;
}

.why-client-says-quote {
    top: 0px;
    left: 10px;
    width: 65px;
    height: 65px;
    display: flex;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid #cecece;
}

.why-client-says-silder-text p {
    font-size: 14px;
    color: #423f3d;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 10px;
}

.why-client-says-silder-text i {
    color: #000;
}

.why-client-says-silder-head {
    margin-left: 200px;
}

.why-client-says-silder-items {
    margin-top: 50px;
    padding: 25px 30px;
    position: relative;
    border-radius: 20px;
    border: 1px solid #e7e7e7;
}

.why-client-says-quote img {
    width: 29px;
    height: 23px;
    object-fit: contain;
    animation: floatBadge 5s ease-in-out infinite;
}

.why-client-says-silder .slick-slide {
    margin: 10px 10px;
}

.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-quote {
    background-color: var(--themeColor2);
}

.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-silder-items {
    background-color: var(--themeColor2);
}

.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-quote img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7498%) hue-rotate(288deg) brightness(111%) contrast(100%);
}

.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-silder-head h2 {
    color: #fff;
}

.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-silder-head p {
    opacity: 0.7;
    color: var(--white);
}

.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-silder-text p {
    opacity: 0.7;
    color: var(--white);
}

.why-client-says-silder-items::before {
    top: -1px;
    left: -1px;
    width: 150px;
    content: "";
    height: 120px;
    position: absolute;
    background-image: url(../images/review-box-before.png);
    background-repeat: no-repeat;
    background-size: contain;
}


/* Why Clients Says About Us Ends */



/* Footer Start */

.footer-sec {
    overflow: hidden;
    background: var(--black);
}

.footer-sec .container-fluid {
    padding: 0;
}

.footer-social-link {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #363636;
}

.footer-number a:hover {
    letter-spacing: 2px;
    color: var(--themeColor);

    transition: 0.5s;
}

.footer-social-link ul li a {
    width: 45px;
    height: 45px;
    opacity: 0.5;
    display: flex;
    font-size: 15px;
    transition: 0.5s;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.footer-social-link ul li {
    margin-bottom: 40px;
}

.footer-social-link ul li a:hover {
    opacity: 1;
    transition: ease-in;
    color: var(--themeColor);
    transition-duration: 0.5s;
    background-color: var(--white);
}

.footer-social-link ul li:last-child {
    margin: 0 !important;
}

.footer-logo-row {
    padding: 50px 40px;
    border-bottom: 1px solid #363636;
}

.footer-logo a img {
    height: 55px;
    width: fit-content;
    object-fit: contain;
}

.footer-number a {
    width: 100%;
    text-align: end;
    font-size: 40px;
    font-weight: 600;
    transition: 0.5s;
    color: var(--white);
}

.copy-right-row {
    position: relative;
    padding: 20px 0px 20px 35px;
    border-top: 1px solid #363636;
    margin-left: -12px;
}

.copy-right-row::before {
    top: -1px;
    left: 100%;
    height: 1px;
    content: '';
    width: 100vw;
    position: absolute;
    background-color: #363636;
}

.footer-newsletter-row {
    padding: 30px 50px 50px;
}

.footer-newsletter-row h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Poppins';
}

.footer-newsletter-row input {
    width: 100%;
    height: 57px;
    border: none;
    padding: 0 20px;
    border-radius: 50px;
    color: var(--white);
    background: #222222;
}

.footer-newsletter-row input::placeholder {
    border-radius: 8px;

    color: #fff;
}

.footer-newsletter-row form {
    width: 95%;
}

.footer-newsletter-row form {
    position: relative;
}

.footer-newsletter-row form {
    display: flex;

    align-items: center;
}

.footer-newsletter-btn {
    position: absolute;

    right: 0;
}

.footer-newsletter-btn button {
    border: none;
    letter-spacing: 2px;
}

.footer-copy-right-row {
    padding: 25px 20px;
}

.footer-copy-right-row p {
    color: #ffffff;

    font-size: 14px;
}

.footer-quick-links-box {
    width: 80%;
    height: 100%;
    padding-left: 40px;
    padding-top: 100px;
    border-left: 1px solid #363636;
}

.copy-right-row p {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.copy-right-images {
    text-align: center;
}

.footer-quick-links-box h2 {
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 25px;
    font-family: 'Poppins';
}

.footer-quick-links-box ul {
    column-count: 2;
}

.footer-quick-links-box ul {
    line-height: 40px;
}

.footer-quick-links-box ul li a {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
}

/* Footer Ends */



/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/