/********** Template CSS **********/
:root {
  --primary: #141b25;
  --secondary: #1f2431;
  --text-color: #c0c0c0;
  --text-hover: #fff;
  --second-text: #cecece;
  --light: #f5f5f5;
  --primary-color: #4dcece;
}

img {
  width: 100%;
  height: 100%;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #14141f;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/*** Navbar ***/
.navbar-light .navbar-nav li a {
  font-family: "Inter", sans-serif;
  position: relative;
  margin-right: 40px;
  padding: 32px 0;
  color: var(--text-color) !important;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

a {
  text-decoration: none;
}

.navbar-light .navbar-nav li a:hover,
.navbar-light .navbar-nav li a.active {
  color: var(--text-hover) !important;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}


/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}

/*** Service section ***/

.service_section {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(155deg, #1f2431 30%, #1e4e4e 100%);
}
.service_text h1 {
  color: var(--text-hover);
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.service_text p {
  color: var(--second-text);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-width: 350px;
  padding: 24px 0;
}
.service_text a {
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--text-hover);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 32px;
  transition: all 0.3s ease-in-out;
}
.service_text button:hover {
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  color: var(--text-hover);
}
.service-img {
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.service-img img {
  max-width: 400px;
}
.service_second {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 16px 16px 32px 16px;
  border-radius: 16px 0px 0px 0px;
  border: 3px solid #22293a;
  background: var(--primary);
}
.service_second_text h4 {
  color: var(--text-hover);
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.service_second_text p {
  color: var(--second-text);
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 16px 0;
}

.service-second {
  position: absolute;
  bottom: 0px;
  right: 6px;
}
.service-second img {
  max-width: 110px;
}
.service_btn {
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--text-hover);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 6px 16px;
  transition: all 0.3s ease-in-out;
}
.service_btn:hover {
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  color: var(--text-hover);
}
.service_left_second {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 0px 16px 0px 0px;
  background: var(--secondary);
}
.service-left-second {
  position: absolute;
  bottom: 4px;
  right: 6px;
}
.service_bottom_text h2 {
  color: var(--text-hover);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.service_bottom_text p {
  color: var(--second-text);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-width: 350px;
  padding: 20px 0;
}

.service-left-second img {
  max-width: 130px;
}
.service_bottom_section {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px 16px;
  border-radius: 0px 0px 16px 16px;
  background: var(--secondary);
}
.service-bottom-img {
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.service-bottom-img img {
  width: 190px;
}

/*** End service section ***/

/* Number Section start  */
.number_section {
  background: var(--secondary);
  border-radius: 32px;
  padding: 30px 16px;
  margin: 56px 0;
  align-items: center;
}

.number_section .row {
  align-items: center;
}

.cst_mob{
    display:flex;
    align-items:center;
}

.number_section h2 {
  color: var(--primary-color);
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 8px 0;
}
.number_section h3 {
  color: var(--light);
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 8px 0;
}
.number_section .number-desc {
  color: var(--second-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 0;
}
.number_section .number-work {
  color: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 0;
}
.number-item {
  border-radius: 16px;
  border: 1px solid var(--primary-color);
  background: rgba(217, 217, 217, 0);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25),
    0px 3px 5px 2px var(--primary-color);
  transition: 0.5s;
  padding: 24px 14px;
}
.number-item-text {
  color: var(--primary-color);
  font-weight: 700;
  line-height: normal;
}
.number-item h4 {
  color: var(--text-hover);
  font-size: 50px;
  font-weight: 700;
  padding:0;
  line-height: 50px;
}
.number-item h4 span {
  color: var(--primary-color);
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
}
.number-item p {
  color: var(--text-hover);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.number-item:hover {
  background: var(--primary);
}
.number-item * {
  transition: 0.5s;
}
.number-item:hover * {
  color: var(--light) !important;
}

/* Number Section end  */

/*** About Section ***/
.about_section {
  padding: 8px 12px;
}
.about-title {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
}
.about-text {
  border-radius: 16px;
  background: linear-gradient(135deg, #1f2431 0%, #1e4e4e 100%);
  padding: 24px 16px;
  margin-left: -15px;
}

.about-text .about-desc {
  color: var(--second-text);
  font-size: 16px;
  font-weight: 400;
  padding: 16px 0;
}
.about-dessc {
  border-left: 2px solid var(--text-hover);
  color: var(--text-hover);
  padding-left: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}
.package-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}
.aboutImg {
  margin-bottom: 24px;
}
.aboutImg img {
  width: 100%;
  border-radius: 16px;
}
.about_Img img {
  object-fit: cover;
  min-height: 304px;
  border-radius: 16px;
}
/*** Process ***/
.process_section {
  background: var(--secondary);
  border-radius: 32px;
  padding: 32px 16px;
  margin: 32px 0 56px;
  align-items: center;
}

.process-title {
  padding-bottom: 8px;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.process-first-box {
  border-radius: 16px;
  border: 1px solid var(--primary-color);
  background: rgba(217, 217, 217, 0);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25),
    0px 3px 5px 2px var(--primary-color);
  padding: 16px;
  margin-bottom: 24px;
}
.process-first-box h4 {
  color: var(--primary-color);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.process-second-box {
  border-radius: 16px;
  border: 1px solid #4dcece;
  background: rgba(217, 217, 217, 0);
  box-shadow: 0px 4px 4px 0px rgba(50, 70, 168, 0.25), 0px 3px 5px 2px #4dcece;
  padding: 16px;
  margin-bottom: 24px;
}
.process-second-box h4 {
  color: #4dcece;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.process-third-box {
  border-radius: 16px;
  border: 1px solid #4dcece;
  background: rgba(217, 217, 217, 0);
  box-shadow: 0px 4px 4px 0px rgba(168, 50, 144, 0.25), 0px 3px 5px 2px #4dcece;
  padding: 16px;
  margin-bottom: 24px;
}
.process-third-box h4 {
  color: #4dcece;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.process-fourth-box {
  border-radius: 16px;
  border: 1px solid #4dcece;
  background: rgba(217, 217, 217, 0);
  box-shadow: 0px 4px 4px 0px rgba(44, 158, 50, 0.25), 0px 3px 5px 2px #4dcece;
  padding: 16px;
  margin-bottom: 24px;
}
.process-fourth-box h4 {
  color: #4dcece;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.process-t {
  color: var(--text-hover);
  text-align: center;
  font-size: 18px;
  padding: 8px 0;
  font-weight: 700;
}
.process {
  display: flex;
  align-items: center;
  padding-bottom: 4px;
}
.process-first-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--primary-color);
}
.process-second-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #4dcece;
}
.process-third-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #4dcece;
}
.process-fourth-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #4dcece;
}
.process-text {
  color: var(--second-text);
  font-size: 16px;
  font-weight: 400;
  padding-left: 10px;
}

/*** Advantages ***/
.advantages_section {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 16px 0px 0px 0px;
  padding: 16px;
  background: linear-gradient(155deg, #1f2431 20%, #1e4e4e 100%);
}
.advantages_section.second {
  border-radius: 0px 0px 16px 0px;
}
.advantages_section h2 {
  color: var(--text-hover);
  font-family: Inter;
  font-size: 28px;
  border-bottom: 2px solid var(--primary-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 10px;
}
.advantages_text h5 {
  color: var(--primary-color);
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-top: 10px;
  font-size:18px;
}
.advantages_text p {
  color: var(--second-text);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-width: 410px;
  padding: 24px 0;
}
.advantages_text button {
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--text-hover);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 32px;
  transition: all 0.3s ease-in-out;
}
.advantages_text button:hover {
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  color: var(--text-hover);
}
.advantages-img {
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.advantages-img img {
  max-width: 350px;
}

.advantages_second {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 16px 16px 32px 16px;
  background: var(--secondary);
}

.advantages_second.second {
  padding: 16px 16px 32px 16px;
  border-radius: 0px 0px 0px 16px;
}
.advantages_second_text h4 {
  color: var(--primary-color);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.advantages_second_text p {
  color: var(--second-text);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 16px 0;
}
.advantages-second {
  position: absolute;
  bottom: 0px;
  right: 6px;
}
.advantages-second img {
  max-width: 76px;
}

.advantages_left_second {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 16px;
  background: var(--secondary);
}
.advantages_left_second.second {
  border-radius: 0px 16px 0px 0px;
}
.advantages-left-second {
  position: absolute;
  bottom: 4px;
  right: 6px;
}
.advantages-left-second img {
  width: 76px;
}
.advantages_bottom_text h2 {
  color: var(--text-hover);
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.advantages_bottom_text p {
  color: var(--second-text);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-width: 350px;
  padding: 24px 0;
}

/*** Projects ***/
.title {
  color: var(--primary-color);
  padding: 24px 0;
  font-weight: 700;
}
.project_section {
  border-radius: 16px;
  background: var(--secondary);
  margin-bottom: 24px;
  min-height: 380px;
  padding: 32px 16px;
}
.project_section h4 {
  color: var(--text-hover);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 350px;
  padding: 16px 0 20px 0;
}
.project-main-img {
  position: relative;
}
.project-main-img img,
.project-mob-img img{
	border-radius:16px;
}
.project-mob-img {
  position: absolute;
  top: 10%;
  left: 65%;
}
.project_section .service_btn {
  padding: 8px 32px;
}

/*** Projects End ***/

/*** Accordion start ***/

.accordion {
  margin: 56px 0px;
  border-radius: 16px;
  border: 1px solid #22293a;
  background: var(--secondary);
  padding: 16px 32px;
}

.accordion h2 {
  text-align: center;
  color: var(--primary-color);
  padding: 16px 0;
  font-weight: 700;
}

.accordion-item {
  background-color: var(--primary);
  color: var(--text-hover);
  border-radius: 16px;
  box-shadow: 0 5px 10px 0 rgba(14, 13, 13, 0.15);
  margin: 10px 0;
  border-color: var(--primary);
}

.question {
  font-size: 18px;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 32px;
  position: absolute;
  right: 20px;
  transition: 0.4s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 12px 12px;
}

/*** Accordion end ***/


/*** Сontact start ***/
.author-project {
 max-width:420px;
}
.author-title {
  color: var(--light);
  font-weight: 600;
  font-size: 48px;
}
.author-desc {
  margin: 16px 0;
  color: var(--light);
}
.author-sub {
  color: var(--light);
  padding: 8px 0;
}
.author-sub span {
  color: var(--primary-color);
  font-weight: bold;
}
.author-project-box{
	display:flex;
	gap:80px;
	justify-content:center;
}

.btn-more {
  background-color: var(--primary-color);
  padding: 8px 24px;
  margin: 16px 0;
  color: var(--light);
  border-radius: 8px;
  display: inline-block;
  border: 1px solid var(--primary-color);
  transition: all ease-in-out 0.3s;
}
.btn-more:hover {
  background-color: transparent;
}
.contact {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #22293a;
  background: var(--secondary);
  padding: 32px;
  margin-bottom: 64px;
}
.contact-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  padding: 16px 0 60px 0;
}
.contact-list {
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding: 8px 0 16px 0;
  gap: 8px;
}

.contact-list-title {
  color: var(--primary-color);
  font-size: 20px;
  padding-top: 15px;
}

.list-item {
  display: flex;
  align-items: center;
  color: var(--text-hover);
  padding: 4px 0;
  transition: all 0.3s ease-in-out;
}
.contact-text a:hover {
  color: #4dcece !important;
}

.contact-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-hover);
}
.list-item i {
  width: 24px;
}

.contact-text a {
  color: var(--text-hover);
  text-decoration: none;
  transition-duration: 0.2s;
}

.contact-text a:hover {
  color: var(--text-hover);
  text-decoration: none;
}

.social-media-list {
  position: relative;
  font-size: 16px;
  text-align: center;
  padding: 0;
}

.social-media-list li a {
  color: var(--text-hover);
}

.social-media-list li {
  position: relative;
  display: inline-block;
  height: 46px;
  width: 46px;
  line-height: 46px;
  border-radius: 50%;
  color: var(--text-hover);
  background-color: rgb(27, 27, 27);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-right: 8px;
}

.social-media-list li:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px var(--text-hover);
  transition: all 0.2s ease-in-out;
}

.social-media-list li:hover {
  background-color: var(--text-hover);
}

.social-media-list li:hover:after {
  opacity: 1;
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}

.social-media-list li:hover a {
  color: #000;
}

.copyright {
  font: 200 14px "Oswald", sans-serif;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
}

.inptFld {
  width: 100%;
  height: 48px;
  border: 0;
  margin: 0px;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 16px;
  color: var(--text-hover);
  background: var(--primary);
  border: 1px solid #212837;
}

.inptFld:focus {
  outline-offset: -2px;
  outline: 1px solid #262e3a;
}
.contFrm .inptFld{
    margin: 0 0 16px;
}

.contFrm textarea,
.form-group textarea {
  min-height: 150px;
  padding-top: 5px;
}
.inptBtn {
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--primary-color);
  font-size: 16px;
  color: var(--text-hover);
  width: 100%;
  max-width: 160px;
  transition: all 0.3s ease-in-out;
}
.inptBtn:hover {
  background: #09acac;
}
.footer-text {
  text-align: center;
  color: var(--text-hover);
  padding-top: 32px;
}
.footer-text a {
  color: var(--primary-color);
  text-decoration: none;
}

/*** Сontact end ***/

/* Popup  */
.form-popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
 
}
.form-popup-bg {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  overflow-y: auto;
  z-index: 10000;
   padding:16px;
}
.form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.form-container {
  background-color: #22293a;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 25px 16px;
  color: var(--light);
}
.close-button {
  background: none;
  color: var(--light);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: #fff;
}

