/* 
  Global Variable
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --bs-gutter-x: 1.5rem; /* Horizontal gutter */
  --bs-gutter-y: 0; /* Vertical gutter */
  /* Font Family */
  --font-roboto: "Roboto", sans-serif;
}

/* Media Query Variable */
body,
html {
  font-family: var(--font-roboto);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: unset;
  text-decoration: none;
}

a:focus {
  outline: 0 solid;
}

a:hover {
  text-decoration: none;
}

/* unlockafe-container */
.unlockafe-container {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .unlockafe-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .unlockafe-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .unlockafe-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .unlockafe-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .unlockafe-container {
    max-width: 1320px;
  }
}
/* unlockafe-row Flex */
.unlockafe-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

/* unlockafe-columns */
[class*="unlockafe-col-"],
[class*="unlockafe-col-lg-"],
[class*="unlockafe-col-md-"] {
  position: relative;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (min-width: 768px) {
  .unlockafe-col-md-6 {
    flex: 0 0 auto;
    width: 46.7%;
  }
}
@media (min-width: 992px) {
  .unlockafe-col-lg-4 {
    flex: 0 0 auto;
    max-width: 30%;
  }
  .unlockafe-col-lg-3 {
    flex: 0 0 auto;
    width: 22.5%;
  }
  .unlockafe-col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
/* unlockafe-row Grid */
.unlockafe-grid {
  display: grid;
  row-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

@media only screen and (min-width: 768px) {
  .unlockafe-grid.md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .unlockafe-grid.lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .unlockafe-grid.lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .unlockafe-grid.lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Utilities */
.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.ds-flx {
  display: flex;
}

.ds-align-center {
  align-items: center;
}

.ps-relative {
  position: relative;
}

.ps-absolute {
  position: absolute;
}

.z-indx-plus {
  z-index: 1;
}

.z-indx-minus {
  z-index: -1;
}

.width-content {
  width: -moz-max-content;
  width: max-content;
}

.wd-100 {
  width: 100%;
}

.ht-100 {
  height: 100%;
}

.object-cvr {
  -o-object-fit: cover;
  object-fit: cover;
}

.top-section-0 {
  top: 0;
}

.bottom-section-0 {
  bottom: 0;
}

.left-section-0 {
  left: 0;
}

.right-section-0 {
  right: 0;
}

.overflow-hide {
  overflow: hidden;
}

.custom-ul {
  margin: 0;
  padding: 0;
  list-style: none;
} /* 
  Global Variable End
*/
/* Email Capture Form Styles */
.unlockafe-email-capture-form {
    font-family: inherit;
    max-width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

/* Editor Preview Styles */
.unlockafe-editor-preview {
    border: 2px dashed #4054b2;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    background-color: rgba(64, 84, 178, 0.05);
}

.unlockafe-editor-preview .preview-icon {
    font-size: 36px;
    color: #4054b2;
    margin-bottom: 15px;
}

.unlockafe-editor-preview h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.unlockafe-editor-preview p {
    margin: 0 0 15px;
    color: #666;
    font-size: 14px;
}

.unlockafe-editor-preview .preview-settings {
    background-color: #f1f3f5;
    padding: 10px;
    border-radius: 4px;
    margin: 15px 0;
    display: inline-block;
}

.unlockafe-editor-preview .preview-note {
    font-style: italic;
    color: #777;
    font-size: 12px;
}

/* Modal Styles */
.unlockafe-email-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.unlockafe-email-modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

.unlockafe-email-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #777;
    transition: color 0.3s ease;
}

.unlockafe-email-modal-close:hover {
    color: #333;
}

.unlockafe-email-modal-content {
    padding: 20px;
}

.unlockafe-email-capture-form .form-header {
    margin-bottom: 20px;
    text-align: center;
}

.unlockafe-email-capture-form .form-title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.unlockafe-email-capture-form .form-description {
    font-size: 16px;
    line-height: 1.5;
    color: #777;
    margin-bottom: 15px;
}

.unlockafe-email-capture-form .form-group {
    margin-bottom: 15px;
    position: relative;
}

.unlockafe-email-capture-form input[type="text"],
.unlockafe-email-capture-form input[type="email"] {
    width: 100%;
    height: auto;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    transition: all 0.3s ease;
}

.unlockafe-email-capture-form input[type="text"]:focus,
.unlockafe-email-capture-form input[type="email"]:focus {
    border-color: #4054b2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(64, 84, 178, 0.1);
}

.unlockafe-email-capture-form .submit-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4054b2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unlockafe-email-capture-form .submit-button:hover {
    background-color: #3448a0;
    color: #fff;
}

.unlockafe-email-capture-form .submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.unlockafe-button-width-full .unlockafe-email-capture-form .submit-button {
    width: 100%;
}

.unlockafe-email-capture-form .form-messages {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 4px;
}

.unlockafe-email-capture-form .success-message {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: none;
}

.unlockafe-email-capture-form .error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: none;
}

/* Responsive Styles */
@media only screen and (max-width: 767px) {
    .unlockafe-email-capture-form .form-title {
        font-size: 20px;
    }
    
    .unlockafe-email-capture-form .form-description {
        font-size: 14px;
    }
    
    .unlockafe-email-capture-form input[type="text"],
    .unlockafe-email-capture-form input[type="email"],
    .unlockafe-email-capture-form .submit-button {
        font-size: 14px;
        padding: 10px 15px;
    }
}
