:root {
    --white: #fff;
    --black: #000;
    --theme-color: #1b75bb;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

section {
    padding: 6rem 0;
    position: relative;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1440px;
    }
}

p {
    font-size: 1rem;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #828282;
    line-height: 1.875;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Poppins", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

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

.navbar-brand img {
    max-height: 150px;
    transition: 0.3s ease-in-out;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    top: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
}

header.sticky {
    position: fixed;
    padding: 0.5rem 0;
    background-color: #808083;
}

header.sticky .navbar-brand img {
    max-width: 150px;
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--theme-color);
    transform-origin: center;
    transform: scaleX(0);
}

header.sticky .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
}

header.sticky .navbar-nav .nav-item .nav-link::after {
    background-color: var(--white);
}

header.sticky .themeBtn {
    border: 1px solid var(--white);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.form-inline {
    margin-left: 2rem;
    gap: 2rem;
}

.openSearch {
    color: var(--white);
    font-size: 1.125rem;
}

.openSearch:hover {
    color: var(--theme-color);
}

.main-slider {
    position: relative;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider h2 {
    font-size: 2.25rem;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0;
}

.main-slider h3 {
    font-size: 6.25rem;
    font-family: "PlayfairDisplay";
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.main-slider h3 span {
    font-size: 2.25rem;
}

.main-slider p {
    color: var(--white);
}

.main-slider .carousel-item :is(h2, h3, p, a) {
    position: relative;
    left: -25rem;
    opacity: 0;
    transition: opacity, linear all 0.4s;
}

.main-slider .active :is(h2, h3, p, a) {
    opacity: 1;
    left: 0;
}

.main-slider h3 {
    transition: opacity, linear all 0.7s;
}

.main-slider p {
    transition: opacity, linear all 1s;
}

.main-slider a {
    transition: opacity, linear all 1.3s;
}

.main-slider .carousel-indicators {
    margin: 0;
    bottom: 5rem;
    gap: 1rem;
}

.main-slider .carousel-indicators li {
    flex: unset;
    height: 14px;
    opacity: 1;
    position: relative;
    width: 14px;
    border-radius: 50%;
    margin: 0;
}

.main-slider .carousel-indicators li::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid transparent;
    width: 22px;
}

.main-slider .carousel-indicators li.active::before {
    border-color: var(--white);
}


/* ThemeBtn Style */

.themeBtn {
    display: inline-block;
    padding: 0.5em 1em;
    color: var(--white);
    text-decoration: none;
    position: relative;
    background: var(--theme-color);
    text-align: center;
    font-size: 1.125rem;
    text-transform: uppercase;
    transition: color 0.1s linear 0.05s;
}

.themeBtn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    z-index: 1;
    opacity: 0;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}

.themeBtn::after {
    transition: border 0.1s linear 0.05s;
}

.themeBtn .btn-inner {
    position: relative;
    z-index: 2;
}

.themeBtn:hover {
    color: var(--theme-color);
    transition: color 0.1s linear 0s;
}

.themeBtn:hover::before {
    top: 0;
    height: 100%;
    opacity: 1;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}

.themeBtn:hover::after {
    border-color: var(--white);
    transition: border 0.1s linear 0s;
}


/* ThemeBtn Style */

.secHeading {
    font-size: 5.3125rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1;
    position: relative;
    font-family: "Playfair Display", serif;
}

.secHeading span {
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    color: var(--black);
    line-height: 1;
    text-transform: capitalize;
    display: block;
}

.socialIo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.socialIo li a {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    line-height: 44px;
    font-size: 18px;
    display: inline-block;
    color: var(--black);
    border: 1px solid var(--black);
}

.socialIo li a:hover {
    background-color: var(--black);
    color: var(--white);
}


/* Search Box */

.searchBox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1111;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 50%);
}

