body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.3px;
  color: #212121;
}

a {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  color: #333333;
}

a:hover {
  text-decoration:none;
  color: #49d296;
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #0e0129;
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
}

h3 {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 600;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  font-size: 16px;
}

/* p:last-child {
  margin-bottom: 0;
} */

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.flex-row-start {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

.flex-row-center {
  width:100%;
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.flex-row-center-start {
  width:100%;
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: start;
  align-items: center;
}

.flex-row-end {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
}

.flex-row-between {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.flex-col-center {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.flex-col-start {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
.flex_col_nostart {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: start;
}
.flex_col_center_start {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: start;
}
.flex_col_start_end {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: flex-end;
}
.flex-col-start-left {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
.flex-col-end {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: center;
}

.flex-col-between {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
}
/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 15px 30px;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #49d296;
  border-radius: 23px;
}
.default-btn i {
  position: relative;
  content:'';
  display: inline-block;
}
.default-btn:active {
  background-color: #24ac70;
  color: #ffffff;
}
.default-btn:hover {
  background-color: #67e9b0;
  color: #ffffff;
}
.default-btn-blue {
  font-size: 16px;
  color: #ffffff;
  padding: 15px 30px;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #4faefe;
  border-radius: 23px;
}
.default-btn-blue:active {
  background-color: #2586d7;
  color: #ffffff;
}
.default-btn-blue:hover {
  background-color: #74bfff;
  color: #ffffff;
}

.default-btn-white {
  font-size: 16px;
  color: #49d296;
  padding: 15px 30px;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #fff;
  border-radius: 23px;
}
.download_btn_white {
  background: url(/assets/img/button/btn_win_green.png) no-repeat center;
  background-size: 100%;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.default-btn-white:hover {
  background-color: #49d296;
  color: #fff;
}
.default-btn-white:hover .download_btn_white {
  background: url(/assets/img/button/btn_win_white.png) no-repeat center;
}

.normal-btn {
  border: solid 2px #49d296;
  color: #49d296;
  border-radius: 23px;
  position: relative;
  cursor: pointer;
  text-align: center;
}
.normal-btn:hover {
  background-color: #49d296;
  color:#ffffff;
}
.download_win_green {
  background: url(/assets/img/button/btn_win_green.png) no-repeat center;
  background-size: 100%;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.normal-btn:hover .download_win_green {
  background: url(/assets/img/button/btn_win_white.png) no-repeat center;
}


.download_win_i {
  background: url(/assets/img/button/btn_win_white.png) no-repeat center;
  background-size: 100%;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.download_mac_i {
  background: url(/assets/img/button/btn_mac_green.png) no-repeat center;
  background-size: 100%;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.download_mac_hover:hover .download_mac_i {
  background: url(/assets/img/button/btn_mac_white.png) no-repeat center;
}
/*
Blog Default Btn Area Style*/


.width_100 {
  width: 100%;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-140 {
  margin-bottom: 140px;
}

.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-38 {
  margin-top: 38px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-120 {
  margin-top: 120px;
}
.mt-130 {
  margin-top: 130px;
}
.mt-140 {
  margin-top: 140px;
}

.mr-10 {
  margin-right: 10px;
}
.mr-20 {
  margin-right: 20px;
}
.mr-50 {
  margin-right: 50px;
}

.pt-140 {
  padding-top: 140px;
}
.pt-120 {
  padding-top: 120px;
}
.pb-140 {
  padding-bottom: 140px;
}
.pb-90 {
  padding-bottom: 90px;
}

.customers_are:hover {
  transform:translateY(-8px);
  box-shadow: 2px 3px 7px 0px 
  rgba(209, 209, 209, 0.35);
  border-radius: 10px;
}



/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 85%;
  right: -10%;
  background: url(/assets/img/icon/go_top.png) no-repeat center;
  z-index: 4;
  width: 58px;
  height: 58px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}
.go-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 85%;
}
/*  */



@media (max-width: 1400px) {
  .flex_col {
    flex-flow: column nowrap;
  }

}

.top-navbar {
    position: relative;
    background-image: url('/assets/img/banner/anvsoft-back-to-school-banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    color: white;
    overflow: hidden;
}

.top-navbar .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.top-navbar .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;    
    align-items: center;
    gap: 20px;                   
    flex-wrap: wrap;            
    max-width: 1200px;
}

.top-navbar .top_navbar_text {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}

.top-navbar .special-title-off {
    font-weight: bold;
    font-size: 29px;
    color: #FEB828; 
    margin-left: 5px;
}

.top-navbar .top_navbar_btn a {
    display: inline-block;
    padding: 10px 22px;
    background-color: #FEB828;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.top-navbar .top_navbar_btn a:hover {
    background-color: #ffcd69;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-navbar .container {
        flex-direction: column;  
        gap: 10px;
    }
    .top-navbar .top_navbar_text {
        font-size: 16px;
    }
    .top-navbar .top_navbar_btn a {
        padding: 8px 18px;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center !important;
    align-items: center !important;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.popup-overlay.show {
    display: flex !important;
}

.popup-content {
    background: linear-gradient(to bottom, #269A64 0%, #144555 50%, #370B34 100%);
    border-radius: 15px;
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #FFFFFF;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.close-btn:hover {
    color: #0E2601;
}

.popup-header {
    background: linear-gradient(70.6deg, rgb(172, 30, 255) 0.3%, rgb(65, 35, 251) 55.8%, rgb(35, 251, 224) 105.1%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 15px 15px 0 0;
	line-height: var(--bs-body-line-height);
}

.popup-header .title,
.popup-body .title {
    font-size: 25px;
    font-weight: 700;
  background: radial-gradient(circle at 24.1% 68.8%, rgb(50, 50, 50) 0%, rgb(0, 0, 0) 99.4%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.8;
  font-family: 'Poppins', 'Arial Rounded MT Bold', sans-serif;
}

.popup-body {
    padding: 2rem;
    text-align: center;
}
.popup-body p {
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 1.6;
}
.popup-body img {
    margin: 15px 15px 20px;
    text-align: center;
}

.promo-code {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    color: #ee5a24;
    border: 2px dashed #ee5a24;
    display: inline-block;
    margin: 0.5rem;
}

.countdown {
    color: #FFFFFF;
    font-weight: bold;
    padding-top: 20px;
    font-size: 20px;
}

#countdown-timer {
    color: #43CF9C;
    font-size: 20px;
}

.popup-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.popup-buttons .buy-button{
display: block;
  width: 100%;
  background: #43CF9C;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 17px;
  transition: opacity 0.2s;
  position: relative;
  z-index: 2;
  color: #2a2040;
  text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header {
        padding: 1.5rem;
    }
    
    .popup-body {
        padding: 1.5rem;
    }
    
    .popup-buttons {
        flex-direction: column;
        align-items: center;
    }
}