/** @format */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #383838;
}

a {
  text-decoration: none;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  color: #000000;
  transition: all ease 0.6s 0s;
}
a:hover {
  color: #00aed5;
}

body {
  font-family: "Montserrat", sans-serif;
}

p {
  font-family: "Montserrat", sans-serif;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #000;
  margin-bottom: 26px;
}
h3 span {
  color: #16adf0;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.glb-btn {
  background: linear-gradient(95.47deg, #103669 25.08%, #09254b 106.74%);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  padding: 16px 30px;
  font-size: 16px;
  line-height: 24px;
  line-height: 25.6px;
  color: #ffffff;
}
.glb-btn:hover {
  background: #032244;
  color: #fff;
}

.wh-glb-btn {
  background: #fff;
  color: #0b2a54;
}

.list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #383838;
}
.list li::before {
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  left: 0;
  top: 0px;
  background: url("../images/star.svg");
  background-repeat: no-repeat;
  background-position: center;
}

header {
  padding: 25px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1607843137);
  background: #fff;
}
header .container {
  position: relative;
}
header .row {
  align-items: center;
}
header .logo-sec {
  position: relative;
  z-index: 2;
}
header a.search-btn {
  margin-left: auto;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.5px solid #707070;
  border-radius: 7px;
  margin-left: 25px;
}
header nav ul {
  display: flex;
  padding-left: 0px;
}
header nav ul li a {
  display: block;
  margin-left: 42px;
  text-transform: uppercase;
}
header nav ul li a:hover {
  color: #00aed5;
}
header nav ul li:first-child a {
  margin-left: 0;
}
header nav .menu-item-has-children {
  position: relative;
  display: flex;
  align-items: center;
  transition: all ease 0.6s 0s;
}
header nav .menu-item-has-children::after {
  content: "";
  position: relative;
  height: 7px;
  width: 14px;
  background: url("../images/drop.png");
  margin-left: 6px;
  position: relative;
  bottom: 2px;
}
header nav .menu-item-has-children i {
  margin-left: 12px;
}
header nav .menu-item-has-children ul.sub-menu {
  position: absolute;
  top: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  left: 0;
  max-width: 0px;
  z-index: 5;
  display: block;
  opacity: 0;
  max-width: 0px;
  visibility: hidden;
  transition: all ease 0.2s 0s;
  max-height: 0;
  padding: 20px 0;
}
header nav .menu-item-has-children ul.sub-menu li {
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
}
header nav .menu-item-has-children ul.sub-menu li a {
  padding: 10px 20px;
  max-width: 0px;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 10px;
  visibility: hidden;
  display: none;
  transition: all ease 0.6s 0s;
}
@media (min-width: 1025px) {
  header nav .menu-item-has-children ul.sub-menu li a:hover {
    transition: all ease 0.6s 0s;
    background: #16adf0;
    color: #fff;
  }
}
header nav .menu-item-has-children ul.sub-menu li:last-child a {
  margin-bottom: 0;
}
header nav .menu-item-has-children:hover::after {
  filter: brightness(0) saturate(100%) invert(58%) sepia(32%) saturate(3812%) hue-rotate(165deg) brightness(98%) contrast(91%);
  transform: rotate(-180deg);
  transform-origin: center;
}
header nav .menu-item-has-children:hover ul.sub-menu {
  opacity: 1;
  max-height: 1000px;
  max-width: 250px;
  transition: all ease 0.3s 0s;
  visibility: visible;
}
header nav .menu-item-has-children:hover ul.sub-menu li {
  opacity: 1;
}
header nav .menu-item-has-children:hover ul.sub-menu li a {
  visibility: visible;
  display: block;
  min-width: 250px;
  transition: all ease 0.4s 0s;
}