.searchBox .form-group {
    width: 100%;
    max-width: 50%;
    margin: 0 auto;
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.searchBox input {
    min-height: 60px;
    width: 100%;
    border: none;
    padding: 1rem;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.searchBox button {
    background: #fff;
    color: #000;
    width: 60px;
    min-height: 60px;
    border: none;
}

.searchBox .searchClose {
    position: absolute;
    display: block;
    right: 2rem;
    top: 2rem;
    color: #fff;
    font-size: 2.15rem;
    cursor: pointer;
}


/* aboutSec */

.aboutSec {
    padding: 0;
    background-color: #f5f5f5;
}


/* exploreSec */

.exploreSec {
    overflow-x: hidden;
    padding: 4rem 0;
}

.exploreSec .secHeading {
    font-size: 3.125rem;
    margin-top: 4rem;
}

.exploreHeading {
    text-align: center;
    margin-bottom: 5rem;
}

.exploreSec .row+.row {
    margin-top: 10rem;
}

.exploreSec figure {
    z-index: 1;
    position: relative;
}

.exploreSec figure::before {
    content: "";
    background-color: rgb(245, 245, 245);
    position: absolute;
    left: -18rem;
    top: -5rem;
    z-index: -1;
    width: 100%;
    max-width: 772px;
    height: 100%;
    max-height: 350px;
}

.exploreSec .flex-row-reverse figure::before {
    left: auto;
    right: -18rem;
}

.exploreSec .flex-row-reverse .thumbImg {
    margin: -15rem auto 0 -75%;
}

.exploreSec .thumbImg {
    margin: -15rem -75% 0 auto;
    display: block;
}

.newsLtrSec {
    background: url(../images/subsBg.jpg) center/cover no-repeat;
    padding: 8rem 0;
}

.newsLtrSec .secHeading {
    font-size: 4.375rem;
    color: var(--white);
    line-height: 1;
    text-align: center;
}

.newsLtrSec p {
    text-align: center;
    color: var(--white);
}

.newsLtrSec .form-group .form-control {
    border-radius: 0;
    background-color: var(--white);
    height: 66px;
}

.newsLtrSec .form-group button {
    width: 100%;
    background-color: var(--theme-color);
    border: 0;
    height: 66px;
}

.newsLtrSec .form-group button:hover {
    background-color: var(--theme-color);
    color: var(--theme-color);
}


/* video Section */

.videoCard {
    display: block;
    position: relative;
}

.videoCard .content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1rem 0 2rem 5rem;
    display: flex;
    align-items: flex-end;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    height: 100%;
    max-height: 280px;
}

.videoCard img.playBtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s ease-in-out;
}

.videoCard .content h3 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 0.8;
    transition: 0.5s ease-in-out;
    transform-origin: bottom;
    transform: scaleY(0);
}

.videoCard:hover img.playBtn {
    transform: translate(-50%, -50%) rotate(360deg);
}

.videoCard:hover .content h3 {
    transform: scaleY(1);
}

.videoCard .content h3:hover {
    color: var(--theme-color);
}

.videoSlider .slick-arrow::before {
    content: "";
    display: none;
}

.videoSlider .slick-next,
.videoSlider .slick-prev {
    color: var(--white);
    top: auto;
    bottom: -6rem;
    width: 200px;
    height: 100px;
    z-index: 1;
    display: grid;
    place-items: center;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 2px;
    background-color: var(--theme-color);
}

.videoSlider .slick-next {
    right: 5rem;
}

.videoSlider .slick-prev {
    right: calc(5rem + 200px);
    left: auto;
}

.blogCard {
    border-radius: 10px;
    padding: 2rem 2rem 0;
    background-color: var(--white);
    box-shadow: 0px 8px 53.1px 5.9px rgba(200, 200, 200, 0.31);
}

.blogCard img {
    border-radius: 10px;
}

.blogCard .content {
    padding-top: 2rem;
}

.blogCard .content>span {
    font-size: 16px;
    font-weight: 400;
    color: rgb(94, 94, 94);
    line-height: 1;
}

.blogCard h3 {
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1;
    margin: 0.5rem 0;
}

.blogCard .themeBtn {
    transform: translateY(1.5rem);
    border: 1px solid var(--theme-color);
}


/* Begin: Instagram */

.instaSec {
    position: relative;
}

.instaCard {
    position: relative;
}

.instaCard .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    transform-origin: center;
    transform: scale(0);
    background-color: rgba(9, 31, 69, 0.3);
}

.instaCard a {
    font-size: 4rem;
    color: var(--white);
}

.instaCard:hover .content {
    transform: scale(1);
}


/* END: Instagram */


/* Begin: footer */

footer {
    background-color: #808083;;
    padding-top: 6em;
    position: relative;
}

footer p {
    color: var(--white);
    font-size: 15px;
    margin: 1.5rem 0 0;
}

footer .links,
footer .contInfo {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 1.3rem 0;
}

