

:root {
    --primary-color: #000000;
    --secondary-color: #1f4d3a;
    --bg-color: #FAF7F2;
    --white-color: #ffffff;
    --black-color: #000;
    --footer-bg: #000000;
    --transition: all .3s ease-in-out;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body,
html {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0;
    overflow-x: auto;
    color: var(--black-color);
}
.container {
    padding-left: 60px;
    padding-right: 60px;
}
p {
    margin-top: 0;
    margin-bottom: 10px
}
h1, h2, h3, h4 {
    font-family: "Playfair", serif;
}
h5, h6 {
    font-family: "Montserrat", sans-serif;
}
a,
body,
button,
html,
p {
    color: var(--black-color)
}
body,
html,
ul {
    margin: 0;
    padding: 0
}
.pagination li a,
a,
a:focus,
a:hover,
button {
    text-decoration: none
}
p:last-child {
    margin-bottom: 0
}
a,
button {
    cursor: pointer;
    transition: var(--transition)
}
a,
button,
img,
input,
textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition)
}
:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    outline: 0
}

a:hover {
    color: inherit
}

img {
    max-width: 100%;
    height: auto
}
.container-fluid {
    padding: 0 145px
}
@media screen and (min-width:1024px) and (max-width:1600px) {
    .container-fluid {
        padding: 0 50px
    }
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}
b, strong {
    font-weight: 600;
}
li {
    list-style: disc;
    margin-left: 18px;
}
ul {
    margin-bottom: 10px;
}
.section-margin {
    margin: 60px 0
}
.margin-top {
    margin-top: 60px
}
.margin-bottom {
    margin-top: 60px
}
.section-padding {
    padding: 60px 0
}
.pad-top {
    padding-top: 60px
}
.pad-bottom {
    padding-bottom: 60px
}
.pad-half-top {
    padding-top: 40px
}
.pad-half-bottom {
    padding-bottom: 40px
}
/*------------------- section heading start ------------------------*/
.section-heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}
.section-heading {
    margin-bottom: 20px
}
.text-primary {
    color: var(--secondary-color) !important;
}
.main-head {
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 10px;
    font-weight: 700;
}
.main-head.normal-font {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}
.main-title {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-color);
}
.main-title-2 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-color);
    position: relative;
}
.section-heading-center .main-head {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
}
.section-heading.section-heading-center {
    margin-bottom: 20px
}
/*--------- section heading end ---------*/


/*--------- button start ---------*/
.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px
}
.main-btn {
    width: fit-content;
    line-height: normal;
    height: 40px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    text-transform: uppercase;
}

