@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@200;300;400;500;600&display=swap");

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: "Nunito Sans", sans-serif;
}

body {
  overflow-x: hidden;
  position: relative;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  margin-bottom: 0px;
  padding-left: 0px;
}

:root {
  --orange: #e65f2b;
  --black: #1a1d21;
  --white: #ffffff;
  --blue: #0153b3;
  --cream_bg: #e8dfda;
  --red: #a10000;
  --grey_text: #797979;
  --green: #4e9a06;
  --dark_grey: #5e5858;
  --pink: #d398e7;
}

.ct_padd_tb {
  padding-block: 90px;
}

img {
  width: 100%;
}

.ct_fs_28 {
  font-size: 28px;
  font-weight: 700;
}

.ct_required_star {
  color: var(--orange);
}

.rmdp-container input.rmdp-input {
  height: 38px;
  width: 100% !important;
}

.rmdp-container {
  width: 100% !important;
}

.ct_input-group {
  position: relative;
}

.ct_input {
  border: solid 1.5px #9e9e9e;
  border-radius: 10px;
  background: none;
  padding: 10px;
  font-size: 16px;
  color: var(--black);
  transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 48px;
  width: 100%;
  background-color: #fff;
}

.ct_hide_pass_wye {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.ct_user-label {
  position: absolute;
  left: 15px;
  color: var(--black);
  pointer-events: none;
  transform: translateY(10px);
  transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ct_input:focus,
.ct_input:valid {
  outline: none;
  border: 1px solid var(--orange);
}

.ct_input:focus~label,
.ct_input:valid~label {
  transform: translateY(-50%) scale(0.8);
  background-color: #fff;
  padding: 0 0.2em;
  color: var(--orange);
  font-weight: 700;
}

.ct_login_main_div {
  /* height: calc(100vh - 48px); */
  width: 100%;
  overflow: hidden;
  overflow-y: scroll;
}

.ct_login_left_bg {
  background-image: url(../img/1.svg);
  height: calc(100vh - 48px);
  width: 100%;
  background-size: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: 0.4s ease all;
  display: grid;
  align-items: center;
}

.ct_left_login_logo_new img {
  width: 100%;
  max-width: 180px;
  margin-inline: auto;
  object-fit: contain;
  display: block;
}

.ct_left_login_logo_new {
  background-color: #e65f2b12;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct_login_logo img {
  width: 150px;
  object-fit: contain;
}

.ct_left_login_img img {
  max-width: 600px;
  margin: auto;
  display: block;
  animation: login_img_zoom 5s linear infinite;
}

.ct_action_btns i {
  color: #0019ff;
  transition: 0.4s ease all;
}

.ct_action_btns i:hover {
  color: var(--orange);
}

.ct_signup_form_scroll {
  overflow-y: auto;
  height: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 240px);
  padding-inline: 10px;
}

/* width */
.ct_signup_form_scroll::-webkit-scrollbar {
  width: 4px;
  border-radius: 10px;
}

/* Track */
.ct_signup_form_scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Handle */
.ct_signup_form_scroll::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

/* Handle on hover */
.ct_signup_form_scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@keyframes login_img_zoom {
  0% {
    transform: translateY(-20px);
  }

  25% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  75% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.ct_remember_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct_checkbox_cbx {
  position: relative;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 1px solid #c8ccd4;
  border-radius: 3px;
  vertical-align: middle;
  transition: background 0.1s ease;
  cursor: pointer;
  display: block;
}

.ct_checkbox_cbx:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  opacity: 0;
  transform: rotate(45deg) scale(0);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.3s ease;
  transition-delay: 0.15s;
}

.ct_forgot_link a {
  color: var(--black);
  font-weight: 700;
}

.lbl {
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
}

#ct_checkbox_cbx:checked~.ct_checkbox_cbx {
  border-color: transparent;
  background: var(--orange);
  animation: jelly 0.6s ease;
}

