/* common css ******************************************************************************/
:root {
    --white: #fff;
    --black: #000;
    --blue:#0C436C;
    --rose-white:#F8F7F2;
    --Charcoal: #333;
    --yellow:#FFCE00;
}
.white {
    color: var(--white);
}
.black {
    color: var(--black);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*::before,
*::after {
    box-sizing: border-box;
}
.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/Playfair_Display/PlayfairDisplay-Regular.eot');
    src: url('../fonts/Playfair_Display/PlayfairDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Playfair_Display/PlayfairDisplay-Regular.woff2') format('woff2'),
        url('../fonts/Playfair_Display/PlayfairDisplay-Regular.woff') format('woff'),
        url('../fonts/Playfair_Display/PlayfairDisplay-Regular.ttf') format('truetype'),
        url('../fonts/Playfair_Display/PlayfairDisplay-Regular.svg#PlayfairDisplay-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/Playfair_Display/PlayfairDisplay-Medium.eot');
    src: url('../fonts/Playfair_Display/PlayfairDisplay-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Playfair_Display/PlayfairDisplay-Medium.woff2') format('woff2'),
        url('../fonts/Playfair_Display/PlayfairDisplay-Medium.woff') format('woff'),
        url('../fonts/Playfair_Display/PlayfairDisplay-Medium.ttf') format('truetype'),
        url('../fonts/Playfair_Display/PlayfairDisplay-Medium.svg#PlayfairDisplay-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BlissMedium';
    src: url('../fonts/BlissMedium/BlissMedium.eot');
    src: url('../fonts/BlissMedium/BlissMedium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BlissMedium/BlissMedium.woff2') format('woff2'),
        url('../fonts/BlissMedium/BlissMedium.woff') format('woff'),
        url('../fonts/BlissMedium/BlissMedium.ttf') format('truetype'),
        url('../fonts/BlissMedium/BlissMedium.svg#BlissMedium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    background: var(--rose-white);
    font-family: 'Playfair Display';
    font-weight: normal;
    color: var(--Charcoal);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}
h1 {
    font-size: 60px;
}
h2 {
    font-size: 50px;
    color: var(--blue);
    font-weight: 500;
}
h3 {
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 2px;
}
h4 {
    font-size: 28px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 20px;
}
p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--black);
}
p:last-child {
    margin-bottom: 0;
    color: var(--Charcoal);
}
.small {
    font-size: 16px;
}
ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}
span {
    display: inline-block;
}
.section-heading {
	text-align: center;
	margin-bottom: 50px;
}
.btn-common {
	font-size: 20px;
	padding: 12px 40px;
	background: var(--blue);
	color: #cbccd0 !important;
	border-radius: 40px;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.btn-common img {
    max-width: 30px;
    margin-right: 10px;
}
section {
	padding-bottom: 100px;
	overflow: hidden;
}
.bg {
    padding: 100px 0;
}
.mobile {
    display: none !important;
}
.desktop {
    display: block !important;
}
img,
video {
    max-width: 100%;
}
.button-box {
	padding-top: 20px;
}
.button-box ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.owl-theme .owl-dots .owl-dot span {
    background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    outline: 2px solid var(--white);
    outline-offset: 3px;
}
.owl-nav {
    margin-top: 0;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.owl-nav button.owl-prev {
    left: 0;
}
.owl-nav button.owl-next {
    right: 0;
}
.form-control-common {
	background: var(--white);
	border: 1px solid var(--black);
	font-size: 20px;
	padding: 15px 50px 15px 20px;
	width: 100%;
	appearance: textfield;
	color: var(--black);
	border-radius: 0;
	box-shadow: none;
	resize: none;
    outline: none;
}
.input-group {
	padding-bottom: 30px;
}
input[type="email"] {
    text-transform: lowercase !important;
}

input[type="email"]::placeholder {
    text-transform: capitalize !important;
}

/* header css start ******************************************************************************/
#header {
	padding: 80px 0;
	transition: .5s all;
    position: absolute;
    width: 100%;
}
#header .header-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
#header .logo-box img {
    max-width: 220px;
    width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: .5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}
