:root {
    --colorTheme: #f73e5d;
    --colorWhite: #fdf3ea;
    --colorDarkBlue: #233444;
    --colorDarkYellow: #fda230;
    --colorBlack: #1a1a1a;
    --colorBG: #efeeec;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Aller Regular";
    background-color: var(--colorBG);
}
@font-face {
    font-family: "Aller Light";
    src: url(../fonts/aller_light.ttf);
}
@font-face {
    font-family: "Aller Regular";
    src: url(../fonts/aller_regular.ttf);
}
input,
select,
button {
    outline: none;
    box-shadow: none;
}
input:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: none !important;
}
.form-control:focus {
    border-color: transparent;
    box-shadow: none;
}
a {
    text-decoration: none;
}
a:hover {
    transition: all 0.4s ease-in-out;
}
p {
    font-family: "Aller Light";
}
.mb-24 {
    margin-bottom: 24px;
}
.mb-50 {
    margin-bottom: 50px;
}
.thm-btn {
    font-size: 18px;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    background-color: var(--colorTheme);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    display: inline-block;
}
.thm-btn:hover {
    color: var(--colorWhite);
    background-color: var(--colorDarkBlue);
    transition: all 0.4s ease-in-out;
}
.thm-btn-1 {
    font-size: 18px;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    background-color: var(--colorDarkBlue);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    display: inline-block;
}
.thm-btn-1:hover {
    color: var(--colorWhite);
    background-color: var(--colorTheme);
    transition: all 0.4s ease-in-out;
}

/*-- Start Header --*/
.header {
    width: 100%;
    padding: 0 48px;
}
.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--colorBG);
    box-shadow: 0 0 10px #d6d6d6;
}
.header .navbar-brand img {
    width: 193px;
    height: auto;
}
.header .navbar {
    padding: 0;
}
.header .navbar {
    padding: 0;
}
.sidepanel {
    width: fit-content;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
    border-radius: 0 0 0 20px;
    background-color: var(--colorDarkBlue);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.sidepanel.active {
    opacity: 1;            
    pointer-events: auto;
}
.sidebar-menu .close-box {
    position: relative;
    z-index: 0;
    width: 100%;
    padding: 30px 60px 30px 0;
    float: right;
    transition: all 0.4s ease-in-out;
}
.sidebar-menu .sidepanel .close-box button {
    font-size: 18px;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    background-color: var(--colorTheme);
    padding: 15px 30px;
    border: none;
    margin-left: auto;
    border-radius: 50px;
    display: inline-block;
    float: right;
    transition: all 0.4s ease-in-out;
}
.sidebar-menu .sidepanel .close-box button i {
    margin-left: 15px;
}
.sidebar-menu .sidepanel .close-box button:hover {
    background-color: var(--colorWhite);
    color: var(--colorDarkBlue);
}
.sidebar-menu .openbtn {
    float: right;
    font-size: 18px;
    color: var(--colorWhite);
    text-transform: uppercase;
    text-align: center;
    background-color: var(--colorTheme);
    padding: 15px 30px;
    margin: 30px 0;
    border: none;
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}
.sidebar-menu .openbtn:hover {
    background-color: var(--colorDarkBlue);
}
.sidebar-menu .openbtn i {
    margin-left: 15px;
}
.sidebar-menu ul {
    list-style-type: none;
    padding: 50px 60px 50px 50px;
    margin-bottom: 0;
}
.sidebar-menu ul li {
    margin-bottom: 16px;
}
.sidebar-menu ul li:last-child {
    margin-bottom: 0;
}
.sidebar-menu ul li a {
    font-size: 18px;
    color: var(--colorWhite);
    text-transform: uppercase;
    padding: 0;
    position: relative;
    text-align: center;
    transition: all 0.4s ease-in-out;
}
.sidebar-menu ul li a:hover,
.sidebar-menu ul li a.active {
    color: #008189;
}
.sidebar-menu ul li:last-child a {
    text-align: center;
    background-color: var(--colorTheme);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    display: inline-block;
}
.sidebar-menu ul li:last-child a:hover {
    background-color: var(--colorWhite);
    color: var(--colorDarkBlue);
}
.header.header-sticky.is-sticky .sidebar-menu .openbtn {
    margin: 20px 0;
}
.header.header-sticky.is-sticky .sidebar-menu .close-box {
    padding: 20px 60px 20px 0;
}
/*-- End Header --*/

/*-- Start --*/
.main-slider {
    margin: 0 30px;
    position: relative;
}
.main-slider .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
    margin: 0 30px;
}
.main-slider .owl-carousel .item .slide-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
}
.main-slider .owl-carousel .item .slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorDarkBlue);
    opacity: 0.3;
    border-radius: 30px;
}
.main-slider .home-slide-cnt {
    position: relative;
    padding: 100px 0 250px;
}
.main-slider .home-slide-cnt h1 {
    font-size: 60px;
    color: var(--colorWhite);
    margin-bottom: 30px;
}
.main-slider .home-slide-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 30px;
}
/*-- End --*/