#ct_checkbox_cbx:checked~.ct_checkbox_cbx:after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.ct_checkbox_main {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes jelly {
  from {
    transform: scale(1, 1);
  }

  30% {
    transform: scale(1.25, 0.75);
  }

  40% {
    transform: scale(0.75, 1.25);
  }

  50% {
    transform: scale(1.15, 0.85);
  }

  65% {
    transform: scale(0.95, 1.05);
  }

  75% {
    transform: scale(1.05, 0.95);
  }

  to {
    transform: scale(1, 1);
  }
}

.ct_hidden-xs-up {
  display: none !important;
}

.ct_custom_btm {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: white;
  background-color: var(--orange);
  padding: 1em 2em;
  border: none;
  border-radius: 0.6rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}

.ct_custom_btm span:not(:nth-child(6)) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
  background-color: var(--black);
  border-radius: 10px;
  transition: 0.6s ease;
}

.ct_custom_btm span:nth-child(6) {
  position: relative;
}

.ct_custom_btm span:nth-child(1) {
  transform: translate(-3.3em, -4em);
}

.ct_custom_btm span:nth-child(2) {
  transform: translate(-6em, 3.3em);
}

.ct_custom_btm span:nth-child(3) {
  transform: translate(-0.2em, 1.8em);
}

.ct_custom_btm span:nth-child(4) {
  transform: translate(3.5em, 3.4em);
}

.ct_custom_btm span:nth-child(5) {
  transform: translate(3.5em, -3.8em);
}

.ct_custom_btm:hover span:not(:nth-child(6)) {
  transform: translate(-50%, -50%) scale(20);
  transition: 1.5s ease;
}

.ct_login_btm {
  color: #828282;
  text-align: center;
}

.ct_login_btm a {
  color: #000;
  font-weight: 700;
}

/* Header Css S */
.ct_login_small_btn a,
.ct_news_ltr_btn {
  background-color: var(--orange);
  padding: 8px 25px;
  position: relative;
  border-radius: 0px;
  z-index: 1;
  transition: 0.4s ease all;
  text-align: center;
  display: block;
  width: 100px;
  overflow: hidden;
  border: 1px solid var(--orange);
}

.ct_login_small_btn a:before,
.ct_news_ltr_btn:before {
  content: "";
  background-color: var(--black);
  inset: 0px;
  transform: scale(0);
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  transition: 0.4s ease all;
}

.ct_login_small_btn a:hover:before,
.ct_news_ltr_btn:hover:before {
  transform: scale(1);
}

.ct_main_banner_bg {
  background-color: var(--black);
  background-image: url(../img/abstruct.png);
  /* background-position: center; */
  background-size: cover;
  position: relative;
  transition: 0.4s ease all;
  animation: move_wave_bg 8s ease infinite;
  background-attachment: fixed;
}

.ct_navbar_main {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 0px;
}

.ct_menu_link ul {
  display: flex;
  align-items: center;
  gap: 50px;
}

.ct_menu_link ul li a {
  color: #fff;
  transition: 0.4s ease all;
  position: relative;
}

.ct_menu_link ul li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  background-color: var(--orange);
  height: 2px;
  left: 0px;
  width: 0%;
  transition: 0.4s ease all;
}

.ct_menu_link ul li a.active:after {
  width: 100%;
}

.ct_menu_link ul li a:hover:after {
  width: 100%;
}

.ct_close_menu_icon i {
  color: #fff;
  font-size: 25px;
}

.ct_toggle_icon span {
  height: 2px;
  width: 30px;
  background-color: #fff;
  color: #fff;
  display: block;
  border-radius: 100px;
}

.ct_toggle_icon span+span {
  margin-top: 4px;
}

.ct_toggle_icon span:nth-child(1) {
  width: 30px;
}

.ct_toggle_icon span:nth-child(2) {
  width: 15px;
}

.ct_toggle_icon span:nth-child(3) {
  width: 10px;
}

