#content {
   margin-top: 60px;
   margin-bottom: 60px;
}

#content .items {
   display: flex;
   align-items: flex-start;
   justify-content: flex-start;
   flex-wrap: wrap;
   gap: 30px 32px;
   margin-top: 40px;
   margin-bottom: 60px;
}

#content .items .item {
   width: calc(50% - 32px);
   height: auto;
   display: flex;
   align-items: flex-start;
   justify-content: flex-start;
   gap: 20px;
   cursor: pointer;
   user-select: none;
}

.custom-checkbox {
   display: block;
   position: relative;
   padding-left: 25px;
   margin-bottom: 12px;
   cursor: pointer;
   font-size: 22px;
   user-select: none;
}

.custom-checkbox input {
   position: absolute;
   opacity: 0;
   cursor: pointer;
   height: 0;
   width: 0;
}

.checkmark {
   position: absolute;
   top: 0;
   left: 0;
   height: 25px;
   width: 25px;
   background-color: #fff;
   border: 2px solid #007bff;
   border-radius: 6px;
}

.custom-checkbox input:checked~.checkmark {
   /* background-color: #007bff; */
}

.checkmark:after {
   content: "";
   position: absolute;
   display: none;
}

.custom-checkbox input:checked~.checkmark:after {
   display: block;
}

.custom-checkbox .checkmark:after {
   left: 7px;
   top: 3px;
   width: 5px;
   height: 10px;
   border: solid #0D6BC7;
   border-width: 0 3px 3px 0;
   transform: rotate(45deg);
}

#content .items .item .text {
   color: #0D2C4B;
   font-size: 16px;
   font-style: normal;
   font-weight: 400;
   line-height: 140%;
   /* 22.4px */
}

#content .calc {
   width: 100%;
   height: 104px;
   border-radius: 16px;
   background: #F6F8FB;
   padding: 40px 60px;
   color: #0D2C4B;
   font-size: 20px;
   font-style: normal;
   font-weight: 600;
   line-height: normal;
}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 1100px) {

   #content {
      margin-top: 20px;
   }
   
   #content .items {
      gap: 20px;
      margin-top: 30px;
      margin-bottom: 30px;
   }

   #content .items .item {
      width: 100%;
      gap: 14px;
   }

   #content .items .item .text {
      font-size: 14px;
   }

   #content .calc {
      padding: 30px 40px;
      height: auto;
      font-size: 16px;
   }
}

@media only screen and (max-width: 500px) {}