/*-- Start --*/
.home-about {
    padding: 100px 0;
}
.home-about-cnt h2 {
    font-size: 50px;
    color: var(--colorDarkBlue);
    margin-bottom: 30px;
}
.home-about-cnt h3 {
    font-size: 25px;
    color: var(--colorDarkBlue);
    margin-bottom: 30px;
}
.home-about-cnt p {
    font-size: 18px;
    color: var(--colorDarkBlue);
    line-height: 36px;
    margin-bottom: 30px;
}
.home-about-img {
    position: relative;
    height: 100%;
}
.home-about-img img:first-child {
    width: 530px;
    height: 596px;
    object-fit: cover;
    border-radius: 30px;
    float: right;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 30%);
}
.home-about-img img:nth-child(2) {
    width: 300px;
    height: 242px;
    object-fit: cover;
    border-radius: 30px;
    position: absolute;
    bottom: -40px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 30%);
}
/*-- End --*/

/*-- Start --*/
.why-choose {
    width: calc(100% - 60px);
    margin: 0 auto;
    position: relative;
    margin-top: 40px;
}
.why-choose::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 55%;
    background-color: var(--colorDarkBlue);
    border-radius: 30px 30px 0 0;
}
.why-choose::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 57px;
    width: 100%;
    height: 55%;
    background-color: var(--colorDarkBlue);
    border-radius: 0 0 30px 30px;
    transform: skewY(4deg);
}
.why-choose-box {
    margin: 100px 24px;
}
.why-choose-cnt h2 {
    font-size: 50px;
    color: var(--colorWhite);
    margin-bottom: 40px;
}
.why-choose-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 20px;
}
.why-choose-cnt .thm-btn {
    margin-top: 20px;
}
.why-choose-cnt .thm-btn:hover {
    background-color: var(--colorWhite);
    color: var(--colorDarkBlue);
}
/*-- End --*/

/*-- Start --*/
.our-services {
    padding: 100px 0;
}
.our-services .sec-heading h2 {
    font-size: 50px;
    color: var(--colorDarkBlue);
    margin-bottom: 40px;
}
.our-services .sec-heading p {
    font-size: 18px;
    color: var(--colorDarkBlue);
    line-height: 36px;
    margin-bottom: 0;
}
.our-services-box {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.our-services-box:hover {
    background-color: var(--colorDarkYellow);
    transition: all 0.4s ease-in-out;
}
.our-services-box h3 {
    font-size: 32px;
    color: var(--colorDarkBlue);
}
.our-services-box p {
    font-size: 18px;
    color: var(--colorDarkBlue);
    line-height: 36px;
    margin-bottom: 30px;
}
.our-services-box a {
    font-size: 18px;
    font-weight: bold;
    color: var(--colorDarkBlue);
    margin-top: auto;
    display: block;
}
/*-- End --*/

/*-- Start --*/
.our-difference {
    width: calc(100% - 60px);
    margin: 0 auto;
    position: relative;
    margin-top: 208px;
    margin-bottom: 100px;
}
.our-difference::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 65%;
    background-color: var(--colorTheme);
    border-radius: 30px 30px 0 0;
    transform: skewY(4deg);
}
.our-difference::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    width: 100%;
    height: 65%;
    background-color: var(--colorTheme);
    border-radius: 0 0 30px 30px;
}
.our-difference-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 43% 25%;
    border-radius: 30px;
    width: 75%;
    margin: -208px auto 0;
}
.our-difference-cnt {
    padding: 70px 0 100px;
}
.our-difference-cnt h2 {
    font-size: 50px;
    color: var(--colorWhite);
    margin-bottom: 40px;
}
.our-difference-cnt h3 {
    font-size: 25px;
    color: var(--colorWhite);
    margin: 30px 0;
}
.our-difference-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 0;
}
/*-- End --*/

