@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.woff2') format('woff2'),
         url('../fonts/Manrope-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.woff2') format('woff2'),
         url('../fonts/Manrope-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-SemiBold.woff2') format('woff2'),
         url('../fonts/Manrope-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.woff2') format('woff2'),
         url('../fonts/Manrope-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

*
{
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}
::selection{
    color: var(--white);
    background-color: var(--darkbrown);
}
h1, h2, h3, h4, h5, h6, p
{
    margin: 0;
    padding: 0;
}
ul, ol, li
{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
img
{
    max-width: 100%;
    height: auto;
}
a, a:hover, a:focus
{
    text-decoration: none;
    border: 0;
    outline: 0;
}
input, select, button, textarea
{
    border: 0;
    outline: 0;
    background: transparent;
}
:root
{
    /*color*/
	--black: #000000;
	--white: #ffffff;
    --lightbrown: #CCBAAC;
    --darkbrown: #9F7D61;
	--cream: #F7EDE1;
	--darkcream: #E2D5C5;
	--blue: #393F4D;
	--lightvoilet: #F0F4FD;

    /*transition*/
	--transition: 0.5s all ease-in-out;

    /*fonts*/
	--manrope: "Manrope";

    /*font sizes*/
    /* --size-16: 16px;
    --size-18: 18px;
    --size-20: 20px;
    --size-21: 21px;
    --size-24: 24px;
    --size-26: 26px;
    --size-28: 28px;
    --size-32: 32px;
    --size-40: 40px;
    --size-48: 48px;
    --size-58: 58px;
	--size-65: 65px;
    --size-76: 76px; */

    --size-16: clamp(14px, 1vw, 16px);
    --size-18: clamp(15px, 1vw, 18px);
    --size-20: clamp(16px, 1vw, 20px);
    --size-21: clamp(17px, 1vw, 21px);
    --size-24: clamp(18px, 1.6vw, 24px);
    --size-26: clamp(19px, 1.6vw, 26px);
    --size-28: clamp(20px, 1.8vw, 28px);
    --size-32: clamp(22px, 2vw, 32px);
    --size-40: clamp(25px, 3vw, 40px);
    --size-48: clamp(30px, 3.5vw, 48px);
    --size-58: clamp(32px, 4.2vw, 58px);
    --size-65: clamp(35px, 5vw, 65px);
    --size-76: clamp(40px, 5.5vw, 70px);
    
}
body
{
    font-size: var(--size-21);
    line-height: 28px;
    font-weight: normal;
    color: var(--black);
    font-family: var(--manrope);
}
.container
{
    max-width: 1700px;
}
.contentsection
{
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}
.button
{
    width: auto;
    font-size: var(--size-21);
    font-weight: 500;
    color: var(--black);
    background: var(--lightbrown);
    border-radius: 50px;
    text-transform: capitalize;
    /* line-height: 60px;
    padding: 0 30px; */
    padding: 15px 45px;
    display: inline-block;
    transition: var(--transition);
}
.button:hover
{
    background: var(--black);
    color: var(--white);
}
.headersec
{
    background: transparent !important;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    padding: 25px 0;
}
.navbar-brand
{
    padding: 0;
}
/* .navnbutarea
{
    justify-content: flex-end;
    gap: 40px;
} */

.menus-wrapper{
    gap: 40px;
    display: flex;
    align-items: center;
}
.mobile-logo{
    display: none;
}
.humburgerIcon{
    width: 30px;
}
.closeIcon{
    display: none;
    width: 30px;
}
.navnbutarea .navbar-nav
{
    gap: 30px;
}
.navnbutarea .navbar-nav .nav-item .nav-link
{
    font-size: var(--size-16);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0;
    color: var(--black);
    line-height: 1;
}
.navnbutarea .navbar-nav .nav-item .nav-link:hover
{
    color: var(--darkbrown);
}

.slideMenu_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fstcontsec
{
    padding: 130px 0 40px 0;
    background: url(../images/ring.png) no-repeat right top;
    background-size: 44%;
}
/* .fstcontsecwidth
{
    max-width: 980px;
	margin-left: 200px;
} */
.fstcontsecwidth h1
{
    font-size: var(--size-76);
    line-height: 1;
    font-weight: bold;
    padding: 0 0 20px 0;
    text-align:center;
    text-transform: uppercase;
}
.fstcontsecwidth h1 span{
	display:block;
	/* text-align:center; */
	/* text-decoration:underline; */
}
.fstcontsecwidth p
{
    font-size: var(--size-26);
    font-weight: bold;
    line-height: 1.3;
	/* margin-bottom: 8px; */
    text-align:center;
    text-transform: uppercase;
}
.sndcontsec
{
    background: var(--cream);
    padding: 25px 0;
}
.sndcontsec p
{
    text-align: center;
    font-style: italic;
    line-height: 32px;
    max-width: 75%;
    margin: 0 auto;
}
.videosec
{
    width: 1427px;
    height: 717px;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    /* z-index: 2; */
}
.play-button {
    top: 50%;
    left: 50%;
    width: 100px;
    position: absolute;
    transform: translate(-50%, -50%);
}
.thrdcontbluebg
{
    background: var(--blue);
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    width: 100%;
    padding: 175px 150px 100px 150px;
    /* position: relative;
    z-index: 1; */
    margin: -130px 0 0 0;
}
.thrdcontbluebg h2
{
    font-size: var(--size-58);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
    text-align: center;
    padding: 0 0 25px 0;
}
.thrdcontbluebg p
{
    color: var(--white);
    text-align: center;
    padding: 0 0 18px 0;
}
.thrdcontbluebg p:last-child
{
    padding: 0;
}
.thrdcontbluebg ul
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 0 18px 0;
    row-gap: 20px;
}
.thrdcontbluebg ul li
{
    color: var(--white);
    background: url(../images/bullet.png) no-repeat left 5px;
    padding: 0 0 0 45px;
}
/* .thrdcontsec {
	padding-top: 50px;
} */
.thrdcontsec .bookbutsec
{
    margin: -30px 0 0;
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}
#videoModal .modal-body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;  /* lock 16:9 ratio */
  display: block;
}
.frthcontsec
{
    text-align: center;
}
.frthcontsec h2
{
    color: var(--darkbrown);
    font-size: var(--size-58);
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 0 40px 0;
    line-height: 1;
}
.listtypecontsec
{
    width: 70%;

    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-inline: auto;
    margin-bottom: 60px;
}
.lftlisttypecontsec
{
    flex:0 0 50%;
    max-width: 50%;
    padding: 50px;
    background: var(--lightvoilet);
}
.rytlisttypecontsec
{
    flex:0 0 50%;
    max-width: 50%;
    padding: 50px;
    background: var(--cream);
}
.listtypecontsec h3
{
    font-size: var(--size-32);
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 0 25px 0;
}
.listtypecontsec .processList_wrapper{
    width: auto;
    text-align: left;
}
.listtypecontsec .processList_wrapper ul{
    align-items: flex-start;
}
/* .listtypecontsec ul
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 0 18px 0;
    row-gap: 15px;
} */
.listtypecontsec ul li
{
    background: url(../images/bullet.png) no-repeat left 5px;
    padding: 0 0 0 45px;
    font-weight: 500;
    /* text-align: left; */
}
.frthcontsec p
{
    padding: 0 0 20px 0;
}
.frthcontsec a.button
{
    margin: 0 auto;
}
.fifthcontsec
{
    position: relative;
    text-align: center;
    background: url(../images/bg.jpg) no-repeat center top;
    background-size: cover;
}
.fifthcontsec:before
{
    background: rgba(0, 0, 0, 0.75);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.fifthcontsec .container
{
    position: relative;
    z-index: 1;
}
.fifthcontsec h2
{
    color: var(--white);
    text-transform: uppercase;
    font-size: var(--size-58);
    padding: 0 0 20px 0;
}
.fifthcontsec p
{
    color: var(--white);
}
.fifthcontsec h3
{
    color: var(--white);
    text-transform: uppercase;
    margin: 60px 0 0;
    padding: 0 0 20px 0;
}
.processList_wrapper{
    width: 550px;
    margin-inline: auto;
    /* text-align: left; */
}
/* .fifthcontsec .processList_wrapper{
	width: 400px;
} */
.processList_wrapper ul
{
    display: flex;
    row-gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.fifthcontsec ul{
    margin: 0 0 60px 0;
}
.fifthcontsec ul li
{
    background: url(../images/bullet.png) no-repeat left 5px;
    padding: 0 0 0 45px;
    font-weight: 500;
    color: var(--white);
    text-align: left;
}
.fifthcontsec a.button
{
    margin: 30px auto auto;
}
.sixthcontsec
{
    text-align: center;
}
.sixthcontsec h2
{
    text-transform: uppercase;
    color: var(--darkbrown);
    font-size: var(--size-58);
    font-weight: bold;
    padding: 0 0 20px 0;
    line-height: 1;
}
.sixthcontsec h3
{
    text-transform: uppercase;
    font-size: var(--size-32);
    font-weight: 500;
    line-height: 1;
}
.inoutboundcontsec
{
    width: 60%;
    
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto auto;
}
.inoutboundcontsec h4
{
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 0 15px 0;
}
.inoutboundcontsec ul li
{
    color: var(--black);
    padding: 20px 0;
}
.lftinoutboundpart
{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 50px 0;
    background: var(--cream);
}
.lftinoutboundpart h4
{
    color: var(--darkbrown);
}
.lftinoutboundpart ul li
{
    border-bottom: 1px solid var(--lightbrown);
}
.lftinoutboundpart ul li:last-child
{
    border-bottom: 0;
}
.rytinoutboundpart
{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 50px 0;
    background: var(--lightvoilet);
}
.rytinoutboundpart h4
{
    color: var(--blue);
}
.rytinoutboundpart ul li
{
    border-bottom: 1px solid #CFD8E9;
}
.rytinoutboundpart ul li:last-child
{
    border-bottom: 0;
}
.sixthcontsec .bookbutsec
{
    position: absolute;
    margin: -30px 0 0;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}
.seventhcontsec
{
    text-align: center;
}
.seventhcontsec h2
{
    text-transform: uppercase;
    color: var(--darkbrown);
    font-size: var(--size-58);
    font-weight: bold;
    padding: 0 0 20px 0;
    line-height: 1;
}
.seventhcontsec h2 img
{
    margin-right: 10px;
}
.seventhcontsec h3
{
    text-transform: uppercase;
    color: var(--darkbrown);
    font-size: var(--size-48);
    font-weight: bold;
    padding: 60px 0 40px 0;
    line-height: 1;
}
.processsec
{
    background: url(../images/zikzakimg.png) no-repeat center top;
    background-size: 100% auto;
    display: flex;
    flex-wrap: wrap;
    padding: 92px 0 0;
    margin: 0 0 40px 0;
}
.sgleprocesspart
{
    flex:0 0 20%;
    max-width: 20%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 125px;
    padding: 0 15px;
}
.processnumbersec
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.processnumber
{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--lightbrown);
    padding: 10px;
    overflow: hidden;
}
.numbersec
{
    background: var(--blue);
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: var(--size-40);
    color: var(--lightbrown);
    font-weight: bold;
    border-radius: 50%;
    overflow: hidden;
}
.sgleprocesspart .processnumbersec p
{
    font-size: var(--size-28);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1;
}
.processbotpart
{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
}
.sgleprocesspart .processbotpart h4
{
    text-transform: uppercase;
    font-size: var(--size-28);
    font-weight: bold;
    line-height: 1;
    text-align: center;
    margin-bottom: 15px;
}
.sgleprocesspart .processbotpart p
{
    font-size: var(--size-20);
    line-height: normal;
}
.eightcontsec h2
{
    text-transform: uppercase;
    color: var(--darkbrown);
    font-size: var(--size-58);
    font-weight: bold;
    padding: 0 0 20px 0;
    line-height: 1;
    text-align: center;
}
.eightcontsec h3
{
    font-size: var(--size-21);
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    padding: 0 0 60px 0;
}
.eightcontbgsec
{
    background: var(--blue);
    border-radius: 20px;
    padding: 30px 30px 0 30px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.lftactivitysec
{
    flex:0 0 25%;
    max-width: 25%;
}
.lftactivitysec th
{
    line-height: 60px;
    color: var(--white);
    font-size: var(--size-28);
    font-weight: 600;
}
.lftactivitysec tr td
{
    font-size: var(--size-21);
    font-weight: 500;
    color: var(--white);
    padding: 5px 0;
}
.lftactivitysec tr:last-child td
{
    padding-bottom: 15px;
}
.rytactivitysec
{
    flex:0 0 75%;
    max-width: 75%;
}
.rytactivitybg
{
    background: var(--white);
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}
.rytactivitybg th
{
    line-height: 60px;
    color: var(--white);
    font-size: var(--size-28);
    font-weight: 600;
    background: var(--lightbrown);
    text-align: center;
}
.rytactivitybg tr td
{
    font-size: var(--size-21);
    font-weight: 500;
    text-align: center;
    color: var(--black);
    padding: 5px 0;
}
.rytactivitybg tr:last-child td
{
    padding-bottom: 15px;
}
.ninecontsec h2
{
    text-transform: uppercase;
    color: var(--darkbrown);
    font-size: var(--size-58);
    font-weight: bold;
    padding: 0 0 50px 0;
    line-height: 1;
    text-align: center;
}
.nineseccontarea{
    background: var(--lightvoilet);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nineseccontarea h3
{
    font-size: var(--size-32);
    font-weight: 600;
    color: #353C48;
    line-height: 1;
}
.nineseccontarea p
{
    padding: 5px 0 0;
    line-height: normal;
}
/* .ninecontspacer
{
    height: 45px;
    width: 100%;
} */
.ninecontsec a.button
{
    margin-top: 20px;
}
.tenthcontsec .row{
    align-items: center;
}
.tenthcontsec img
{
    border-radius: 20px;
}
.tenthcontdiv{
    padding-left: 20px;
}

.tenthcontsec h2
{
/*     text-transform: uppercase; */
    color: var(--black);
    font-size: var(--size-32);
    font-weight: bold;
    padding: 0 0 20px 0;
    line-height: 1;
}
.tenthcontsec h2 img
{
    margin-right: 10px;
}
.tenthcontsec p
{
    font-size: var(--size-21);
    font-weight: normal;
    line-height: 32px;
    padding: 0 0 15px 0;
}
.tenthcontsec ul li
{
    font-size: var(--size-18);
    font-weight: 500;
    color: var(--black);
    background: url(../images/bullet.png) no-repeat left 4px;
    padding: 0 0 0 45px;
    margin-top: 15px;
}
.tenthcontsec ul li strong
{
    font-weight: bold;
}
.cta-wrap{
    text-align: left;
    margin-top: 20px;
}
.tenthcontsec h5{
    font-size: var(--size-28);
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 15px;
}

.footersec
{
    background-color: var(--blue);
    padding: 60px 0 30px;
    -webkit-border-top-left-radius: 75px;
    -webkit-border-top-right-radius: 75px;
    -moz-border-radius-topleft: 75px;
    -moz-border-radius-topright: 75px;
    border-top-left-radius: 75px;
    border-top-right-radius: 75px;
    background-image: url('../images/logo-pattern.svg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.footerlogo
{
    max-width: 362px;
    height: 64px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 60px;
    overflow: hidden;
}
.footerlogo a
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
}
.ftrmenulink{
    margin-block: 45px;
}
.ftrmenulink ul{
    column-gap: 20px;
    row-gap: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.ftrmenulink ul li a{
    color: var(--white);
    font-size: var(--size-16);
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
    &:hover{
        color: var(--darkbrown);
    }
}
.contact-info-wrap{
    padding: 20px 45px;
    border-radius: 100px;
    background-color: var(--darkcream);
    max-width: 600px;
    margin-inline: auto;
    margin-top: 30px;
    text-align: center;
}
.contact-info-wrap .call-link a{
    font-size: var(--size-40);
    color: var(--blue);
    transition: var(--transition);
    &:hover{
        color: var(--darkbrown);
    }
}
.contact-info-wrap .email-link{
    color: var(--blue);
    font-weight: 300;
    font-size: var(--size-28);
    margin-top: 10px;
    display: block;
    transition: var(--transition);
    &:hover{
        color: var(--darkbrown);
    }
}
ul.socialmedialink {
    gap: 10px;
    display: flex;
    margin-bottom: 45px;
    align-items: center;
    justify-content: center;
}
ul.socialmedialink li a{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    transition: var(--transition);
    &:hover{
        background-color: var(--darkbrown);
    }
}
.footer-bottom p{
    text-align: center;
    color: var(--white);
    font-size: var(--size-16);
    font-weight: 500;
}

.footer-bottom p a{
    color: var(--white);
    transition: var(--transition);
    &:hover{
        color: var(--darkbrown);
    }
}