@charset "UTF-8";
/*!
 * MDCMS CSS v1.0.0 - Dec. 2023
 * Copyright 2007-2023 MarketDental.
 * ---
 * Fonts: Rubik, Nunito, Lato, Noto Sans, Sora, Epilogue, Encode+Sans, Manrope, Archivo, 
 *        Roboto, Raleway, Work Sans, Montserrat, Poppins, Source Sans Pro, Oxygen, Open Sans
 */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

:root,
[data-bs-theme=light] {  
  --bs-primary: #0167cb;
  --bs-secondary: #FCB61A;
  --bs-primary-rgb: 1, 103, 203;
  --bs-secondary-rgb: 252, 182, 26;
  --bs-gray-100: rgba(var(--bs-primary-rgb), 0.05) !important;
  --bs-gray-200: rgba(var(--bs-primary-rgb), 0.10) !important;
  --bs-gray-300: rgba(var(--bs-primary-rgb), 0.15) !important;
  --bs-gray-400: rgba(var(--bs-primary-rgb), 0.20) !important;
  --bs-gray-500: rgba(var(--bs-primary-rgb), 0.25) !important;
  --bs-gray-600: rgba(var(--bs-primary-rgb), 0.30) !important;
  --bs-gray-700: rgba(var(--bs-primary-rgb), 0.35) !important;
  --bs-gray-800: rgba(var(--bs-primary-rgb), 0.40) !important;
  --bs-gray-900: rgba(var(--bs-primary-rgb), 0.45) !important;
  --bs-gray-1000: rgba(var(--bs-primary-rgb), 0.75) !important;
  --bs-font-sans-serif: "Lato", MD, system-ui, -apple-system, "Segoe UI", Roboto, Lato, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-link-color: var(--bs-primary);
  --bs-link-color-rgb: var(--bs-primary-rgb);
  --bs-link-decoration: underline;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-hover-color-rgb: var(--bs-primary-rgb); 
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size:1rem;
  --bs-body-line-height:var(--bs-body-line-height);
  --bs-body-line-height:1.8;
  --bs-body-color:#1c1c1c;
  --bs-body-bg:#EBF3FB;
  --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3e%3c/svg%3e");
  --md-font-weight-light:300;
  --md-font-weight-bold:600;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);    
}
.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-gradient: none;
}