#header .main-nav .cancel-menu span {
    position: absolute;
    height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
    transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
    transform: rotate(-45deg);
}
#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}
#header .button-box {
	margin-left: 20px;
	padding-top: 0;
}
#header .main-nav nav ul li {
	display: inline-block;
	position: relative;
	margin-right: 20px;
}
#header .main-nav nav ul li a {
	color: var(--white);
	padding: 5px;
	font-size: 18px;
}

/* homeBanner css ******************************************************************************/
#homeBanner .homeBanner-part {
    background: url("../images/bannerBg.png") no-repeat;
    background-size: cover;
    background-position: bottom;
    min-height: 1200px;
    text-align: center;
    padding-top: 200px;
}
.homeBanner-box h1 {
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
}
.homeBanner-box p{
    color: var(--white);
    font-family: 'BlissMedium';
}


/* why-choose-us-section css ******************************************************************************/
.why-choose-us-section{
    position: relative;
}
.why-choose-wrapper {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    width: 100%;
}
.why-choose-us-section .why-choose-block-heading h3{
    margin-bottom: 10px;
}
.why-choose-block {
    position: relative;
    padding: 40px;
}
.dot-line {
    position: absolute;
    top: 0;
    left: 50%;
    height: 20px;
    width: 20px;
    background-color: var(--blue);
    border-radius: 50%;
}
.why-choose-block::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    height: 1px;
    background-color: #707070;
    z-index: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0, -50%);
    width: 100%;
}
.col-md-4:last-child .why-choose-block::before{
    content: none;
}
.col-md-4:nth-child(2) .why-choose-block .dot-line {
    left: 50%;
}
.why-choose-block-text {
    max-width: 250px;
    width: 100%;
    margin: 0 auto 20px;
}

/* imgs-section css ******************************************************************************/
.imgs-section{
    position: relative;
}
.imgs-section .img-block img {
    width: 100%;
    height: 335px;
    object-fit: cover;
}
.imgs-section .img-block {
    margin-bottom: 20px;
}
.imgs-section .mid-img .img-block img {
    height: 690px;
}
.imgs-section .bottom-box p {
    line-height: 40px;
    margin-bottom: 10px;
}
.imgs-section .bottom-box {
    padding-top: 50px;
}
.imgs-section .bottom-text-section {
    max-width: 80%;
    margin: 0 auto;
    width: 100%;
}
.star-small-img {
    position: absolute;
    left: 50px;
}
.star-bottom-img {
    position: absolute;
    right: 50px;
    bottom: -100px;
}
.star-small-img-right {
    position: absolute;
    right: 10%;
    margin-top: -60px;
}
.star-big-img {
    position: absolute;
    right: -80px;
}
.star-big-img img {
    max-width: 250px;
    width: 100%;
}

/* two-col-img-content-section css ******************************************************************************/
.two-col-img-content-section{
    background-color: var(--blue);
    padding-bottom: 0;
}
.two-col-img-content-section .left-col-text-block h3 {
    color: var(--white);
    text-transform: inherit;
    letter-spacing: 0;
}
.two-col-img-content-section .left-col-text-block h3 span{
    color: var(--yellow);
}
.two-col-img-content-section .left-col-text-block {
    border-bottom: 1px solid var(--white);
    padding: 30px 0;
}
.two-col-img-content-section .left-col-text-block:last-child{
    border-bottom:0;
}
.two-col-img-content-section .left-col-text-content {
    padding-left: 150px;
}
.two-col-img-content-section .right-img-block img {
    height: 530px;
    object-fit: cover;
    width: 100%;
}


/* footer css ******************************************************************************/

.footer-box  .btn-common {
    font-size: 40px;
    padding: 10px 80px;
    animation: bounce 2s infinite;
    text-transform: uppercase;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-12px);
    }
    60% {
      transform: translateY(-6px);
    }
}