.btn-1 {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-1:hover {
    color: var(--white-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-2 {
    color: var(--white-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-2:hover{
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-3 {
    color: var(--secondary-color);
    background: transparent;
    border-color: var(--secondary-color);
}
.btn-3:hover{
    color: var(--white-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-white {
    color: var(--primary-color);
    background: var(--white-color);
    border-color: var(--white-color);
}
.btn-white:hover{
    color: var(--white-color);
    background: transparent;
    border-color: var(--white-color);
}
.main-btn i {
    padding-left: 5px;
}

.hover-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    transition: width .3s
}
.hover-link:hover::after {
    width: 0;
    transition: width .3s
}
button.hover-link {
    border: 0;
    background: 0;
    text-transform: uppercase;
    font-weight: 600;
}
.bg-color {
    background: var(--bg-color)
}
.primary-color {
    background: var(--primary-color)
}
.secondary-color {
    background: var(--secondary-color)
}
/*--------- button end ---------*/

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 20px;
}
.main-logo {
    width: auto;
    height: 60px;
    margin-bottom:5px;
}
.second-logo {
    width: auto;
    height: 100px;
}



/*---------- banner start ---------*/
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
/*.banner:before {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0 0 0) 50%, rgba(0, 0, 0, 1) 100%) !important;
    content: "";
    left: 0;
}*/
.banner .image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}
.callbacks_tabs {
    display: none;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    z-index: 11;
    width: 100%;
    gap: 5px;
}
.banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.banner-content .container, .banner-content .container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
.top-text .main-head {
    font-size: 70px;
    line-height: 70px;
    width: 50%;
    margin-bottom: 10px;
}
.top-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.top-text p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    width: 50%;
}
.banner-all-btn {
    gap: 10px;
    display: flex;
}
/*---------- banner end ---------*/


/*---------- grid start ---------*/
.grid-section {
    width: 100%;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0px, 1fr));
}
.grid-content .main-head {
    font-size: 16px !important;
        text-transform: uppercase;
    line-height: 24px !important;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}
.grid-content {
    padding: 20px;
    background: var(--bg-color);
    text-align: center;
}
.grid-content p {
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.grid-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
/*---------- grid end ---------*/



/*---------- Footer Section Start ----------*/
.footer-section {
    position: relative;
    background: var(--black-color);
}
.item-space {
    padding-left: 50px;
}
.footer-item, .footer-bottom {
    z-index: 1;
}
.footer-title {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}
.footer-bottom p, .footer-widget a, .footer-widget p {
    color: #fff;
    margin-bottom: 0;
}
.footer-widget-menu li {
    list-style: none;
    margin-left: 0;
}
.footer-social-inline {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 0;
    margin-bottom: 0;
}
.footer-social-list-icon {
    margin-bottom: 0 !important;
}
.footer-widget a {
    width: fit-content;
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.footer-widget a:hover {
    color: #fff;
}
.footer-social-inline li {
    list-style: none;
    margin-left: 0;
}
.footer-logo img {
    width: 250px;
    margin-bottom: 15px;
}
.footer-social-list-icon i {
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    background: #fff;
    color: var(--black-color);
    line-height: 30px;
    text-align: center;
    margin: 0;
    border-radius: 50%;
    font-size: 14px;
    display: inline-block;
    transition: var(--transition);
}
.footer-social-list-icon:hover i {
    background: var(--black-color);
    color: #ffffff;
}
.contact-info i {
    font-size: 20px;
    margin-right: 10px;
    position: relative;
    top: 2px;
}
.extra-link a {
    color: #ffffff;
}
.extra-link a:hover {
    color: var(--secondary-color);
}
.extra-link {
    display: flex;
    gap: 20px;
}
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #fff;
    margin-top: 30px;
    position: relative;
}
/*---------- Footer Section End ----------*/


/*------- breadcrumbs section start -------*/
.main-breadcrumbs {
    padding: 10px 0;
    background: var(--bg-color);
}
.main-breadcrumbs ul li,.main-breadcrumbs ul li a {
    font-size: 14px
}
.main-breadcrumbs ul li {
    padding: 0 10px;
    position: relative;
    list-style: none;
    margin-left: 0;
}
.main-breadcrumbs ul li:before {
    /*content: "»";*/
    content: "|";
    color: #b7b7b7;
    font-size: 16px;
    left: -3px;
    top: -1px;
    position: absolute;
}
.main-breadcrumbs ul li:first-child:before {
    content: "|";
    display: none;
}
.main-breadcrumbs ul li:first-child {
    padding-left:0;
}
/*------- breadcrumbs section end -------*/



.why-choose-item {
    display: flex;
    width: 100%;
    gap: 50px;
    align-items: center;
}
.why-choose-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.why-choose-img {
    width: 50%;
}
.why-choose-content {
    width: 50%;
}
.benefit-section {
    width: 100%;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    position: relative;
    z-index: 11;
    bottom: 95px;
}
.benefit-item .benefit-img {
    width: 55px;
}
.benefit-item {
    display: flex;
    gap: 5px;
    align-items: center;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
}
.benefit-item:before {
    content: "";
    background: var(--secondary-color);
    width: 1px;
    height: 100%;
    right: 0;
    position: absolute;
}
.benefit-item:last-child:before {
    display: none;
}
.benefit-item img {
    height: 36px;
}
.benefit-item h5 {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.grid-img-icon {
    position: absolute;
    width: 54px;
    height: 54px;
    left: 50%;
    transform: translate(-50%, 0px);
    top: -25px;
    border-radius: 50%;
    padding: 10px;
}
.grid-item:nth-child(odd) .grid-img-icon {
    background: var(--secondary-color);
}
.grid-item:nth-child(even) .grid-img-icon {
    background: #835836;
}
.magazin-section {
    background: #F1EAE0;
    padding: 20px;
    border-radius: 10px;
}
.magazin-box-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    width: fit-content;
}
.magazin-box-item img {
    height: 24px;
}
.magazin-box-item h5 {
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 0;
}
.magazin-main-img {
    position: relative;
    margin-top: -30px;
    padding-right: 30px;
    padding-bottom: 30px;
}
.promo-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    background: #f1eae0;
}
.promo-section .main-head {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: 700;
}
.promo-section img {
    height: 100px;
}




.header-social-list-icon i {
    width: 30px;
    height: 30px;
    border: 0px solid #fff;
    background: transparent;
    color: var(--black-color);
    line-height: 30px;
    text-align: center;
    margin: 0;
    border-radius: 50%;
    font-size: 20px;
    display: inline-block;
    transition: var(--transition);
}
.header-social-list-icon:hover i {
    background: var(--black-color);
    color: #ffffff;
}
.header-social-inline {
    display: flex;
    align-items: center;
    column-gap: 10px;
    position: absolute;
    right: 15px;
    top: 15px;
}
.header-social-list-icon {
    margin-bottom: 0 !important;
}
.header-social-inline li {
    list-style: none;
    margin-left: 0;
}


.benefit-section-2 {
    width: 100%;
    gap: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    margin-top: 60px;
}
.benefit-item-2 .benefit-img {
    width: 55px;
}
.benefit-item-2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}
.benefit-item-2:first-child {
    padding-right: 20px;
    padding-left: 0;
}
.benefit-item-2:before {
    content: "";
    background: var(--secondary-color);
    width: 1px;
    height: 100%;
    right: 0;
    position: absolute;
}
.benefit-item-2:last-child:before {
    display: none;
}
.benefit-item-2 img {
    height:42px;
    margin-bottom: 15px;
}
.benefit-item-2 h5 {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.magazin-grid-section {
    width: 100%;
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}
.publis-date {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}
.publis-date p {
    font-size: 16px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}
.publis-date p:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 15px;
    background: #000000;
    right: 0;
    top: 3px;
}
.publis-date p:last-child:before {
    display: none;
}
.magazin-grid-img img {
    width: 100%;
    height: auto;
}
.magazin-grid-content {
    background: var(--bg-color);
    padding: 20px;
    border: 1px solid #eee;
}
.magazin-grid-content .main-btn {
    width: 100%;
    justify-content: space-between;
}
.magazin-view-img {
    width: 80px;
    height: 80px;
    background: #f3ede3;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.magazin-view-all-card .main-head {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 10px;
}
.magazin-view-all-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: var(--bg-color);
    padding: 40px;
}