footer {
  background: #161616;
  padding: 53px 0 0;
  position: relative;
}
footer .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
footer ul.ft-social {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 39px;
  margin-bottom: 32px;
}
footer a:hover {
  color: #16adf0;
}
footer h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 23px;
  color: #fcd703;
  display: inline-block;
  margin-bottom: 20px;
}
footer ul li {
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  margin-bottom: 20px;
}
footer ul li a {
  color: #fff;
  font-weight: 400;
}
footer h6 {
  font-size: 15px;
  font-weight: 600;
  line-height: 17px;
  color: #fff;
  max-width: 232px;
  margin-bottom: 20px;
}
footer h6 a {
  display: block;
  line-height: 24px;
  color: #fff;
}
footer h6 span {
  display: block;
  line-height: 17px;
}
footer .copyright {
  background: #000;
}
footer .copyright h5 {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  padding: 12px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.article-section {
  padding: 20px 0 0px;
}
.article-section h3 {
  text-transform: uppercase;
}
.article-section .row {
  position: relative;
}
.article-section .view-all {
  position: absolute;
  right: 0;
  top: 10px;
}
.article-section .view-all a {
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.article-card {
  margin-bottom: 40px;
  display: block;
}
.article-card > img {
  margin-bottom: 16px;
  width: 100%;
  height: 216px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-card p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 27px;
  color: #2b2b2b;
  margin-bottom: 20px;
}
.article-card ul.details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
}
.article-card ul.details li {
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 500;
}
.article-card ul.details li img {
  margin-bottom: 0;
  margin-right: 10px;
  width: auto !important;
}
.article-card ul.details li.date {
  color: #141414;
}
.article-card h4 {
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}

.bn-type {
  margin-bottom: 61px;
  margin-top: 20px;
}
.bn-type .container .row {
  position: relative;
}
.bn-type .container .row .image-sec {
  position: relative;
}
.bn-type .container .row .image-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.bn-type .container .row img {
  width: 100%;
}
.bn-type .container .bntype-tx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.bn-type .container .bntype-tx h4 {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}
.bn-type .container .bntype-tx h4 a {
  color: #fff500;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  display: block;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
}
.bn-type .container .bntype-tx h4 a span {
  font-weight: 600;
  text-transform: lowercase;
}

.editor-choice {
  padding: 40px 0 59px;
}
.editor-choice h3 {
  text-transform: uppercase;
}
.editor-choice .image-card {
  background: #000;
  margin-bottom: 14px;
  display: block;
  position: relative;
}
.editor-choice .image-card img {
  width: 100%;
}
.editor-choice .image-card::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.editor-choice .image-card .tx {
  position: absolute;
  left: 13px;
  bottom: 15px;
  width: 100%;
}
.editor-choice .image-card .tx h6 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.editor-choice .image-card .tx h4 {
  font-size: 19px;
  color: #fff;
  text-transform: capitalize;
}
.editor-choice .image-card .tx p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
  max-width: 500px;
  line-height: 22px;
}
.editor-choice .image-card .tx span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  border: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
}
.editor-choice .large-card {
  margin-bottom: 0;
}
.editor-choice .large-card .tx {
  left: 34px;
  bottom: 30px;
}

.search-form-header {
  padding: 0 13px;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
}
.search-form-header form {
  position: relative;
  max-width: 380px;
  margin-left: auto;
}
.search-form-header input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: 0px;
  padding-right: 40px;
  font-family: "Roboto", sans-serif;
}
.search-form-header button {
  position: absolute;
  right: 0px;
  top: 1px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px;
  border-radius: 6px;
  background: #16adf0;
}
.search-form-header button img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(17%) hue-rotate(213deg) brightness(105%) contrast(100%);
}

.banner {
  position: relative;
}
.banner > img {
  width: 100%;
}
.banner .bntx {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}
.banner .bntx h2 {
  font-size: 38px;
  line-height: 47px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000;
  text-transform: uppercase;
}
.banner .bntx p {
  font-size: 18px;
  line-height: 22px;
  color: #000;
}

.all-article-sec {
  padding-bottom: 40px;
}

