<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{margin: 0px;
  padding: 0px;
  width: 100%;
  color: #222;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: #fff;
}

html{
  scroll-behavior: smooth;
}


section{
  padding: 60px 0;
  margin: 0px;
}

.color{
  color: #1f524d !important;
}

.bg-color{
  background-color: #1f524d !important;
}

.border-color{
  border-color: #1f524d;
}

.color2{
  color: #1f524d !important;
}

.pulse {
  animation: pulse 1s infinite ease-in-out alternate;
}
@keyframes pulse {
  from { transform: scale(0.9); }
  to { transform: scale(1); }
}

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

.wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
  position: relative;
}

.b-radius-0{
  border-radius: 0px !important;
}

.b-radius-5{
  border-radius: 5px !important;
}

.b-radius-10{
  border-radius: 10px;
}

.b-radius-50{
  border-radius: 50%;
}

.b-radius-20{
  border-radius: 20px;
}

.b-radius-30{
  border-radius: 30px;
}

/*phone button*/
a.button {
  padding: 10px 20px;
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  background: #1f524d;
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  border: none;
  transition: all 0.4s ease-out;
}

a.button:hover {
  background: #222;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
  width: 100%;
  display: block;
  padding: 0px;
  transition: all 0.3s;
}

.navbar {
  background: #fff;
  width: 100%;
  border: none;
  position: relative;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.bg-white .navbar-nav .nav-link {
  color: #000;
}

.navbar-brand img{
  width: 130px;
}

.navbar-nav .nav-link{
  padding: 8px 20px 8px;
  background: transparent;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer; 
  font-weight: 500;
  font-size: 14px;
  margin: 0px 10px;
  transition:all 0.5s ease 0s;
  color: #000;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-white .navbar-nav .nav-link {
  color: #fff;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:focus{
  border-radius: 20px;
  color: #ffffff;
  background-color: #1f524d;
}

.navbar-nav .nav-link.active {
  padding: 8px 20px 8px;
  border-radius: 20px;
  color: #fff;
  background-color: #1f524d;
}



:root{ --main-color: #003380; }
.banner_price{
    color: #fff;
    background-color: transparent;
    text-align: center;
    width: 100%;
    padding: 30px 20px;
    margin: 0 auto;
    border: 2px solid #fff;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}
.banner_price:before,
.banner_price:after{
    content: '';
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    right: 5px;
    background-color: #003380;
    z-index: 0;
}

.banner_price h3{
  position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin: 0 0 13px;
    z-index: 2;
}

.banner_price .price-value{
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
    z-index: 2;
    position: relative;
}

.banner-form { 
  padding: 30px;
  border-radius: 25px;
  background-color: rgba(89, 33, 70, 0.7); 
  border: 1px solid #f1f1f1;
  position: relative;
}

.bg-white-opacity{
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0 0;
}

.bg-color-opacity{
  background-color: rgba(199, 153, 94, 0.8);
  border-radius: 0;
}

.bg-dark-opacity{
  background-color: rgba(0, 0, 0, 0.5);
}

.card-shadow {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, 
        rgba(17, 17, 26, 0.1) 0px 8px 24px, 
        rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.overlay-banner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(90deg, rgba(0, 0, 0, 0.7) 4%, rgba(255, 255, 255, 0) 55%);
  display: flex;
  justify-content: center;
  align-items: center; 
}
.overlay-banner-mobile{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(rgba(255, 255, 255, 0) 47%,rgba(0, 0, 0, 0.7) 68%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end; 
}

.overlay-thankyou-banner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center; 
}

.card-bg{
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 0px;
}

.vertical-middle { 
  z-index: 3; 
  position: relative; 
  display: -ms-flexbox; 
  display: flex; 
  width: 100%; 
  min-height: 100%; 
  justify-content: center; 
  flex-flow: column; 
}

/* Form */
.form-control { 
  display: block; 
  width: 100%;
  height: 50px;
  padding: 10px 15px ; 
  font-size: 16px; 
  font-weight: 500; 
  line-height: 22px;
  color: #222222; 
  background-color: rgba(255, 255, 255, 1); 
  background-clip: padding-box;
  border: 0;
  -webkit-appearance: none; 
  -moz-appearance: none; 
  appearance: none;
  margin-bottom: 15px;
  border-radius: 25px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; 
}

.form-control:focus { 
  color: #222222; 
  background-color: rgba(255, 255, 255, 1); 
  border-color: #fff; 
  outline: 0; 
  box-shadow: none; 
}

.form-control::input-placeholder { 
  color: #aaa;
  font-weight: 300; 
  opacity: 1; /* Firefox */ 
}

.form-control::-webkit-input-placeholder { 
  color: #aaa; 
  font-weight: 300;
}

.form-control::-ms-input-placeholder { 
  color: #aaa; 
  font-weight: 300;
}

.main-btn {
  margin-bottom: 10px; 
  box-sizing: border-box; 
  color: #fff;
  padding: 15px;
  font-weight:700; 
  font-size: 18px;
  outline: none !important;
  cursor: pointer;
  resize: none; 
  box-shadow: none !important; 
  width: 100%; 
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #1f524d;
  overflow: hidden;
  border: 1px solid #fff;
  z-index: 1;
  transition: all 0.4s ease-out;
}

.main-btn:hover {
  background: #222;
  color: #fff;
}

.with-errors { 
  color:red; 
  margin-top: -15px; 
  margin-bottom: 15px; 
  font-weight: 500; 
  font-size: 16px; 
}

.formblock { 
  display: flex; 
  flex-wrap: wrap; 
  flex-direction: column; 
}

.modal-dialog { 
  margin-top:60px !important; 
}

.modal-content {
  border-radius: 0px;
}

.modal-header { 
  background:#000 !important;
  border-radius: 0;
}

.modal-body{ 
  padding:2rem; 
  background:#000 !important; 
  border-radius:0;
}

.modal-header .close { 
  font-size: 30px !important; 
  color: #fff; 
  background-color: transparent !important; 
  margin-right:10px !important; 
  box-shadow: none !important; 
  border: none !important; 
}

.with-errors { 
  color:red; 
  margin-top: -15px; 
  margin-bottom: 15px; 
  font-weight: 500; 
  font-size: 16px; 
}

.formblock { 
  display: flex; 
  flex-wrap: wrap; 
  flex-direction: column; 
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

input:-ms-autofill,
input:-ms-autofill:hover, 
input:-ms-autofill:focus, 
input:-ms-autofill:active{
  -ms-box-shadow: 0 0 0 30px white inset !important;
}

input:-moz-autofill,
input:-moz-autofill:hover, 
input:-moz-autofill:focus, 
input:-moz-autofill:active{
  -moz-box-shadow: 0 0 0 30px white inset !important;
}

/*Change text in autofill textbox*/
input:-webkit-autofill{
  -webkit-text-fill-color: black !important;
}

input:-ms-autofill{
  -ms-text-fill-color: black !important;
}

input:-moz-autofill{
  -moz-text-fill-color: black !important;
}

.input-group-text {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 0.75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #aaa;
  text-align: center;
  white-space: nowrap;
  border: 0;
  background-color: rgba(255, 255, 255, 1); 
  border-radius: 25px 0px 0px 25px;
}

.input-group&gt;.form-control {
  position: relative;
  flex: 1 1 auto;
  width: 75%;
  height: 50px;
  border-left: 0;
  min-width: 0;
  border-radius: 0px 25px 25px 0px !important;
}


.modal-body .main-btn { 
  display: inline-block;  
  margin-bottom: 30px; 
  box-sizing: border-box; 
  color: #fff; 
  font-size: 16px; 
  font-weight: 700; 
  outline: 0 none; 
  letter-spacing: 0.25px; 
  padding: 15px 30px; 
  transition: all .3s; 
  resize: none; 
  box-shadow: none !important; 
  width: 100%; 
  border-radius: 30px; 
  border: 1px solid #fff; 
}

.modal-header .close { 
  font-size: 30px !important; 
  color: #fff; 
  background-color: transparent !important; 
  margin-right:10px !important; 
  box-shadow: none !important; 
  border: none !important; 
}


/* Overview */
.box-1{position: relative; width: 90%;}
.box-2{position: absolute; width: 140%; right: -43%;}

/*video*/

.bounce2 {
  animation: bounce2 3s ease infinite;
}
@keyframes bounce2 {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-10px);}
}


/*Button*/
.button {
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 15px 30px;
 color: #fff;
 font-size: 18px;
 font-weight: 500;
 z-index: 20;
 border-radius: 30px;
 background: #1f524d;
 overflow: hidden;
 border: 1px solid #fff;
transition: all 0.4s ease-out;
}

.button:hover {
  background: #222;
}

.services-block-three{
  margin:20px 0px;
}

.services-block-three .services-content {
    display: block;
    border: 4px solid #000;
    border-radius: 4px;
    text-align: center;
    background: #fff;
    padding:60px;
    position: relative;
    min-height: 244px;

}
.services-block-three .services-content:before {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-bottom: 4px solid #1f524d;
    border-right: 4px solid #1f524d;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.services-block-three .services-content:after {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    top: -2px;
    left: -2px;
    border-top: 4px solid #1f524d;
    border-left: 4px solid #1f524d;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.services-block-three h4 {
    color:black;
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 600;
}
.services-block-three p {
    margin-bottom: 0;
  color: #757575;
  font-size: 18px;
}
.services-block-three .services-content:hover {
    opacity: 1;
    border-color: #000;
}
.services-content:hover, .services-content:active {
    color: #03a9f5;
    text-decoration: none;
}

.services-block-three .services-content:hover:before, .services-block-three .services-content:hover:after {
    width: 95%;
    height: 90%;
}
.border-white{
    border:1px dashed #fff;
}</pre></body></html>