html { font-size: 100%; }
html,
body {
  height: 100%;
}
body {
  overflow-x: hidden;
}
*,*::before,*::after{
  box-sizing:border-box
}
body{
    margin:0;
    font-family:var(--bs-body-font-family);
    font-size:var(--bs-body-font-size);
    font-weight:var(--bs-body-font-weight);
    line-height:var(--bs-body-line-height);
    color:var(--bs-body-color);
    text-align:var(--bs-body-text-align);
    background-color:var(--bs-body-bg);
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:rgba(22,28,45,0);
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
hr{
    margin:1rem 0;
    color: var(--bs-gray-300);
    background-color:currentColor;
    border:0;
    opacity:1
}
hr:not([size]){
    height:1px
}
h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{
    margin-top:0;
    margin-bottom:.5rem;
    line-height:1.8rem;
}
h1,.h1{
    font-size:1.7rem;
    line-height:40px;
    line-height:var(--bs-body-line-height);
}
h2,.h2{
    font-size:1.5rem;
    color: var(--bs-primary);
    line-height:var(--bs-body-line-height);
}
h3,.h3{
    font-size:1.4rem;
    color: var(--bs-secondary);
    line-height:var(--bs-body-line-height);
}
h4,.h4{
    font-size:1.3rem;
    line-height:var(--bs-body-line-height);
}
h5,.h5{
    font-size:1.2rem
}
h6,.h6{
    font-size:1.1rem;
    color: var(--bs-primary)
}
p{
    margin-top:0;
    margin-bottom:1rem
}

b,strong .fw-bold, .fw-semibold{
    font-weight:var(--md-font-weight-bold);
}
small,.small{
    font-size:88.2%
}
mark,.mark{
    padding:.2em;
    background-color:#fcf8e3
}
sub,sup{
    position:relative;
    font-size:.75em;
    line-height:0;
    vertical-align:baseline
}
.alert {
    font-size: 14px !important;
}
sub{
    bottom:-.25em
}
sup{
    top:-.5em
}
a {
  color: var(--bs-primary);
  text-decoration: none;
}
a:hover {
  color: var(--bs-secondary);
  text-decoration:none;
}
a:not([href]):not([class]),a:not([href]):not([class]):hover{
    color:inherit;
    text-decoration:none
}

pre,code,kbd,samp{
    font-family:var(--bs-font-monospace);
    font-size:1em;
    direction:ltr
    /* rtl:ignore */
    ;
    unicode-bidi:bidi-override
}
pre{
    display:block;
    margin-top:0;
    margin-bottom:1rem;
    overflow:auto;
    font-size:.8125rem
}
pre code{
    font-size:inherit;
    color:inherit;
    word-break:normal
}
code{
    font-size:.8125rem;
    color:#d63384;
    word-wrap:break-word
}
a>code{
    color:inherit
}
kbd{
    padding:.2rem .4rem;
    font-size:.8125rem;
    color:#fff;
    background-color:#1B2A4E;
    border-radius:.25rem
}
kbd kbd{
    padding:0;
    font-size:1em;
    font-weight:var(--md-font-weight-bold);
}
figure{
    margin:0 0 1rem
}
img,svg{
    vertical-align:middle
}
table{
    caption-side:bottom;
    border-collapse:collapse
}
caption{
    padding-top:1.5rem;
    padding-bottom:1.5rem;
    color:#869AB8;
    text-align:left
}
th{
    text-align:inherit;
    text-align:-webkit-match-parent
}
thead,tbody,tfoot,tr,td,th{
    border-color:inherit;
    border-style:solid;
    border-width:0
}
label{
    display:inline-block
}
button{
    border-radius:0
}
button:focus:not(:focus-visible){
    outline:0
}
input,button,select,optgroup,textarea{
    margin:0;
    font-family:inherit;
    font-size:inherit;
    line-height:inherit
}
button,select{
    text-transform:none
}
[role="button"]{
    cursor:pointer
}
select{
    word-wrap:normal
}
select:disabled{
    opacity:1
}
[list]::-webkit-calendar-picker-indicator{
    display:none
}
button,[type="button"],[type="reset"],[type="submit"]{
    -webkit-appearance:button
}
button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){
    cursor:pointer
}
::-moz-focus-inner{
    padding:0;
    border-style:none
}
textarea{
    resize:vertical
}
fieldset{
    min-width:0;
    padding:0;
    margin:0;
    border:0
}
legend{
    float:left;
    width:100%;
    padding:0;
    margin-bottom:.5rem;
    font-size:1.5rem;
    line-height:inherit
}
legend+*{
    clear:left
}







/* start banner animation */
header .item {
    height: 100vh;
    position: relative;
}
header .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
header .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.6); */
    display: flex;
    align-items: center;
    background-color:var(--bs-gray-100);

}
header .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
}
header .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid  var(--bs-primary);
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
header .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color:  var(--bs-primary);
}
header .item .cover .header-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color:  var(--bs-primary);
}
header .item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color:  var(--bs-primary);
}
header .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}
header .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}
header .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
} 
header .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}
header .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
  }
  header .owl-nav .owl-prev span {
    font-size: 1.2rem;
    color:  var(--bs-white);
  }
  header .owl-nav .owl-prev:focus {
    outline: 0;
  }
  header .owl-nav .owl-prev:hover {
    background: #000 !important;
  }
  header .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
  }
  header .owl-nav .owl-next span {
    font-size: 1.2rem;
    color: #fff;
  }
  header .owl-nav .owl-next:focus {
    outline: 0;
  }
  header .owl-nav .owl-next:hover {
    background: #000 !important;
  }
  header:hover .owl-prev {
    left: 0px;
    opacity: 1;
  }
  header:hover .owl-next {
    right: 0px;
    opacity: 1;
  }
  .owl-theme .owl-nav {
    margin-top: 0px !important;
}





/* feature curve */

.feature-curve.wrap-feature-curve-box {
    background-position: left top, top right;
    background-repeat: no-repeat, no-repeat;
}

.wrap-feature-curve-box {
    position: relative;
}
  



/* v1 */
@keyframes changewidth {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}
#dynamicContent {
    white-space: nowrap;
}