/*-- Start --*/
.get-in-touch {
    padding: 100px 0;
    margin: 0 30px;
    background-color: var(--colorBlack);
    border-radius: 30px;
}
.get-in-touch .sec-heading h2 {
    font-size: 50px;
    color: var(--colorWhite);
    margin-bottom: 40px;
}
.get-in-touch .gx-8 {
    --bs-gutter-x: 80px;
}
.get-in-touch .row .col-lg-6:nth-child(2) {
    border-left: 1px solid #474544;
}
.get-in-touch-cnt p {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 20px;
}
.get-in-touch-cnt ul {
    list-style-type: none;
    padding-left: 0;
}
.get-in-touch-cnt ul li {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 20px;
}
.get-in-touch-cnt ul li a {
    color: var(--colorWhite);
    margin-left: 5px;
}
.get-in-touch-cnt ul li a:hover {
    color: var(--colorTheme);
}
.get-in-touch-form-note {
    font-size: 18px;
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 30px;
}
.get-in-touch-form .form-control {
    font-size: 18px;
    color: var(--colorBlack);
    line-height: 36px;
    border-radius: 50px;
    border-color: var(--colorWhite);
    background-color: var(--colorWhite);
    padding: 10px 20px;
    text-transform: initial;
}
.get-in-touch-form textarea.form-control {
    border-radius: 30px;
}
.get-in-touch-form .form-control:focus {
    border-color: var(--colorTheme);
}
.get-in-touch-form .form-select {
    font-size: 18px;
    color: var(--colorBlack);
    line-height: 36px;
    border-radius: 50px;
    border-color: var(--colorWhite);
    padding: 10px 40px 10px 20px;
    background-size: 20px 20px;
    background-image: url(../images/select-arrow.svg);
    background-color: var(--colorWhite);
    text-transform: initial;
}
.get-in-touch-form .thm-btn:hover {
    background-color: var(--colorWhite);
    color: var(--colorBlack);
}
.contact-us {
    padding: 150px 0;
}
/*-- End --*/

/*-- Start --*/
.services-main .our-difference {
    padding-top: 100px;
}
.services {
    width: calc(100% - 60px);
    position: relative;
    margin: 40px auto 100px;
}
.services::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 55%;
    background-color: var(--colorDarkBlue);
    border-radius: 30px 30px 0 0;
}
.services::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 62px;
    width: 100%;
    height: 55%;
    background-color: var(--colorDarkBlue);
    border-radius: 0 0 30px 30px;
    transform: skewY(4deg);
}
.services .sec-heading {
    margin: 100px 0 50px;
}
.services .sec-heading h2 {
    font-size: 50px;
    color: var(--colorWhite);
    margin-bottom: 40px;
}
.services-cnt {
    padding-bottom: 100px;
}
.services-cnt ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 100px;
}
.services-cnt ul li {
    font-size: 18px;
    font-family: "Aller Light";
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 30px;
}
.services-cnt ul li:last-child {
    margin-bottom: 0;
}
.about-us-main .home-about-img img:first-child {
    float: unset;
}
.about-us-main .services {
    margin: 0 auto 40px;
}
.about-us-main .services-cnt {
    padding-bottom: 180px;
}
.about-us-main .services-cnt p {
    font-size: 18px;
    font-family: "Aller Light";
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 30px;
}
.about-we-are {
    width: calc(100% - 60px);
    margin: 0 auto;
    position: relative;
    margin-bottom: 100px;
}
.about-we-are::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 65%;
    background-color: var(--colorTheme);
    border-radius: 30px 30px 0 0;
    transform: skewY(4deg);
}
.about-we-are::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    width: 100%;
    height: 65%;
    background-color: var(--colorTheme);
    border-radius: 0 0 30px 30px;
}
.about-we-are-cnt {
    padding: 100px 0;
}
.about-we-are-cnt p {
    font-size: 24px;
    font-family: "Aller Regular";
    color: var(--colorWhite);
    line-height: 36px;
    margin-bottom: 30px;
}
.about-we-are-cnt p:last-child {
    margin-bottom: 0;
}
/*-- End --*/

/*-- Start Footer --*/
.footer {
    padding: 30px 48px;
}
.footer .footer-logo img {
    width: 193px;
    height: auto;
}
.footer .footer-link ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
    padding: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.footer .footer-link ul li {
    padding: 15px 30px;
}
.footer .footer-link ul li a {
    font-size: 18px;
    color: var(--colorDarkBlue);
    line-height: 36px;
    text-transform: uppercase;
}
.footer .footer-link ul li a:hover {
    color: #008189;
}
.footer .footer-link ul li:last-child {
    padding: 0 0 0 30px;
}
.footer .footer-link ul li .thm-btn {
    color: var(--colorWhite);
}
.footer .footer-link ul li .thm-btn:hover {
    color: var(--colorWhite);
}
/*-- End Footer --*/