footer .contInfo {
    gap: 2rem 0;
}

footer .links li a,
footer .contInfo li a {
    font-weight: 400;
    color: var(--white);
    font-size: 1rem;
}

footer .contInfo li a {
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 0 1rem;
    line-height: 1.5;
}

footer .contInfo li a span {
    display: block;
    text-transform: none;
}

footer .contInfo li a strong {
    text-transform: uppercase;
    font-weight: 500;
}

footer .links li a:hover,
footer .links li a:focus {
    color: var(--theme-color);
}

.copyRight {
    border-top: 1px solid #707070;
    padding: 2em 0;
    margin-top: 5em;
    align-items: center;
}

.copyRight p {
    margin: 0;
}

.copyRight .footerSocial {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 6px;
}

.copyRight .footerSocial a {
    font-size: 1rem;
    color: #757c85;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--white);
    width: 50px;
    height: 50px;
}

.copyRight .footerSocial a:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.copyRight .links {
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
}

.copyRight .links li a {
    color: var(--white);
    font-size: 1rem;
    padding: 0 1rem;
}

.copyRight .links li+li {
    border-left: 1px solid var(--white);
}

.roleback {
    border: 2px solid var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1rem;
    color: var(--white);
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 2rem;
    z-index: 1;
    right: 3rem;
}

.roleback:hover {
    background-color: var(--theme-color);
    color: var(--white);
}


/* END: footer */


/* Inner pages Css */

.aboutSec.aboutInner {
    background-color: var(--white);
    padding: 6rem 0;
}

.aboutSec.aboutInner figure {
    margin-right: -3rem;
}

.aboutSec.aboutInner .content {
    background-color: #f5f5f5;
    padding: 3rem;
    position: relative;
    z-index: 1;
    margin-right: -8rem;
}

.exploreSec.exploreInner figure::before {
    left: -18rem;
    top: -5rem;
    bottom: -8rem;
    height: calc(100% + 8rem);
    max-height: calc(100% + 8rem);
}

.exploreSec.exploreInner .flex-row-reverse figure::before {
    left: auto;
    right: -18rem;
}

.exploreSec.exploreInner .flex-row-reverse .thumbImg {
    margin: -15rem -50% 0 auto;
}

.exploreSec.exploreInner .thumbImg {
    margin: -15rem auto 0 -50%;
    display: block;
}

.videoSection.videoInner .videoCard {
    margin-bottom: 1.5rem;
}

.blogSection.blogInnerSec .blogCard {
    margin-bottom: 5rem;
}


/* Contact Section */

.contactSec {
    background: url(../images/contactBg.jpg) center/cover no-repeat;
    padding: 8rem 0;
}

.contactSec .title span {
    font-size: 1rem;
    display: block;
    font-weight: 500;
    color: var(--theme-color);
}

.contactSec .title .line {
    height: 150px;
    margin-bottom: 1rem;
    width: 3px;
    background-color: var(--theme-color);
    display: inline-block;
    /* writing-mode: vertical-lr; */
}

.contactSec .secHeading {
    font-size: 5rem;
}

.contactSec .title p {
    font-size: 1rem;
    color: #6c7f89;
    line-height: 1.7;
}

.contactSec figure img {
    box-shadow: 0px 22px 79px 0px rgba(77, 77, 77, 0.46);
}

.contactSec form {
    width: 90%;
}

.contactSec .form-group label {
    display: block;
    font-size: 16px;
    color: #708196;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.contactSec .form-control {
    border-width: 2.5px;
    border-color: rgb(204, 204, 204);
    border-style: solid;
    background-color: rgb(255, 255, 255);
    height: 60px;
}

.contactSec textarea.form-control {
    height: 125px;
}

.contactSec .form-check label {
    font-size: 12px;
    color: #5f6d7e;
    line-height: 1.667;
}

.contactSec .themeBtn {
    margin-top: 1.5rem;
    width: 200px;
    padding: 0.75em;
    border: 1px solid var(--theme-color);
}

.contactSec::before {
    content: "";
    background-color: var(--theme-color);
    position: absolute;
    right: 0;
    top: 0;
    width: 549px;
    height: 450px;
}

.contactInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    color: var(--black);
}

.contactInfo strong {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.contactInfo span {
    font-size: 1.25rem;
    font-weight: 400;
}

.contactInfo:hover {
    color: var(--black);
}

footer h3 {
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1rem;
}