.ct_toggle_icon:hover span {
  text-align: end;
}

.ct_toggle_icon,
.ct_close_menu_icon {
  display: none;
}

.ct_banner_right_img {
  margin-right: -12px;
  position: relative;
}

.ct_banner_right_img img {
  height: 500px;
  object-fit: cover;
}

.ct_banner_left_cnt {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  width: 60%;
}

.ct_banner_left_cnt h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
}

.ct_banner_left_cnt p {
  color: #fff;
  font-size: 16px;
}

.ct_border_radius_0 {
  border-radius: 0px;
}

.ct_small_box {
  width: 160px;
  height: 180px;
  background-color: var(--orange);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  left: -80px;
}

.ct_small_box h1 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}

.ct_small_box p {
  color: #fff;
  margin-bottom: 0px;
  font-size: 14px;
}

.ct_btn_fit {
  width: fit-content;
}

/* Service section css S */
.ct_service_icon img {
  width: 50px;
  transition: 0.4s ease all;
  height: 50px;
  margin-bottom: 15px;
}

.ct_service_box figcaption h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.ct_service_box .ct_service_icon img {
  transition: 0.6s ease all;
}

.ct_service_box:hover .ct_service_icon img {
  transform: rotate(360deg);
}

.ct_service_box figcaption p {
  margin-bottom: 0px;
  font-size: 16px;
}

.ct_service_box {
  text-align: center;
}

/* our history section S */

.ct_our_history_cnt h4 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
}

.ct_our_history_cnt p {
  font-size: 16px;
}

.ct_our_history_cnt img {
  max-width: 194px;
  margin-block: 18px;
  filter: drop-shadow(0px 0px 17px black);
}

.ct_our_history_cnt h5 {
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 700;
}

.ct_our_history_cnt span {
  color: var(--grey_text);
  font-size: 13px;
}

.ct_head_title h5 {
  font-size: 16px;
  color: var(--orange);
  font-weight: 800;
}

.ct_head_title h1 {
  font-size: 38px;
  font-weight: 700;
}

/* project section css S */
.ct_project_bg {
  background-color: #dddddd;
}

.ct_product_img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

/* .ct_product_slider .owl-item.active.center .ct_product_img img {

} */

.ct_product_slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline: 30px;
}

.ct_product_slider .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: var(--orange) !important;
  transition: 0.4s ease all;
  position: relative;
  transition: 0.4s ease all;
  z-index: 1;
  overflow: hidden;
}

.ct_product_slider .owl-nav button:after {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: #000;
  transition: 0.4s ease all;
  transform: scale(0);
  z-index: -1;
  border-radius: 100px;
}

.ct_product_slider .owl-nav button:hover:after {
  transform: scale(1);
}

.ct_product_slider .owl-nav button span {
  display: none;
}

.ct_product_slider .owl-nav button.owl-prev:before,
.ct_product_slider .owl-nav button.owl-next:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 4px;
}

.ct_product_slider .owl-nav button.owl-prev:before {
  background-image: url(../img/slide_left.png);
}

.ct_product_slider .owl-nav button.owl-next:before {
  background-image: url(../img/slide_right.png);
}

.ct_product_slider .owl-dots {
  text-align: center;
  margin-top: 50px;
}

.ct_product_slider .owl-dots button.owl-dot {
  width: 30px;
  height: 8px;
  border-radius: 100px;
  background-color: var(--grey_text);
  margin-inline: 5px;
  transition: 0.4s ease all;
}

.ct_product_slider .owl-dots button.owl-dot.active {
  background-color: var(--orange);
}

/* project section css E */