/* feature cards */
:root {
    --md-ash: #eaeef6;
    --md-charcoal: #a0a0a0;
    --md-void: #141b22;
    --md-fair-pink: #FFEDEC;
    --md-apricot: #FBC8BE;
    --md-coffee: #754D42;
    --md-del-rio: #917072;
    --md-titan-white: #f1eeff;
    --md-cold-purple: #a69fd6;
    --md-indigo: #6558d3;
    --md-governor: #4133B7;
}

.bg-cards {
    background-color: var(--md-ash);
}
.bg-cards-2 {
    background-color: var(--bs-gray-400);
}
.bg-cards-3 {
    background-color: var(--bs-gray-800);
}
.cards {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    width: 90%;
    max-width: 1000px;
    margin: 10vh auto;
}

.plan-card {
    border-radius: 16px;
    box-shadow: 0 30px 30px -25px rgba(65, 51, 183, 0.25);
    max-width: 300px;
}

.information {
  background-color: var(--bs-white);
  padding: 1.5rem;
}
.information .tag {
  display: inline-block;
  background-color: var(--md-titan-white);
  color: var(--md-indigo);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5em 0.75em;
  line-height: 1;
  border-radius: 6px;
}
.information .tag + * {
  margin-top: 1rem;
}


.information .title {
  font-size: 1.2rem;
  color: var(--md-void);
  line-height: 1.3;
}
.information .title + * {
  margin-top: 1rem;
}
.information .info {
  color: var(--md-charcoal);
}
.information .info + * {
  margin-top: 1.25rem;
}
.information .button {
  font: inherit;
  line-height: 1;
  background-color: var(--bs-white);
  border: 2px solid var(--md-indigo);
  color: var(--md-indigo);
  padding: 0.5em 1em;
  border-radius: 6px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.information .button:hover, .information .button:focus {
  background-color: var(--md-indigo);
  color: var(--bs-white);
}
.information .details {
  display: flex;
  gap: 1rem;
}
.information .details div {
  padding: 0.75em 1em;
  background-color: var(--md-titan-white);
  border-radius: 8px;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.125em;
  flex-basis: 50%;
}
.information .details dt {
  font-size: 0.875rem;
  color: var(--md-cold-purple);
}
.information .details dd {
  color: var(--md-indigo);
  font-weight: 600;
  font-size: 1.25rem;
}

.plan {
  padding: 10px;
  background-color: var(--bs-white);
  color: var(--md-del-rio);
}
.plan strong {
  font-weight: 600;
  color: var(--md-coffee);
}
.plan .inner {
  padding: 20px;
  padding-top: 40px;
  background-color: var(--md-fair-pink);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.plan .pricing {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--md-apricot);
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.625em 0.75em;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--md-coffee);
}
.plan ol, ul {
    padding-left: 0rem;
}
.plan .pricing small {
  color: var(--md-del-rio);
  font-size: 0.75em;
  margin-left: 0.25em;
}
.plan .title {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--md-coffee);
}
.plan .title + * {
  margin-top: 0.75rem;
}
.plan .info + * {
  margin-top: 1rem;
}
.plan .features {
  display: flex;
  flex-direction: column;
}
.plan .features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.plan .features li + * {
  margin-top: 0.75rem;
}
.plan .features .icon {
  background-color: var(--bs-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.plan .features .icon svg {
  width: 14px;
  height: 14px;
}
.plan .features + * {
  margin-top: 1.25rem;
}
.plan button {
  font: inherit;
  background-color: var(--md-indigo);
  border-radius: 6px;
  color: var(--bs-white);
  font-weight: 500;
  font-size: 1.125rem;
  width: 100%;
  border: 0;
  padding: 0.4em;
}
.plan button:hover, .plan button:focus {
  background-color: var(--md-governor);
}









/* devices */
.devices {
    max-width: 1140px;
    position: relative;
    overflow: hidden;
    padding: 1.75rem .75rem 7rem;
    margin-right: -.75rem;
    margin-left: -.75rem
}

.devices .device-mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    margin-left: 5rem;
    margin-bottom: 5rem
}

@media (max-width: 991.98px) {
    .devices .device-mobile {
        display:none
    }
}

.devices .device-browser {
    margin-left: auto;
    margin-right: 5rem
}

@media (max-width: 991.98px) {
    .devices .device-mobile {
        margin-right:.5rem
    }

    .devices .device-browser {
        margin-right: auto
    }
}

.devices-shadow-none .device-browser,.devices-shadow-none .device-mobile-frame {
    box-shadow: none
}

.device-mobile {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 15rem;
    height: auto
}

.device-mobile-frame {
    background: #f8fafd;
    box-shadow: 0 2.75rem 5.5rem -3.5rem rgba(189,197,209,.5),0 2rem 4rem -2rem rgba(0,34,28,.3),inset 0 -.1875rem .3125rem 0 rgba(151,164,175,.5);
    border-radius: 2rem;
    padding: .3125rem
}

.device-mobile-img {
    max-width: 100%;
    height: auto;
    border-radius: 1.6rem
}

.device-browser {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 50rem;
    height: auto;
    box-shadow: 0 2.75rem 5.5rem -1rem rgba(189,197,209,.5),0 2rem 4rem -1rem rgba(0,34,28,.15);
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
    margin-left: auto;
    margin-right: auto
}

.device-browser-frame {
    background: #fff;
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem
}

.device-browser-img {
    max-width: 100%;
    height: auto;
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem
}

.device-browser-header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    max-width: 50rem;
    background: #fff;
    border-bottom: .0625rem solid #f1f3f8;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    padding: .5rem 6.5rem
}

