@media (max-width: 992px) {
  .dropdown-animate {
    animation: none;
  }

  .logo-light {
    display: none;
  }
  .logo-dark {
    display: block;
  }
  .dropdown-menu {
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
  }



  .navbar-collapse {
    background-color: #fff;
    text-align: center;
    width: 100%;
    border-radius: 20px;
  }
  
  .dropdown-item {
    padding: 10px 1rem;
  }

  .dropdown-menu a:last-child {
    padding-bottom: 30px;
  }
  .dtr-menu .show > .dropdown-toggle::after {
    transform: rotate(-90deg);
  }
  .text-right {
    text-align: left !important;
  }
  .dtr-rounded-left,
  .dtr-rounded-right {
    border-radius: 0;
  }
  /* single page */
  .dtr-sidebar {
    width: 100%;
    max-width: 100%;
  }
  .dtr-has-right-sidebar,
  .dtr-has-left-sidebar {
    display: block;
  }
  .dtr-has-right-sidebar .dtr-main {
    padding-right: 0;
  }
  .dtr-has-left-sidebar .dtr-main {
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .dtr-sm-mb-30px {
    margin-bottom: 30px;
  }
  .dtr-sm-mb-50px {
    margin-bottom: 50px;
  }
  .dtr-sticky-tabs-nav {
    display: none;
  }
  .text-right {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
#return-to-top {
  display: none !important;
}

.custom__column {
  display: flex;
  justify-content: center;
  flex: 0 0 100% !important;
}

  
.arrows {
  display: none;
}
  
  .drag__down {
    visibility: hidden;
  }

  .dtr-sm-mb-30px {
    margin-bottom: 30px;
  }
  .dtr-sm-mb-50px {
    margin-bottom: 50px;
  }
  .dtr-sticky-tabs .nav-item {
    text-align: center;
  }
  .dtr-sticky-tabs .nav-item:after {
    content: none;
    display: none;
  }
  .text-right {
    text-align: left !important;
  }
  .dtr-rounded-left,
  .dtr-rounded-right {
    border-radius: 0;
  }
  .dtr-about {
    text-align: center;
  }
  .dtr-about img:first-child {
    margin: 10px 0;
  }
  .dtr-about img:last-child {
    margin: 10px 0;
  }

.responsiveDisplay {
  display: none;
}

.navbar-nav {
  background-color: #fff;
  color: #142752;
  border-radius: 20px;
}

.hero-section {
  height: 100%;
  margin-top: -3rem;
}

.navbar-brand {
  margin-right: 0;
}

.menu__links::after {
  display: none;
}

.professions__link:hover h2 {
  color: #142752 !important;
}
.professions__link:hover i {
  color: #142752 !important;
}


.services__column {
line-height: 5rem;
}
.view__more {
position: fixed;
left: 25%;
right: 25%;
bottom: -2.5rem;
z-index: 9999;
}
.view__more .arrow i{
background: #5eebff;
color: #fff;
padding: 5px;
border-radius: 50px;
font-size: 64px;
} 

.pb0__mobile {
padding-bottom: 0;
}

.red__border {
  display: none !important;
}

/*phone button animation responsive start*/
.cta{
  background: linear-gradient(to right, #00BA47, #00D65D);
  border-style: none;
  color: #fff;
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  position: relative;
  padding: 15px 20px;
  overflow: hidden;
  transition: all .5s;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
  border-radius: 10px;
}
.cta span{
  position: absolute;
  display: block;
}
.cta span:nth-child(1){
  height: 3px;
  width:200px;
  top:0px;
  left:-200px;
  background: linear-gradient(to right, rgba(0,0,0,0), #f6e58d);
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span1 2s linear infinite;
  animation-delay: 1s;
}

@keyframes span1{
  0%{
      left:-200px
  }
  100%{
      left:200px;
  }
}
.cta span:nth-child(2){
  height: 70px;
  width: 3px;
  top:-70px;
  right:0px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), #f6e58d);
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span2 2s linear infinite;
  animation-delay: 2s;
}
@keyframes span2{
  0%{
      top:-70px;
  }
  100%{
      top:70px;
  }
}
.cta span:nth-child(3){
  height:3px;
  width:200px;
  right:-200px;
  bottom: 0px;
  background: linear-gradient(to left, rgba(0,0,0,0), #f6e58d);
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  animation: span3 2s linear infinite;
  animation-delay: 3s;
}
@keyframes span3{
  0%{
      right:-200px;
  }
  100%{
      right: 200px;
  }
}

.cta span:nth-child(4){
  height:70px;
  width:3px;
  bottom:-70px;
  left:0px;
  background: linear-gradient(to top, rgba(0,0,0,0), #f6e58d);
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
  animation: span4 2s linear infinite;
  animation-delay: 4s;
}
@keyframes span4{
  0%{
      bottom: -70px;
  }
  100%{
      bottom:70px;
  }
}

.cta:hover{
  transition: all .5s;
  transform: rotate(-3deg) scale(1.1);
  box-shadow: 0px 3px 5px rgba(0,0,0,.4);
}
.cta:hover span{
  animation-play-state: paused;
}

/*phone button animation responsive end*/

.first_social {
  -webkit-mask: url(../images/1st.svg) no-repeat 50% 50%;
  mask: url(../images/1st.svg) no-repeat 50% 50%;
  background-color: #e1306c;
  }
  
  .second_social{
    -webkit-mask: url(../images/2nd.svg) no-repeat 50% 50%;
    mask: url(../images/2nd.svg) no-repeat 50% 50%;
    background-color: #4267b2;
  }

.third_social {
  -webkit-mask: url(../images/3rd.svg) no-repeat 50% 50%;
  mask: url(../images/3rd.svg) no-repeat 50% 50%;
  background-color: #28a745;
}

.fourth_social {
  -webkit-mask: url(../images/4th.svg) no-repeat 50% 50%;
  mask: url(../images/4th.svg) no-repeat 50% 50%;
  background-color: #dc3545;
}

.social__button__responsive {
	width: 180px;
	height: 35px;
	cursor: pointer;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.social__button__responsive span {
  font-size: 16px;
  font-weight: 700;
  line-height: 35px;
  color: #fff;
}


.social__button__responsive .social__icon__responsive {
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.right__socials, .left__socials {
  display: grid;
  gap: 2px;
}

.left__socials .social__button__responsive {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.right__socials .social__button__responsive {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.right__socials .social__button__responsive .social__icon__responsive {
  float: right;
}
.right__socials .social__button__responsive span{
    float: right;
    margin-right: 5px;
}

.social__button__responsive .social__icon__responsive i {
	font-size: 20px;
	line-height: 35px;
	transition: all 0.3s ease-in-out;
}

.social__button__responsive i {
	color: #fff;
}


.social__icons  {
  display: none;
}

.line-of-services {
  display: grid;
}

.professions {
  padding: 10px 20px !important;
}

.professions h2 {
font-size: 20px !important;
}

}


@media (max-width: 1800px) {
  .watermarks {
    display: none;
  }
}
@media only screen and (min-width: 1800px) and (max-width: 1899px) {
  .left__watermarks .quote__words {
    left: 2rem;
    font-size: 10px;
  }
  .right__watermarks .quote__words {
    right: 2rem;
    font-size: 10px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1912px) {
  .professions i {
    font-size: 25px;
  }
  .professions {
    margin: 2rem 0;
  }

  .services__column {
    padding: 0 !important;
  }

  .cart-descriprion h2 {
    font-size: 25px;
  }
  .cart-descriprion p {
    font-size: 15px;
  }

  .dtr-feature-box {
    padding: 0 20px;
  }

  .business__cards {
    width: 220px;
    height: 200px;
  }

  .solid__border {
    width: 240px;
  }
  .red__border {
    width: 240px;
  }

  .hero-section {
    height: auto;
  }

  .view__more .view__more_btn {
    padding: 5px 10px;
    margin-top: 2rem;
    font-size: 15px;
  }
  .mt-5 {
    margin-top: 2rem !important;
  }
  
  .dividing__line {
    margin-left: 80px !important;
  }
}

@media only screen and (max-width: 1200px) {
  body {
    overflow-x: hidden;
  }
  .hero-section {
    height: 100%;
  }

  .new__header__mobile {
    height: 100%;
    background: #c8f2fee0;
    overflow-y: hidden !important;
  }

  .dtr-social-list li a {
    width: 35px;
    height: 35px;
    font-size: 14px;
    line-height: 30px;
  }
  .professions {
    background: rgb(223, 223, 223);
    width: 100%;
    max-width: 1200px;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 0.5rem;
  }

  .professions::after {
    content: "";
    width: 100%;
    max-width: 60px;
    height: 100%;
    max-height: 60px;
    top: 80px;
    right: 100px;
    position: absolute;
    display: inline-block;
  }
  .professions__link {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .professions i {
    margin: 5px 20px 0 0;
    font-size: 20px;
    color:#3572ff !important;
  }
  .professions h2 {
    margin: 0 10px 0 0;
    font-size: 16px;
    color: #142752 !important;
  }

  .custom__column {
    flex: 0 0 49%; 
  }

  .navbar {
    flex-wrap: nowrap;
  }


.services__column {
  line-height: 5rem;
  padding:2rem 2rem !important;
}
.solid__border {
  width: 100%;
  clip-path: none;
  border: none;
  display: flex;
  justify-content: center;
}
.red__border {
  width: 100%;
  clip-path: none;
  border: none;
  display: flex;
  justify-content: center;
}

.business__cards {
  width: 200px;
  height: 190px;
  border: 5px solid #fabf0b;
}
.red__border .business__cards {
  width: 200px;
  height: 190px;
  border: 5px solid #ff0101;
}

.dtr-feature-box {
  padding: 0;
}

.cart-descriprion h2 {
  font-size: 16px;
}
.cart-descriprion p {
  font-size: 14px;
}

.responsive__regulation {
  margin-top: 0 !important;
}
.navbar-expand-lg .navbar-nav .nav-link {
  color: #142752 !important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #3572ff !important;
  background: whitesmoke;
}


}


@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .professions h2 {
    font-size: 15px;
  }
  .dtr-feature-box {
    padding: 0;
  }
  .cart-descriprion h2 {
    font-size: 25px;
  }
  .cart-descriprion p {
    font-size: 14px;
  }

  .tablet {
    margin-top: 0 !important;
  }

  .services__column {
    padding: 2rem !important;
  }


}


@media only screen and (max-width:382px) and (min-width:300px) {
  .navbar-brand {
    margin-right: -5rem;
  }

  .cta {
    font-size: 16px;
    padding: 15px 20px;
  }

  .left__socials .social__button__responsive {
    width: 140px;
    height: 30px;
  }
  .right__socials .social__button__responsive {
    width: 140px;
    height: 30px;
  }

  .view__more .arrow i {
    font-size: 50px;
    padding: 6px;
  }

  .social__button__responsive .social__icon__responsive {
    width: 30px;
    height: 30px;
  }

  .social__button__responsive .social__icon__responsive i {
    line-height: 30px;
    font-size: 18px
  }

  .social__button__responsive span {
    font-size: 14px;
  }

}

@media only screen and (max-width: 1500px) {
  .menu__links::after {
    display: none;
  }
}


@media only screen and (max-width: 450px) {
  .social__button__responsive {
    width: 150px;
    height: 35px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
  
  
  .first_social {
    -webkit-mask: url(../images/respo1.svg) no-repeat 50% 50%;
    mask: url(../images/respo1.svg) no-repeat 50% 50%;
    background-color: #e1306c;
    }
    
    .second_social{
      -webkit-mask: url(../images/respo2.svg) no-repeat 50% 50%;
      mask: url(../images/respo2.svg) no-repeat 50% 50%;
      background-color: #4267b2;
    }
  
  .third_social {
    -webkit-mask: url(../images/respo3.svg) no-repeat 50% 50%;
    mask: url(../images/respo3.svg) no-repeat 50% 50%;
    background-color: #28a745;
  }
  
  .fourth_social {
    -webkit-mask: url(../images/respo4.svg) no-repeat 50% 50%;
    mask: url(../images/respo4.svg) no-repeat 50% 50%;
    background-color: #dc3545;
  }
}



@media only screen and (max-width:300px) and (min-width:260px) {
  .navbar-brand {
    margin-right: -8rem;
  }

.social__button__responsive {
  width: 130px;
}

  .cta {
    font-size: 16px;
    padding: 8px 20px;
  }

  .left__socials .social__button__responsive {
    width: 130px;
    height: 30px;
  }
  .right__socials .social__button__responsive {
    width: 130px;
    height: 30px;
  }

  .view__more .arrow i {
    font-size: 50px;
    padding: 6px;
  }

  .social__button__responsive .social__icon__responsive {
    width: 30px;
    height: 30px;
  }

  .social__button__responsive .social__icon__responsive i {
    line-height: 30px;
    font-size: 16px
  }

  .social__button__responsive span {
    font-size: 12px;
  }

}