@import url("https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-button-border: rgba(255, 255, 255, 0.6);
  --default-gradient: linear-gradient(180deg, #fff0d9 -20%, #deddff 100%);
  --default-gradient-horizontal: linear-gradient(
    90deg,
    #fff0d9 -20%,
    #deddff 100%
  );
  --primary-theme-color: #033d5a;
  --default-bg-color: #fbf8f2;
  --primary-button-color: #4d5dfb;
  --button-label-color: #fff;
  --card-color-one: #e5e0ff;
  --card-color-two: #dbe3eb;
  --card-color-three: #d3eaff;
  --body-text-color:#033D5A;
  --theme-border-color: #bdb29c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s ease;
}

*:focus-visible{
    outline-offset: .25rem;
    outline-color: var(--button-color);
  }
  main *::-webkit-scrollbar{
    width: 5px !important;
  }
  
  main *::-webkit-scrollbar-thumb{
    background-color: var(--text-color);
    border-radius: 20px;
  }
  
  body{
    width: 100%;
    overflow-x: clip;
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color:var(--text-color);
  }
  
  html{
    scroll-behavior: smooth;
  }
  
  
  h1,h2,h3,h4,h5{
    font-family: "Literata", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .default-nav{
    position: absolute;
    top: 0px;
    left: 0px;
  }
  
  .sticky-nav .switchElement{
    height: auto;
  }
  
  .sticky-nav{
    position: fixed !important;
    background-color: rgba(255,255,255,.5);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }  

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: clip;
  font-family: "Work Sans", sans-serif;
  color: var(--body-text-color);
  background-color: var(--body-bg);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Literata", serif;
  font-optical-sizing: auto;
  line-height: 1.3;
  color: var(--primary-theme-color);
}

.h0 {
  font-size: 64px;
}

.h0 sup {
  font-size: 28px;
}

h2,
.h2 {
  font-size: 3rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

h3,
.h3 {
  font-size: 2.25rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

h4,
.h4 {
  font-size: 32px;
}

h5,
.h5 {
  font-size: 18px;
}

p {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  color: var(--primary-theme-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.32px;
}

a {
  font-weight: 500;
  text-decoration: none;
  color: var(--body-text-color);
}

.body-font{
  font-family: 'Work Sans',sans-serif !important;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

select::-ms-expand {
  display: none;
}

button{
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

.primary-btn {
  border-radius: 0.4375rem;
  background: var(--primary-button-color);
  color: var(--button-label-color);
  display: flex;
  padding: 1.1875rem 1.9375rem;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

.button-label {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.02rem;
}

.section-gap {
  margin-bottom: 80px;
}

.section-bg {
  background-color: var(--default-bg-color);
}

.custom-img-obj {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  object-fit: contain;
  height: 16rem;
}

.para-inline {
  font-weight: 600;
}

.custom-span {
  color: var(--primary-theme-color);
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.025rem;
}

.card-column {
  background-color: var(--button-label-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

/* swiper style */

.slider-bg-color {
  background-color: var(--default-bg-color);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-text{
  position: relative;
  z-index: 2;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 300px;
  position: absolute;
  left: 0;
  bottom: 0;
  object-fit: cover;
}

.swiper-pagination{
  text-align: left !important;
  padding-right: 200px;
  bottom: 30px !important;
  display: flex !important;
  align-items: center;
}

/* Default Page Style */

body:has(main.page-main) footer{
	height:auto !important;
	position:relative !important;
	bottom:auto !important;
	top:auto !important;
	left:auto !important;
}

main.page-main{
	display:flex;
	align-items:center;
	height:100vh;
}

main.page-main .page-title{
	margin-bottom:40px;
	font-size: 32px !important;
	 font-family: "Work Sans", sans-serif;
	font-weight:600;
}

.swiper-pagination-bullet {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px !important;
  width: 10rem;
  margin: 0 !important;
  background: transparent !important;
  transition: 0.5s ease;
}

.swiper-pagination-bullet:before{
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: #9c9c9c;
  transition: .3s ease !important;
}

.swiper-pagination-bullet-active:before {
  background-color: #033d5a !important;
  height: 6px !important;
  border-radius: 20px !important;
}
.swiper-scrollbar-drag {
  width: 10rem !important;
}

.card-color-1{
  background-color: #E5E0FF;
}
.card-color-2{
  background-color: #BCECCF;
}
.card-color-3{
  background-color: #DBE3EB;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative !important;
  display: flex;
  align-items: center;
  justify-content: center;
  left: auto !important;
  right: auto !important;
  width: 56px !important;
  height: 56px !important;
  border: 1px solid #033d5a;
  border-radius: 16px;
  transition: .5s ease-in-out;
}
svg.arrow-left {
  clip-path: #033d5a;
}
svg.arrow-right {
  clip-path: #033d5a;
  transform: rotate(180deg);
}

.swiper-button-next,
.swiper-button-prev {
  opacity: 1 !important;
  background-color: #ffffff !important;
}
.swiper-button-next svg path,
.swiper-button-prev svg path {
  stroke: #033d5a;
}

.swiper-buttons:hover {
  background-color: #033d5a !important;
}
.swiper-buttons:hover svg path {
  stroke: #ffffff;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: " " !important;
}

/* footer styles */
.footer-bg {
  background-color: var(--primary-theme-color);
}
.border-style{
  border-top: 1px solid rgba(255, 255, 255, 0.50);
  border-style: dashed;
}

.features-section .grid svg{
  width: 100%;
  height: 260px;
}

/* number section style */

.number-span {
  background: var(--default-bg-color);
  border: 1px solid var(--theme-border-color);
  border-radius: 100%;
  height: 3rem;
  width: 3rem;
  color: var(--primary-theme-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  top: -26px;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.02rem;
  transition: 0.5s ease;
}

.process-item:hover .number-span,
.number-span:hover {
  background: var(--primary-theme-color);
  color: #fff;
  align-items: center;
}

.border-wrapper {
  border-top: 1px dashed var(--theme-border-color);
  position: relative;

}

/* video style */

.video-content{
  background: rgba(3, 61, 90, .35);
}

.play-button{
  position: relative;
}

.play-button svg{
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 20;
}

.play-button:before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  border-radius: 32px;
  background-color: rgba(255,255,255,.3);
  transition: .7s ease-in-out; 
  opacity: 0;
}

.play-button:hover:before{
  transform: scale(1.25);
  opacity: 1;
}

.default-bg {
  background-color: var(--default-bg-color);
}

.primary-btn {
  border-radius: 0.4375rem;
  background: var(--primary-button-color);
  color: var(--button-label-color);
  display: flex;
  padding: 1.1875rem 1.9375rem;
  justify-content: center;
  align-items: center;
  width: fit-content;
  transition: 0.5s ease;
}

.scrollbar-hidden::-webkit-scrollbar{
  width: 0 !important;
}

/* Newsletter */

#newsletter .left-column svg{
  width: fit-content;
  max-height: 400px;
}

/* form style */

.bg-radius{
  border-bottom-left-radius: 3.75rem;
  border-bottom-right-radius: 3.75rem;
  overflow: hidden;
  margin-bottom: -50px;
}

.primary-btn:hover {
  background: var(--primary-theme-color);
}

.hero-img{
  transition: .3s ease !important;
}

/* Gform */

.gform_heading h2{
  font-size: 2.25rem !important;
  font-weight: 500 !important;
  line-height: 1.4;
  margin-bottom: 20px;
}

.gform-section form input,
.gform-section form select,
.gform-section form textarea{
  width: 100% !important;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem !important;
  border-block-start: 1px solid rgba(167, 167, 167,.7) !important;
  border-block-end: 1px solid rgba(167, 167, 167,.7) !important;
  border-inline-start: 1px solid rgba(167, 167, 167,.7) !important;
  border-inline-end: 1px solid rgba(167, 167, 167,.7) !important;
  background: #fff;
}
.gform-section form input:focus,
.gform-section form select:focus,
.gform-section form textarea:focus{
  border-block-start: 1px solid var(--primary-theme-color) !important;
  border-block-end: 1px solid var(--primary-theme-color) !important;
  border-inline-start: 1px solid var(--primary-theme-color) !important;
  border-inline-end: 1px solid var(--primary-theme-color) !important;
  box-shadow: 0px 0px 5px var(--primary-theme-color) !important;
}

form .gfield_error input, 
form .gfield_error select, 
form .gfield_error textarea{
  border-block-start: 1px solid #DC3A45 !important;
  border-block-end: 1px solid #DC3A45 !important;
  border-inline-start: 1px solid #DC3A45 !important;
  border-inline-end: 1px solid #DC3A45 !important;
  color: #DC3A45 !important;
} 

form .gfield_error input::placeholder, 
form .gfield_error textarea::placeholder{
  color: #DC3A45 !important;
  font-weight: 600 !important;
}

form .gfield_error .ginput_container_date:after{
  filter: brightness(0) saturate(100%) invert(37%) sepia(92%) saturate(1750%) hue-rotate(330deg) brightness(85%) contrast(104%);
}

.gform-section form input,
.gform-section form select{
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  line-height: 1 !important;
  color: var(--primary-theme-color) !important;
  letter-spacing: 0.02rem !important;
}

.gform-section form select{
	background-image:url('https://marketing.expertmri.com/wp-content/uploads/2024/06/icon-chevron.png') !important;
}

.gform-section form label,
.gform-section form legend{
  opacity: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
  overflow: hidden !important;
}

.gform_fields{
  gap: 20px !important;
}

.gform_footer{
  display: flex !important;
  justify-content: center !important;
  width: 100%;
}

.gform-section form input[type="submit"]{
  max-width: 15rem;
  margin: 0 auto;
  display: block !important;
  color: #fff !important;
}

.gform-section form .ginput_container{
  position: relative !important;
}

.gform-section form .ginput_container_date:after{
  content: '' !important;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 20px;
  background-size: 20px;
  position: absolute;
  left: auto !important;
  right: 0;
  background-position: center;
}

.gform-section form select{
  background-size: 14px !important;
  background-position: calc(100% - 20px) center !important;
  background-repeat: no-repeat !important;
}

.gform_confirmation_wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.gform_confirmation_message{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.gform_confirmation_message img{
  height: 76px !important;
  width: 76px !important;
  object-fit: contain;
}

.gform_confirmation_message h3{
  font-size: 38px !important;
  font-weight: 500 !important;
}

.gform-theme--framework .gform_validation_errors .gform_submission_error{
	font-size:1.125rem !important;
	font-weight:600 !important;
}

/* Footer */

footer{
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 5;
}

.social-icons a{
  transition: .3s ease-in-out;
}

.social-icons a:hover{
  opacity: .7;
}

@media screen and (max-width:1440px){
  h2,
  .h2 {
    font-size: 2.75rem !important;
  }
  .features-section .grid svg{
    height: 210px;
  }
}

@media screen and (min-width: 1024px) {

  .swiper-button-next,
  .swiper-button-prev {
    width: 65px !important;
    height: 65px !important;
  }
}

@media screen and (max-width: 1200px) {
  .bg-radius{
    border-bottom-left-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
  }
  h2,
  .h2 {
    font-size: 1.75rem !important;
  }
h3,
.h3 {
  font-size: 1.5rem !important;
}
  .border-wrapper{
    border-top: none;
  }
  .swiper-slide img {
    height: 300px;
    object-position: center;
  }
}

@media screen and (max-width:980px) { 
  footer{
    position: relative;
  } 
  .swiper-pagination{
    display: none !important;
  }
  .custom-span {
    max-width: 300px;
  }
}

@media screen and (max-width: 820px) {
  .number-span{
    top: 0;
  }
}

@media screen and (max-width:767px) {
  
  .bg-radius{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

@media screen and (max-width:540px){
  #newsletter .left-column svg{
    max-height: 300px;
  }
  .features-section .grid svg{
    height: 200px;
  }
}