.device-browser-header-btn-list {
    display: -ms-flexbox;
    display: flex;
    grid-gap: .25rem;
    position: absolute;
    top: calc(50% - .25rem);
    left: 1rem
}

.device-browser-header-btn-list-btn {
    width: .5rem;
    height: .5rem;
    background-color: #e7eaf3;
    border-radius: 50%
}

.device-browser-header-browser-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #e7eaf3;
    font-size: .5rem;
    border-radius: .125rem
}

.device-browser-lg {
    width: 60rem
}

.device-browser-lg .device-browser-header {
    max-width: 60rem
}



/* feature section */
section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: var(--bs-body-font-family);
    background: radial-gradient(ellipse at bottom left, var(--bs-secondary), var(--bs-secondary) 20%, transparent 20%), linear-gradient(to bottom, var(--bs-gray-600), #fff);
}
section input[type=radio] {
    position: absolute;
    z-index: 999;
    left: 0;
    bottom: 0;
    width: 33.33%;
    opacity: 0;
    overflow: hidden;
    height: 30px;
}
section input[type=radio]:hover + div .btn {
    background: var(--bs-gray-800);
}
section input[type=radio]:hover + div .btn:after {
    color: #fff;
}
section input[type=radio]:nth-of-type(2) {
    left: 33.33%;
}
section input[type=radio]:nth-of-type(2) + div .btn {
    left: 33.33%;
}
section input[type=radio]:nth-of-type(2) + div .btn:after {
    content: "2";
}
section input[type=radio]:nth-of-type(3) {
    left: 66.66%;
}
section input[type=radio]:nth-of-type(3) + div .btn {
    left: 66.66%;
}
section input[type=radio]:nth-of-type(3) + div .btn:after {
    content: "3";
}
section input[type=radio]:checked + div .btn {
    box-shadow: 0 0 0 2px var(--bs-primary);
    z-index: 10;
    padding: 5px 0;
}
section input[type=radio]:checked + div .btn:before {
    left: -25%;
}
section input[type=radio]:checked + div .btn:after {
    color: #fff;
}
section input[type=radio] + div .btn {
    position: absolute;
    width: 33%;
    bottom: 0;
    left: 0;
    height: 25px;
    box-shadow: 0 0 0 2px var(--bs-gray-500);
    overflow: hidden;
    z-index: 9;
    cursor: pointer;
}
section input[type=radio] + div .btn:after {
    content: "1";
    position: absolute;
    color: var(--bs-secondary);
    font-weight: 900;
    font-size: 22px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(calc(-50% - 2.5px));
    line-height: 0;
    color: var(--bs-gray-500);
}
section input[type=radio] + div .btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--bs-primary);
    left: -150%;
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
section svg {
    position: absolute;
    width: 0;
    height: 0;
}
section .card-section {
    width: 500px;
    min-width: 500px;
    height: 350px;
    position: relative;
    max-width: 100%;
    background: #fff;
}
section .card-section * {
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
section .card-section h1, section .card-section a {
    position: absolute;
    right: 30px;
    z-index: 9;
    color: #fff;
    font-size: 200px;
    font-weight: 100;
    margin: 0;
    top: 0;
    line-height: 0.75;
    transform: scale(0) rotateX(180deg);
    opacity: 0;
}
section .card-section p {
    position: absolute;
    z-index: 999;
    width: 75%;
    font-size: 18px;
    font-weight: 100;
    font-family: var(--bs-body-font-family);
    line-height: 26px;
    left: 12.5%;
    color: #fff;
    display: inline-block;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: none;
}
section .card-section a {
    color: var(--bs-primary);
    font-size: 15px;
    bottom: 50px;
    top: auto;
    width: 50%;
    display: block;
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 900;
    padding: 15px 5px;
    border: 2px solid;
    cursor: pointer;
    left: -50px;
    opacity: 1;
    transform: none;
    height: 12.5px;
    font-family: var(--bs-body-font-family);
}
section .card-section a:before {
    content: "BACK";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0);
    font-size: 15px;
    opacity: 0;
}
section .card-section input[type=checkbox] {
    z-index: 999;
    position: absolute;
    bottom: 50px;
    width: 50%;
    left: -50px;
    height: 50px;
    opacity: 0;
}
section .card-section input[type=checkbox]:hover ~ a {
    background: var(--bs-secondary);
    color: #fff;
    border-color: var(--bs-secondary);
}
section .card-section input[type=checkbox]:checked ~ p {
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.175);
    transition-delay: 0.2s;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