/* Built section css S */
.ct_built_bg {
  background-color: #0b0b0b;
  background-image: url(../img/abstruct.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.ct_white_btn {
  background-color: var(--white);
  padding: 8px 15px;
  color: #000;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  transition: 0.4s ease all;
}

.ct_white_btn:before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: var(--orange);
  transition: 0.4s ease all;
  transform: scale(0);
  z-index: -1;
}

.ct_white_btn:hover:before {
  transform: scale(1);
}

.ct_white_btn:hover {
  color: #fff;
}

.ct_outline_btn {
  background-color: transparent;
  border: 1px solid #fff;
  padding: 8px 15px;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  color: #fff;
  border-radius: 2px;
  transition: 0.4s ease all;
}

.ct_outline_btn:before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: var(--orange);
  transition: 0.4s ease all;
  transform: scale(0);
  z-index: -1;
}

.ct_outline_btn:hover:before {
  transform: scale(1);
}

.ct_outline_btn:hover,
.ct_outline_btn:hover span {
  border-color: transparent;
  color: #fff !important;
}

/* blog section S */
figure.ct_blog_card {
  border: 1px solid #dce0e6;
  border-radius: 10px;
  transition: 0.4s ease all;
}

figure.ct_blog_card:hover {
  transform: translateY(-15px);
}

.ct_blog_card figcaption {
  padding: 20px;
}

.ct_blog_card figcaption h4 {
  font-size: 24px;
  font-weight: 700;
}

.ct_blog_card figcaption p {
  color: #696d74;
}

.ct_fs_14 {
  font-size: 14px;
}

.ct_blog_card figcaption a {
  color: var(--blue);
  font-weight: 700;
}

.ct_blog_img {
  overflow: hidden;
  border-radius: 10px;
}

.ct_blog_img img {
  transition: 0.4s ease all;
  overflow: hidden;
}

.ct_blog_img:hover img {
  transform: scale(1.2);
}

/* blog section E */

.ct_team_card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 420px;
  background: #fff;
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.ct_team_card:hover {
  height: 380px;
  background-color: var(--orange);
}

.ct_team_card:hover .content h2,
.ct_team_card:hover .content a,
.ct_team_card:hover .content p {
  color: #ffff !important;
}

.ct_team_card .img-box {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 320px;

  border-radius: 12px;
  overflow: hidden;
  transition: 0.5s;
}

.ct_team_card:hover .img-box {
  top: -100px;
  scale: 0.75;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.ct_team_card .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ct_team_card .content {
  position: absolute;
  top: 340px;
  width: 100%;
  height: 60px;
  padding: 0 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
}

.ct_team_card:hover .content {
  top: 210px;
  height: 250px;
}

.ct_team_card .content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0px;
}

.ct_team_card .content ul {
  display: flex;
  list-style: none;
  justify-content: center;
  margin-top: 10px;
}

.ct_team_card .content a {
  position: relative;
  display: inline-block;
  padding: 5px 25px;
  text-decoration: none;

  color: var(--black);
  font-size: 20px;
  font-weight: 700;
}

.ct_team_card .content a:hover {
  opacity: 0.8;
}

/* Client Logo section css S */
.ct_light_grey_bg {
  background-color: #f7f6f1;
}

.ct_client_logo img {
  height: 100px;
  object-fit: scale-down;
}

.ct_grid_h5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.ct_world_wide_logo_img img {
  width: 150px;
  object-fit: contain;
  height: 100px;
}

.ct_world_wide_logo_img {
  transition: 0.4s ease all;
}

.ct_world_wide_logo_img:hover {
  transform: scale(1.2);
}

.ct_client_logo_slider .owl-nav,
.ct_client_logo_slider .owl-dots {
  display: none;
}

/* Client Logo section css E*/

/* get started Css S */
.ct_get_started_cnt img {
  width: 140px;
  object-fit: contain;
  margin-bottom: 15px;
}