.load-more a {
  text-transform: uppercase;
}
.load-more a img {
  margin-left: 6px;
  position: relative;
  bottom: 2px;
  transition: all ease 0.6s 0s;
}
.load-more a:hover {
  color: #16adf0;
}
.load-more a:hover img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(32%) saturate(3812%) hue-rotate(165deg) brightness(98%) contrast(91%);
  transform: rotate(-180deg);
  transform-origin: center;
}

.article-details-section {
  padding-top: 32px;
  padding-bottom: 36px;
}
.article-details-section .breadcum {
  display: flex;
  margin-bottom: 28px;
}
.article-details-section .breadcum li {
  position: relative;
}
.article-details-section .breadcum li::after {
  content: ">";
  margin: 0 4px;
}
.article-details-section .breadcum li:last-child::after {
  content: none;
}
.article-details-section h2 {
  font-size: 32px;
  line-height: 31px;
  margin-bottom: 19px;
}
.article-details-section .details {
  margin-bottom: 29px;
}
.article-details-section .details h6 {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  color: #000;
}
.article-details-section .details h6 a {
  color: #16adf0;
}
.article-details-section .details p {
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.article-details-section .details p span {
  display: flex;
  align-items: center;
}
.article-details-section .details p span img {
  margin: 0 10px;
}
.article-details-section .main-img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 40px;
}
.article-details-section .content {
  margin-bottom: 39px;
}
.article-details-section .content h5 {
  font-size: 20px;
  line-height: 31px;
  font-weight: 600;
  padding: 8px 20px;
  background: #16adf0;
  border: 1px solid #16adf0;
  color: #fff;
  margin-bottom: 0;
}
.article-details-section .content ul {
  padding: 20px;
  border: 1px solid #eeeeee;
  border-top: 0px;
}
.article-details-section .content ul li a {
  font-size: 16px;
  line-height: 31px;
  font-weight: 800;
  color: #141414;
}
.article-details-section p {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 24px;
}
.article-details-section .left h3 {
  font-size: 18px;
  line-height: 31px;
  margin-bottom: 20px;
}
.article-details-section .left h4 {
  font-size: 18px;
  line-height: 27px;
  font-weight: 800;
}
.article-details-section .right .article-card h4 {
  max-width: 360px;
}

.comment-section {
  padding-bottom: 60px;
}
.comment-section .load-more {
  margin-top: 20px;
}
.comment-section h3 {
  font-size: 26px;
  line-height: 21px;
  color: #141414;
  font-weight: 500;
  text-transform: uppercase;
}
.comment-section form {
  position: relative;
  display: flex;
  gap: 0 20px;
  margin-bottom: 30px;
}
.comment-section form .input-wrap {
  width: 20%;
}
.comment-section form .input-wrap input {
  width: 100%;
  padding: 9px 20px;
  border: 1px solid rgba(112, 112, 112, 0.5);
  border-radius: 12px;
}
.comment-section form .comment {
  width: 60%;
}
.comment-section form input[type=submit] {
  width: 20%;
  padding: 9px 20px;
  border: 1px solid #707070;
  border-radius: 12px;
  background: #ff7876;
  border: 0px;
  color: #fff;
}
.comment-section .comment-card {
  padding: 20px;
  padding-bottom: 0;
  border-radius: 10px;
  border: 2px solid #e8e8e8;
  margin-bottom: 20px;
}
.comment-section .comment-card .user {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.comment-section .comment-card .user .image {
  margin-right: 10px;
}
.comment-section .comment-card .user h4 {
  font-size: 18px;
  line-height: 21px;
  color: #141414;
  margin-bottom: 0;
  margin-right: 20px;
}
.comment-section .comment-card .user .date {
  font-size: 14px;
  line-height: 24px;
}
.comment-section .comment-card .main-comment {
  padding-left: 53px;
}
.comment-section .comment-card .more {
  margin-bottom: 13px;
  padding-left: 53px;
}
.comment-section .comment-card .replies {
  padding-left: 53px;
  display: none;
  padding-bottom: 20px;
}
.comment-section .comment-card .replies .reply p {
  padding-left: 53px;
}
.comment-section .comment-card p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 15px;
}
.comment-section .comment-card .more img {
  margin-left: 6px;
  position: relative;
  bottom: 2px;
  transition: all ease 0.6s 0s;
}
.comment-section .comment-card .more.show-more {
  color: #16adf0;
}
.comment-section .comment-card .more.show-more img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(32%) saturate(3812%) hue-rotate(165deg) brightness(98%) contrast(91%);
  transform: rotate(-180deg);
  transform-origin: center;
}