section .card-section input[type=checkbox]:checked ~ a {
    z-index: 100;
    color: #fff;
    font-size: 0;
}
section .card-section input[type=checkbox]:checked ~ a:before {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
}
section .card-section input[type=checkbox]:checked ~ .blob {
    z-index: 99;
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
section .card-section input[type=checkbox]:checked ~ .blob:before, section .card-section input[type=checkbox]:checked ~ .blob:after {
    transform: scale(0);
}
section .card-section input[type=checkbox]:checked ~ .blob .glob {
    transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1);
    min-width: 110%;
    min-height: 110%;
    border-radius: 0px;
    top: -5%;
    right: -5%;
}
section .card-section input[type=radio] + div {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
section .card-section input[type=radio]:checked + div h1 {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}
section .card-section input[type=radio]:nth-of-type(2):checked + div ~ .blob .glob {
    width: 70%;
    height: 75%;
    background: var(--bs-secondary);
}
section .card-section input[type=radio]:nth-of-type(2):checked + div ~ .blob:before {
    top: 40%;
    background: var(--bs-secondary);
}
section .card-section input[type=radio]:nth-of-type(2):checked + div ~ .blob:after {
    background: var(--bs-secondary);
}
section .card-section input[type=radio]:nth-of-type(3):checked + div ~ .blob .glob {
    width: 70%;
    height: 55%;
    background: var(--bs-primary);
}
section .card-section input[type=radio]:nth-of-type(3):checked + div ~ .blob:before {
    top: 20%;
    background: var(--bs-primary);
    left: 40%;
}
section .card-section input[type=radio]:nth-of-type(3):checked + div ~ .blob:after {
    background: var(--bs-primary);
    left: 70%;
}
section .card-section input[type=radio]:nth-of-type(1):checked + div ~ .photo div:nth-of-type(1) {
    transform: rotateX(0deg);
}
section .card-section input[type=radio]:nth-of-type(2):checked + div ~ .photo div:nth-of-type(2) {
    transform: rotateX(0deg);
}
section .card-section input[type=radio]:nth-of-type(3):checked + div ~ .photo div:nth-of-type(3) {
    transform: rotateX(0deg);
}
section .card-section input[type=radio]:nth-of-type(2):checked + div ~ .shapes {
    top: 35%;
    left: 65%;
    width: 90px;
}
section .card-section input[type=radio]:nth-of-type(2):checked + div ~ .shapes:before {
    left: 120px;
    top: 170px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
section .card-section input[type=radio]:nth-of-type(3):checked + div ~ .shapes {
    top: 55%;
    left: 55%;
    width: 140px;
}
section .card-section input[type=radio]:nth-of-type(3):checked + div ~ .shapes:before {
    left: 140px;
    top: -40px;
    -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}
section .card-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    z-index: 200;
}
section .card-section .photo {
    position: absolute;
    width: 50%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    perspective: 300px;
}
section .card-section .photo div {
    position: absolute;
    width: 75%;
    height: 50%;
    transform: rotateX(-180deg);
    top: -12.5%;
    margin-left: -12.5%;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 100%;
    box-shadow: inset 0 0 0 5px #fff, 0 0 0 5px var(--bs-secondary), 0 0 0 10px #fff;
}
section .card-section .photo div:before {
    content: "📞";
    font-size: 75px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 20px 0 0 5px;
    transform: translateX(-50%) translateY(-50%);
    filter: saturate(0) brightness(20);
    opacity: 0.25;
}
section .card-section .photo div:first-of-type {
    background: var(--bs-secondary);
}
section .card-section .photo div:nth-of-type(2) {
    background: var(--bs-primary);
    box-shadow: inset 0 0 0 5px #fff, 0 0 0 5px var(--bs-primary), 0 0 0 10px #fff;
}
section .card-section .photo div:nth-of-type(2):before {
    content: "📞";
}
section .card-section .photo div:nth-of-type(3) {
    background: var(--bs-gray-500);
    box-shadow: inset 0 0 0 5px #fff, 0 0 0 5px var(--bs-gray-500), 0 0 0 10px #fff;
}
section .card-section .photo div:nth-of-type(3):before {
    content: "📞";
}
section .card-section .shapes {
    position: absolute;
    left: 45%;
    top: 20%;
    background: var(--bs-secondary);
    width: 60px;
    height: 4px;
    z-index: 2;
    box-shadow: 0 8px 0 0 var(--bs-secondary), 0 16px 0 0 var(--bs-secondary), 0 24px 0 0 var(--bs-secondary), 0 32px 0 0 var(--bs-secondary);
    mix-blend-mode: screen;
}
section .card-section .shapes:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-primary));
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    left: 175px;
    top: 160px;
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
section .card-section .blob {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    filter: url(#goo);
}
section .card-section .blob .glob {
    position: absolute;
    width: 60%;
    height: 75%;
    background: var(--bs-primary);
    border-radius: 100%;
    top: -25%;
    right: -25%;
}
section .card-section .blob:before, section .card-section .blob:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 60%;
    background: var(--bs-primary);
    border-radius: 100%;
    right: 0;
    top: 20px;
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
section .card-section .blob:after {
    right: -15%;
    top: 20%;
    width: 40%;
    height: 60%;
}










/* snippet-row-cards-carousel START */
#snippet-row-cards-carousel {
    margin-top: -140px;
    .arrow-left, .arrow-right {
        font-size: 2.5rem;
        position: absolute;
    }
    .arrow-left {
        left: 0px;
    }
    .arrow-right {
        right: 0px;
    }
    .carousel-control-next, 
    .carousel-control-prev {
        width: 30px;
    }
    #carousel-target .card {
        padding: 0 15px;
        margin: 0 10px;
        /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
        text-align: center;
        background: var(--bs-body-bg);
        border: 0;
        border-radius: 1rem;
        box-shadow: 0 30px 30px -25px rgba(65, 51, 183, 0.25);
    }
    @media (max-width: 768px) {
        margin-top: 0px;
    	#carousel-target .carousel-inner .carousel-item > div {
    		display: none;
    	}
    	#carousel-target .carousel-inner .carousel-item > div:first-child {
    		display: block;
    	}
    	#carousel-target .carousel-item {
            display: block !important;
            float: none !important;
            margin-bottom: 1rem;
        }
        #carousel-target .h-100 {
            height: auto !important;
        }
    }
    #carousel-target .carousel-inner .carousel-item.active, #carousel-target .carousel-inner .carousel-item-next, #carousel-target .carousel-inner .carousel-item-prev {
    	display: flex;
    }
    @media (min-width: 768px) {
    	#carousel-target .carousel-inner .carousel-item-end.active, #carousel-target .carousel-inner .carousel-item-next {
    		transform: translateX(calc(100%/3));
    	}
    	#carousel-target .carousel-inner .carousel-item-start.active, 	#carousel-target .carousel-inner .carousel-item-prev {
    		transform: translateX(calc(-100%/3));
    	}
    }
    #carousel-target .carousel-inner .carousel-item-end, #carousel-target .carousel-inner .carousel-item-start { 
    	transform: translateX(0);
    }
}

[data-bs-theme=dark] #carousel-target .card {
    box-shadow: 0px 2px 15px rgba(255, 255, 255, 0.1);
}
/* snippet-row-cards-carousel END */


.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
  }