.why-icon-grid {
    width: 100%;
    display: flex;
}
.why-icon-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-right: 50px;
    padding-left: 0;
    position: relative;
}
.why-icon-item:before {
    content: "";
    background: var(--secondary-color);
    width: 1px;
    height: 100%;
    left: -30px;
    position: absolute;
}
.why-icon-item:first-child:before {
    display: none;
}
.why-icon-item .why-icon {
    width: 75px;
    height: 75px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.why-icon-item .why-icon img {
    height: 40px;
}
.why-icon-item p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}
.why-text {
    width: calc(100% - 90px);
}
.info-box{
    background:#fff;
    border-radius:10px;
    padding:25px;
    margin-top:30px;
    border:1px solid #ececec;
}

.info-box .main-head {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-item{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #f0f0f0;
}

.info-item:last-child{
    border-bottom:none;
}

.details-image {
    box-shadow: 0 0 5px 0 #0000004d;
}


.benefit-section-3 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    margin-top: 45px;
    width: 85%;
    gap: 15px;
}
.benefit-item-3 p {
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 20px;
}
.benefit-item-3 .benefit-img {
    width: 55px;
}
.benefit-item-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: #fff;
    text-align: center;
    padding: 20px;
}
.benefit-item-3:last-child:before {
    display: none;
}
.benefit-item-3 img {
    height:42px;
    margin-bottom: 15px;
}
.benefit-item-3 h5 {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.tag {
    letter-spacing: 1px;
    color: #6b6b6b;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.language-list li {
    list-style: none;
    margin-left: 0;
}

/*---------- grid start ---------*/
.grid-card {
    width: 100%;
    gap: 20px;
    display: grid;
}
.grid-columns-2 {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.grid-columns-3 {
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.grid-columns-4 {
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}
.grid-columns-5 {
    grid-template-columns: repeat(5, minmax(0px, 1fr));
}
.grid-card-content .main-head {
    font-size: 16px !important;
    line-height: 24px !important;
        text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}
.grid-card-content {
    padding: 20px;
    background: var(--bg-color);
    text-align: center;
}
.grid-card-content p {
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.grid-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
/*---------- grid end ---------*/

.topic-learn-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}
.topic-learn-item span {
    background: #F1EAE0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: var(--secondary-color);
    font-weight: 500;
}
.topic-learn-item p {
    color: var(--secondary-color);
    font-weight: 500;
}
.topic-checklist {
    background: #F1EAE0;
    padding: 20px;
    border-radius: 10px;
}
.topic-article-img img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}
article {
    margin-bottom: 15px;
}


.faq-accordion .accordion-item{
    border: 1px solid #f3efe9;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 10px;
}
.faq-accordion .accordion-button {
    color: #000000;
    border: 1px solid #f3efe9;
    background: var(--bg-color);
    padding: 15px;
    box-shadow: none !important;
    border: none;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    position: relative;
}
.faq-accordion .accordion-button:not(.collapsed){
    background:var(--bg-color);
}

.faq-accordion .accordion-button:focus{
    box-shadow:none;
}

.faq-accordion .accordion-body{
    padding: 0 15px 15px;
    background: var(--bg-color);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    background-image: url(../images/icon/down-arrow.png);
}
.accordion-button::after {
    transform: rotate(0deg);
    background-image: url(../images/icon/down-arrow.png);
}

.article-body li {
    margin-bottom: 10px;
}
.article-body .main-head {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 700;
}
.article-hero-image img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}
.magazin-grid-item .main-head {
    font-size: 16px !important;
    line-height: 24px !important;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}