.form-popup-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.form-group {
  margin-bottom: 10px;
}


/* Media query */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
 .service-bottom-img img{
     width:104px;
 }
 .about_Img img{
     min-height:248px;
 }
 .process-text{
     font-size:12px;
 }
 .process-first-box {
  padding:10px;     
 }
 .author-title{
     font-size:32px;
 }
 .author-project{
     width:490px;
 }
 .author-project-box{
     gap:24px;
 }
 .about-dessc:nth-child(4){
     display:none;
 }
 .about-dessc:nth-child(6){
     display:none;
 }
 .about-text .about-desc {
     padding: 20px 0;
 }
 .service_second_text .service_btn{
     position: absolute;
     bottom:56px;
 }
 .service-second img {
     width:72px;
 }
 .service-left-second img{
     width:80px;
 }
 
}

@media (min-width: 1400px) {
  .about-text {
    min-height: 612px;
  }
  .about_Img img {
    min-height: 364px !important;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    background: var(--secondary);
    width: 100%;
    padding: 16px;
    margin: 40px 0 56px 0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .rounded-pill {
    border-radius: 12px !important;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    padding: 12px 32px;
    color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .rounded-pill:hover {
    background: transparent;
    border: 2px solid var(--primary-color);
  }
  .navbar-light .navbar-nav li a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    background: var(--text-color);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav li a:hover::before,
  .navbar-light .navbar-nav li a.active::before {
    width: calc(100%);
    left: 1px;
  }

  .navbar-light .navbar-nav li a.nav-contact::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar-light .navbar-nav li a:hover,
  .navbar-light .navbar-nav li a.active {
    color: var(--text-hover) !important;
    background: var(--primary);
  }
  .custom-logo-link{
      width:120px;
  }
  .navbar-toggler{
    padding: 4px 8px !important;
  }
  .cst_mob{
    flex-direction: row-reverse;
    gap: 14px;
  }
  .author-title {
  font-size: 32px;
}
  .marginTop {
    margin-top: 30px;
  }
	.author-project-box{
	display:block;
	text-align:center;
	}
	.author-project{
		margin: 0 auto;
	}
	
  .navbar-light .navbar-collapse {
    margin-top: 15px;
    position: absolute;
        z-index: 9999;
        width: 100%;
        background: #22293a;
        left: 0;
        top: 48px;
        padding: 16px;
        border-radius: 16px;
  }

  .navbar-light .navbar-nav li a {
    text-align: center;
    color: var(--second-text) !important;
    background-color: var(--primary);
    padding: 8px 0;
    border-radius: 6px;
    display:block;
    width:100%;
    margin: 8px 0;

  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
  .rounded-pill {
    margin: 8px 0;
    display: block;
    text-align: center;
    border-radius: 12px !important;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    padding: 5px 16px;
    color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .rounded-pill:hover {
    background: transparent;
    border: 2px solid var(--primary-color);
  }
  .navbar-light {
    background: var(--secondary);
    width: 100%;
    padding: 8px 16px;
    margin: 16px 0;
    border-radius: 16px;
  }
  .service-img img {
    max-width: 220px;
  }
  .service_second {
    border-radius: 16px;
    margin-top: 16px;
  }
  .service-left-second img {
    width: 105px;
  }
  .service_left_second {
    border-radius: 16px;
    margin-top: 16px;
  }
  .service_bottom_section {
    border-radius: 16px;
    padding-bottom: 32px;
    margin-top: 16px;
  }
  .service_bottom_text button {
    font-size: 14px;
    padding: 6px 16px;
  }
  .service-bottom-img img {
    width: 90px;
  }
  form {
    padding: 16px 0;
  }
  .number_section .numberColumn {
    width: 50%;
    margin: 12px 0;
  }
  .about-img {
    margin: 16px 0;
    background: var(--secondary);
    padding: 16px;
    border-radius: 16px;
  }

  .advantages_section {
    border-radius: 16px !important;
  }
  .advantages_second_text p {
    max-width: 300px;
  }
  .advantages_second {
    border-radius: 16px !important;
  }
  .advantages_left_second {
    border-radius: 16px !important;
  }
  .question{
    font-size: 16px;
    padding: 12px 56px 12px 12px;
  }
  .project_section h4 {
    max-width: 230px !important;
  }
  .accordion {
    padding: 8px  !important;
  }

  .owl-controls .owl-buttons .owl-prev {
    left: 320px !important;
    padding: 0 16px 0 16px !important;
    top: -55px !important;
    width:40px;
    height:40px;
  }
  .owl-controls .owl-buttons .owl-next {
    right: 16px !important;
    padding: 0 16px 0 16px !important;
    top: -55px !important;
    width:40px;
    height:40px;
  }
  .owl-controls .owl-buttons .owl-prev:after,
  .owl-controls .owl-buttons .owl-next:after {
    font-size: 27px !important;
  }

  .textwidget {
    width: 100%;
    
  }
  .navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg); /* �ڧݧ� ��ӧ�� �ҧ��ԧ֧� */
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
      background-image: url("https://tolipov.uz/wp-content/uploads/2025/04/close.png");
      background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    }
  .service_second_text h4,
  .service_bottom_text h2,
  .service_text h1,
  .number_section h2,
  .about-title,
  .advantages_section h2 {
    font-size: 20px;
  }
  .testi {
    padding: 10px;
  }
  .contact {
    width: 100%;
    padding: 16px;
  }
  .contact .aboutImg{
      padding: 0px;
  } 
  .big-title {
    padding: 8px 16px;
  }
  .border-right {
    border: none;
  }
  .contact-title {
    font-size: 20px;
  }
  .inptBtn {
    width: 100%;
    max-width: 100%;
  }
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }

  .social-media-list li {
    height: 32px;
    width: 32px;
    line-height: 32px;
  }
  .social-media-list li:after {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
  .social-media-list li{
      margin-right:2px;
  }
  .contact-text {
    font-size: 14px;
  }
  .testimonials .title h2 {
    font-size: 22px;
  }
  .author-project {
    padding: 0;
  }
  .btn-more {
    text-align: center;
    width: 100%;
  }

  .social-media-list {
    display: inline-block;
  }
  .list-item {
    padding: 6px 0;
    border-radius: 4px;
  }
}