.ct_get_started_bg {
  background-color: #232222;
  background-image: url(../img/abstruct.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.ct_fs_50 {
  font-size: 60px;
  font-weight: 900;
}

.ct_fw_700 {
  font-weight: 700;
}

/* get started Css E */

/* footer css S */

footer {
  background-color: #0b0b0b;
}

.ct_footer_item h4 {
  color: #fff;
  font-size: 20px;
  opacity: 0.6;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

.ct_footer_item p {
  color: #fff;
}

.ct_footer_item a {
  color: #fff;
  display: block;
  margin-top: 15px;
}

.ct_footer_item a+a {
  border-bottom: 2px solid var(--orange);
  width: fit-content;
}

.ct_footer_nws_ltr input {
  height: 58px;
  background-color: #232222;
  border: 0;
  padding: 12px;
  width: 100%;
}

.ct_footer_nws_ltr button {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.ct_news_ltr_btn {
  height: 58px;
}

.ct_bottom_footer {
  padding-block: 30px;
  border-top: 1px solid rgb(255 255 255 / 20%);
  text-align: center;
  color: #fff;
}

#toTop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 998;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  padding: 17px;
  transition: 0.4s ease all;
  overflow: hidden;
}

#toTop:hover {
  color: var(--orange);
}

.ct_explore_btn {
  overflow: hidden;
  background-color: var(--orange);
  padding: 12px 25px;
  color: #fff;
  z-index: 9;
  position: relative;
  transition: 0.4s ease all;
}

.ct_explore_btn:hover {
  color: #333;
}

#toTop:before,
.ct_explore_btn:before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: #fff;
  z-index: -1;
  transition: 0.4s ease all;
  transform: scale(0);
}

#toTop:hover:before,
.ct_explore_btn:hover:before {
  transform: scale(1);
}

#toTop i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct_light_orange_bg {
  background-color: #fff5f1;
  padding: 16px;
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  .ct_banner_left_cnt {
    text-align: center;
  }

  .ct_left_login_logo_new {
    height: 300px;
    margin-bottom: 30px;
  }

  .ct_btn_fit {
    width: fit-content;
    margin: auto;
  }

  .ct_banner_right_img {
    margin-right: 0px;
  }

  .ct_grid_h5 {
    grid-template-columns: repeat(4, 1fr);
  }

  .ct_left_login_img {
    display: none;
  }

  .ct_login_right_form {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.09);
    padding: 30px;
    margin-inline: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .ct_menu_link ul {
    position: fixed;
    top: 0px;
    width: 300px;
    height: 100vh;
    background-color: #000;
    right: -100%;
    z-index: 999;
    transition: 0.6s ease all;
  }

  .ct_grid_h5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .ct_menu_link ul {
    flex-direction: column;
    align-items: self-start;
    list-style: none;
    padding: 70px 30px;
  }

  .ct_close_menu_icon {
    position: absolute;
    display: block;
    right: 15px;
    top: 15px;
  }

  .ct_menu_link.active ul {
    right: 0px;
  }

  .ct_toggle_icon {
    display: block;
    margin-right: 30px;
  }

  .ct_menu_link {
    margin-left: auto;
  }

  .ct_navbar_main {
    padding-inline: 15px;
  }

  .ct_logo img {
    width: 122px;
  }

  .ct_banner_left_cnt {
    width: 85%;
  }

  .ct_small_box {
    left: 15px;
  }

  .ct_banner_left_cnt h2,
  .ct_head_title h1 {
    font-size: 28px;
  }

  .ct_head_title p br {
    display: none;
  }

  .ct_team_card {
    margin-bottom: 50px;
  }

  .ct_fs_50 {
    font-size: 40px;
  }

  /* .ct_login_right_form {
        width: 80% !important;
    } */
}

@media screen and (max-width: 575px) {
  .ct_grid_h5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct_fs_28 {
    font-size: 24px;
    font-weight: 700;
  }

  .ct_remember_text {
    flex-direction: column;
    gap: 12px;
  }

  .ct_login_right_form {
    padding-inline: 15px;
  }
}

.ct_pagination_select_21 {
  border: 1px solid #d8d8d8;
  padding: 4px;
  border-radius: 6px;
  width: 60px;
}