.author-section {
  padding: 40px 0 0;
}
.author-section .auth {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 50px;
}
.author-section h2 {
  font-size: 26px;
  line-height: 31px;
  color: #141414;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
}
.author-section h4 {
  font-size: 18px;
  line-height: 27px;
  font-weight: 800;
  margin-bottom: 30px;
}
.author-section .designation {
  margin-bottom: 20px;
}
.author-section p {
  font-size: 18px;
  line-height: 27px;
  color: #000;
  margin-bottom: 30px;
}

.lang {
  display: none;
}

.mobile-v {
  display: none;
}

#respond #reply-title {
  display: none;
}
#respond label {
  display: none;
}
#respond textarea {
  flex: 1 0 730px;
  height: 48px;
  line-height: 28px;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  padding: 9px 20px;
  border: 1px solid rgba(112, 112, 112, 0.5);
  border-radius: 12px;
  resize: none;
  order: 2;
}
#respond input[type=text] {
  flex: 1 0 20%;
  height: 48px;
  line-height: 48px;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  padding: 9px 20px;
  border: 1px solid rgba(112, 112, 112, 0.5);
  border-radius: 12px;
  order: 1;
}
#respond input[type=submit] {
  width: auto;
  padding: 9px 20px;
  border: 1px solid #707070;
  border-radius: 12px;
  background: #ff7876;
  border: 0px;
  color: #fff;
}
#respond .form-submit {
  order: 3;
}

.comment-list footer {
  background: unset;
  padding: unset;
  position: unset;
  display: flex;
  align-items: center;
  gap: 20px;
}

.comment-content {
  margin: 10px 0;
}

.comment-author {
  font-size: 18px;
  line-height: 21px;
  color: #141414;
  margin-bottom: 0;
}
.comment-author img {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 10px 0 0;
}

.comment-metadata time {
  font-size: 14px;
  line-height: 24px;
  color: #141414;
  margin-bottom: 0;
}

header button {
  display: none;
}

.reply a {
  text-decoration: none;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  color: #000000;
  transition: all ease 0.6s 0s;
  margin-bottom: 13px;
  color: #16adf0;
}

.comment.depth-2.comment-card textarea {
  flex: 1 0 53% !important;
}

@media screen and (max-width: 1400px) {
  #respond textarea {
    flex: 1 0 50%;
  }
}
@media screen and (max-width: 991px) {
  .comment-section form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  #respond input[type=text] {
    height: 28px;
    line-height: 28px;
    margin: 0;
  }
}
header nav ul li a {
  margin-left: 20px;
  font-size: 16px;
}

div.comment-list li {
  list-style: none;
}

span#comment-error {
  position: absolute;
  bottom: -15px;
  left: 355px;
  font-weight: 600;
}

span#author-error {
  position: absolute;
  bottom: -15px;
  left: 0;
  font-weight: 600;
}

.comment-section .comment-card .comment-card {
  border: none;
}

span.says {
  display: none;
}

.wpml-ls-legacy-dropdown {
  width: 9em !important;
  max-width: 100% !important;
  margin-left: 20px !important;
}

img.mob-img {
  display: none;
}

@media (max-width: 767px) {
  img.mob-img {
    display: block;
  }
  .bn-type .container .row .image-sec img:first-of-type {
    display: none;
  }
}
div#navigation {
  width: 100%;
}
div#navigation nav > ul {
  justify-content: space-between;
}/*# sourceMappingURL=style.css.map */