.pagination li.previous,
.pagination li.next {
  background-color: #ffff;
  width: auto;
  padding: 3px 10px;
  border-radius: 5px;
}

.pagination li.previous a,
.pagination li.next a {
  color: #000 !important;
}

.pagination li {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: 2px;
  background-color: #212728;
}

.pagination li.active {
  background: #e65f2b;
}

.ct_textclr_7E7E7E {
  color: #7e7e7e;
}

.pagination li a {
  color: #fff !important;
}

.pagination li.active a {
  color: #000 !important;
}

.ct_boat_info_icon_1 {
  width: 33px;
  height: 33px;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 0px 1px 14px 0px #e65f2b29;
}

.ct_boat_info_title {
  display: grid;
  grid-template-columns: 33px auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.ct_green_status {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  display: inline-block;
  background-color: #00ab7b;
  box-shadow: 0px 0px 0px 4px #00ab7b33;
}

.ct_bringle_status {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  display: inline-block;
  background-color: #5e5bf9;
  box-shadow: 0px 0px 0px 4px #5e5bf933;
}

.ct_boat_detail_12 ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.ct_boat_white_bg {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  transition: 0.4s ease all;
  height: 100%;
}

.ct_boat_detail_12 {
  padding: 10px 20px;
  border: 1px solid #e65f2b80;
  border-radius: 8px;
}

.ct_boat_detail_12 ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.ct_boat_detail_12 ul li {
  font-size: 14px;
}

.ct_orange_link {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 600;
}

.ct_notify_cation_icon_1 {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
}

.ct_notify_cation_icon_1 span {
  position: absolute;
  top: 0px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #ff122e;
  display: inline-block;
}

.ct_notification_modal_12 ul {
  list-style: none;
}

.ct_notification_modal_12 {
  max-width: 500px;
  width: auto;
  min-width: 500px;
  border: 1px solid #eceef1;
  border-radius: 10px;
}

.ct_notification_head {
  padding: 15px;
  border-bottom: 1px solid #eceef1;
}

.ct_fs_18 {
  font-size: 18px;
}

.ct_current_date_notification_bg {
  padding: 8px;
  background-color: #f8f9fd;
  text-align: center;
}

.ct_notification_modal_12 {
  margin-top: 8px !important;
}

.ct_notification_user_icon {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
}

.ct_notification_list_item {
  padding: 21px 14px;
  border-bottom: 1px solid #eceef1;
}

.ct_notification_list_item {
  display: grid;
  grid-template-columns: 36px auto 50px;
  align-items: center;
  gap: 10px;
}

.ct_notification_modal_12:before {
  content: "";
  position: absolute;
  border: 8px solid #fff;
  width: 8px;
  height: 8px;
  top: 0px;
  right: 15px;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  top: -15px;
  border-radius: 5px;
}

.ct_border_1_btm_grey {
  border-bottom: 1px solid #efefef;
}

.ct_py_20 {
  padding-block: 20px;
}

.ct_mt_20 {
  margin-top: 20px;
}

.ct_border_grey_12 {
  border-color: #efefef;
}

.ct_grid_tem_5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 15px;
}

.ct_cds_img_w_60 {
  position: relative;
  overflow: hidden;
}

.ct_cds_img_w_60 img {
  width: 70px;
  height: 60px;
  border-radius: 6px;
}

.ct_boat_cds_img_group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ct_cds_img_w_60 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 15px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  background-color: #00000099;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

@media screen and (max-width: 1400px) {
  .ct_grid_tem_5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .ct_notification_modal_12 {
    max-width: 400px;
    min-width: 400px;
  }

  .ct_grid_tem_5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 575px) {
  .ct_notification_modal_12 {
    max-width: 320px;
    min-width: 320px;
  }
}

@media screen and (max-width: 455px) {
  .ct_notification_modal_12:before {
    right: 41%;
  }

  .ct_grid_tem_5 {
    grid-template-columns: repeat(1, 1fr);
  }
}